@@ -411,8 +411,6 @@ class StorageStateOptions {
411
411
* Set to {@code true} to include <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API">IndexedDB</a> in
412
412
* the storage state snapshot. If your application uses IndexedDB to store authentication tokens, like Firebase
413
413
* Authentication, enable this.
414
- *
415
- * <p> <strong>NOTE:</strong> IndexedDBs with typed arrays are currently not supported.
416
414
*/
417
415
public Boolean indexedDB ;
418
416
/**
@@ -425,8 +423,6 @@ class StorageStateOptions {
425
423
* Set to {@code true} to include <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API">IndexedDB</a> in
426
424
* the storage state snapshot. If your application uses IndexedDB to store authentication tokens, like Firebase
427
425
* Authentication, enable this.
428
- *
429
- * <p> <strong>NOTE:</strong> IndexedDBs with typed arrays are currently not supported.
430
426
*/
431
427
public StorageStateOptions setIndexedDB (boolean indexedDB ) {
432
428
this .indexedDB = indexedDB ;
@@ -996,8 +992,8 @@ default void grantPermissions(List<String> permissions) {
996
992
*
997
993
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
998
994
*
999
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1000
- * context options was provided and the passed URL is a path , it gets merged via the <a
995
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
996
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1001
997
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1002
998
* @param handler handler function to route the request.
1003
999
* @since v1.8
@@ -1052,8 +1048,8 @@ default void route(String url, Consumer<Route> handler) {
1052
1048
*
1053
1049
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
1054
1050
*
1055
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1056
- * context options was provided and the passed URL is a path , it gets merged via the <a
1051
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
1052
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1057
1053
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1058
1054
* @param handler handler function to route the request.
1059
1055
* @since v1.8
@@ -1106,8 +1102,8 @@ default void route(String url, Consumer<Route> handler) {
1106
1102
*
1107
1103
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
1108
1104
*
1109
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1110
- * context options was provided and the passed URL is a path , it gets merged via the <a
1105
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
1106
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1111
1107
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1112
1108
* @param handler handler function to route the request.
1113
1109
* @since v1.8
@@ -1162,8 +1158,8 @@ default void route(Pattern url, Consumer<Route> handler) {
1162
1158
*
1163
1159
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
1164
1160
*
1165
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1166
- * context options was provided and the passed URL is a path , it gets merged via the <a
1161
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
1162
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1167
1163
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1168
1164
* @param handler handler function to route the request.
1169
1165
* @since v1.8
@@ -1216,8 +1212,8 @@ default void route(Pattern url, Consumer<Route> handler) {
1216
1212
*
1217
1213
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
1218
1214
*
1219
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1220
- * context options was provided and the passed URL is a path , it gets merged via the <a
1215
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
1216
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1221
1217
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1222
1218
* @param handler handler function to route the request.
1223
1219
* @since v1.8
@@ -1272,8 +1268,8 @@ default void route(Predicate<String> url, Consumer<Route> handler) {
1272
1268
*
1273
1269
* <p> <strong>NOTE:</strong> Enabling routing disables http cache.
1274
1270
*
1275
- * @param url A glob pattern, regex pattern or predicate receiving [URL] to match while routing. When a {@code baseURL} via the
1276
- * context options was provided and the passed URL is a path , it gets merged via the <a
1271
+ * @param url A glob pattern, regex pattern, or predicate that receives a [URL] to match during routing. If {@code baseURL} is set in
1272
+ * the context options and the provided URL is a string that does not start with {@code *} , it is resolved using the <a
1277
1273
* href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1278
1274
* @param handler handler function to route the request.
1279
1275
* @since v1.8
0 commit comments