@@ -411,8 +411,6 @@ class StorageStateOptions {
411411 * Set to {@code true} to include <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API">IndexedDB</a> in
412412 * the storage state snapshot. If your application uses IndexedDB to store authentication tokens, like Firebase
413413 * Authentication, enable this.
414- *
415- * <p> <strong>NOTE:</strong> IndexedDBs with typed arrays are currently not supported.
416414 */
417415 public Boolean indexedDB ;
418416 /**
@@ -425,8 +423,6 @@ class StorageStateOptions {
425423 * Set to {@code true} to include <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API">IndexedDB</a> in
426424 * the storage state snapshot. If your application uses IndexedDB to store authentication tokens, like Firebase
427425 * Authentication, enable this.
428- *
429- * <p> <strong>NOTE:</strong> IndexedDBs with typed arrays are currently not supported.
430426 */
431427 public StorageStateOptions setIndexedDB (boolean indexedDB ) {
432428 this .indexedDB = indexedDB ;
@@ -996,8 +992,8 @@ default void grantPermissions(List<String> permissions) {
996992 *
997993 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
998994 *
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
1001997 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
1002998 * @param handler handler function to route the request.
1003999 * @since v1.8
@@ -1052,8 +1048,8 @@ default void route(String url, Consumer<Route> handler) {
10521048 *
10531049 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
10541050 *
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
10571053 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
10581054 * @param handler handler function to route the request.
10591055 * @since v1.8
@@ -1106,8 +1102,8 @@ default void route(String url, Consumer<Route> handler) {
11061102 *
11071103 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
11081104 *
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
11111107 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
11121108 * @param handler handler function to route the request.
11131109 * @since v1.8
@@ -1162,8 +1158,8 @@ default void route(Pattern url, Consumer<Route> handler) {
11621158 *
11631159 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
11641160 *
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
11671163 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
11681164 * @param handler handler function to route the request.
11691165 * @since v1.8
@@ -1216,8 +1212,8 @@ default void route(Pattern url, Consumer<Route> handler) {
12161212 *
12171213 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
12181214 *
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
12211217 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
12221218 * @param handler handler function to route the request.
12231219 * @since v1.8
@@ -1272,8 +1268,8 @@ default void route(Predicate<String> url, Consumer<Route> handler) {
12721268 *
12731269 * <p> <strong>NOTE:</strong> Enabling routing disables http cache.
12741270 *
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
12771273 * href="https://developer.mozilla.org/en-US/docs/Web/API/URL/URL">{@code new URL()}</a> constructor.
12781274 * @param handler handler function to route the request.
12791275 * @since v1.8
0 commit comments