diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 8f17aa149b9..29d098e6cb4 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -496,14 +496,12 @@ class MachCommands(CommandBase): description='Update the web platform tests', category='testing', parser=updatecommandline.create_parser()) - @CommandArgument('--patch', action='store_true', default=False, - help='Create an mq patch or git commit containing the changes') - def update_wpt(self, patch, **kwargs): + def update_wpt(self, **kwargs): self.ensure_bootstrapped() run_file = path.abspath(path.join("tests", "wpt", "update.py")) - kwargs["no_patch"] = not patch + patch = kwargs.get("patch", False) - if kwargs["no_patch"] and kwargs["sync"]: + if not patch and kwargs["sync"]: print("Are you sure you don't want a patch?") return 1 diff --git a/tests/wpt/metadata/2dcontext/conformance-requirements/2d.voidreturn.html.ini b/tests/wpt/metadata/2dcontext/conformance-requirements/2d.voidreturn.html.ini new file mode 100644 index 00000000000..a8951ee5130 --- /dev/null +++ b/tests/wpt/metadata/2dcontext/conformance-requirements/2d.voidreturn.html.ini @@ -0,0 +1,5 @@ +[2d.voidreturn.html] + type: testharness + [void methods return undefined] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html.ini b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html.ini new file mode 100644 index 00000000000..379f7c20b67 --- /dev/null +++ b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html.ini @@ -0,0 +1,26 @@ +[drawimage_canvas.html] + type: testharness + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 70,70 should be blue.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 70,99 should be blue.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 99,70 should be blue.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 82,82 should be blue.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 84,99 should be black.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 99,84 should be black.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 99,99 should be black.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 69,69 should be red.] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html.ini b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html.ini new file mode 100644 index 00000000000..142318dfec4 --- /dev/null +++ b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html.ini @@ -0,0 +1,17 @@ +[drawimage_html_image.html] + type: testharness + [Draw 100x100 image to 100x100 canvas at 0,0.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 70,99 should be light purple.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 99,70 should be light purple.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 99,99 should be light purple.] + expected: FAIL + + [Test scenario 12: sx = -20, sy = -20, sw = 50, sh = 50, dx = 20, dy = 20, dw = 125, dh = 125 --- Pixel 69,69 should be red.] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html.ini b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html.ini new file mode 100644 index 00000000000..983d69ca16e --- /dev/null +++ b/tests/wpt/metadata/2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html.ini @@ -0,0 +1,5 @@ +[drawimage_svg_image_1.html] + type: testharness + [Load a 100x100 image to a SVG image and draw it to a 100x100 canvas.] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-invalid-args.html.ini b/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-invalid-args.html.ini new file mode 100644 index 00000000000..02038e45fee --- /dev/null +++ b/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-invalid-args.html.ini @@ -0,0 +1,86 @@ +[createImageBitmap-invalid-args.html] + type: testharness + [createImageBitmap with a HTMLImageElement source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLImageElement source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLImageElement source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a HTMLVideoElement source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLVideoElement source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLVideoElement source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a HTMLCanvasElement source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLCanvasElement source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a HTMLCanvasElement source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a OffscreenCanvas source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a OffscreenCanvas source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a OffscreenCanvas source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a ImageData source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a ImageData source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a ImageData source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a ImageBitmap source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a ImageBitmap source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a ImageBitmap source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with a Blob source and sw set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a Blob source and sh set to 0 rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with a Blob source and oversized (unallocatable) crop region rejects with an InvalidStateError DOMException.] + expected: FAIL + + [createImageBitmap with undefined image source rejects with a TypeError.] + expected: FAIL + + [createImageBitmap with null image source rejects with a TypeError.] + expected: FAIL + + [createImageBitmap with empty image source rejects with a InvalidStateError.] + expected: FAIL + + [createImageBitmap with empty video source rejects with a InvalidStateError.] + expected: FAIL + + [createImageBitmap with an oversized canvas source rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with an invalid OffscreenCanvas source rejects with a RangeError.] + expected: FAIL + + [createImageBitmap with an undecodable blob source rejects with an InvalidStateError.] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html.ini b/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html.ini new file mode 100644 index 00000000000..f860c7d33e5 --- /dev/null +++ b/tests/wpt/metadata/2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html.ini @@ -0,0 +1,17 @@ +[createImageBitmap-sizeOverflow.html] + type: testharness + [createImageBitmap does not crash or reject the promise when passing very large sx] + expected: FAIL + + [createImageBitmap does not crash or reject the promise when passing very large sy] + expected: FAIL + + [createImageBitmap does not crash or reject the promise when passing very large sw] + expected: FAIL + + [createImageBitmap does not crash or reject the promise when passing very large sh] + expected: FAIL + + [createImageBitmap does not crash or reject the promise when passing very large sx, sy, sw and sh] + expected: FAIL + diff --git a/tests/wpt/metadata/2dcontext/transformations/2d.transformation.setTransform.multiple.html.ini b/tests/wpt/metadata/2dcontext/transformations/2d.transformation.setTransform.multiple.html.ini new file mode 100644 index 00000000000..36b1d671802 --- /dev/null +++ b/tests/wpt/metadata/2dcontext/transformations/2d.transformation.setTransform.multiple.html.ini @@ -0,0 +1,5 @@ +[2d.transformation.setTransform.multiple.html] + type: testharness + [Canvas test: 2d.transformation.setTransform.multiple] + expected: FAIL + diff --git a/tests/wpt/metadata/FileAPI/idlharness.html.ini b/tests/wpt/metadata/FileAPI/idlharness.html.ini index f4c97314499..bcf886825d9 100644 --- a/tests/wpt/metadata/FileAPI/idlharness.html.ini +++ b/tests/wpt/metadata/FileAPI/idlharness.html.ini @@ -12,3 +12,6 @@ [FileReader interface: calling readAsBinaryString(Blob) on new FileReader() with too few arguments must throw TypeError] expected: FAIL + [FileReader interface: new FileReader() must inherit property "readAsBinaryString(Blob)" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/FileAPI/idlharness.worker.js.ini b/tests/wpt/metadata/FileAPI/idlharness.worker.js.ini index fc33de592fa..70812cb9f6f 100644 --- a/tests/wpt/metadata/FileAPI/idlharness.worker.js.ini +++ b/tests/wpt/metadata/FileAPI/idlharness.worker.js.ini @@ -57,3 +57,24 @@ [FileReaderSync interface: calling readAsDataURL(Blob) on new FileReaderSync() with too few arguments must throw TypeError] expected: FAIL + [FileReader interface: new FileReader() must inherit property "readAsBinaryString(Blob)" with the proper type] + expected: FAIL + + [FileReaderSync interface: operation readAsText(Blob, DOMString)] + expected: FAIL + + [FileReaderSync interface: new FileReaderSync() must inherit property "readAsArrayBuffer(Blob)" with the proper type] + expected: FAIL + + [FileReaderSync interface: new FileReaderSync() must inherit property "readAsBinaryString(Blob)" with the proper type] + expected: FAIL + + [FileReaderSync interface: new FileReaderSync() must inherit property "readAsText(Blob, DOMString)" with the proper type] + expected: FAIL + + [FileReaderSync interface: calling readAsText(Blob, DOMString) on new FileReaderSync() with too few arguments must throw TypeError] + expected: FAIL + + [FileReaderSync interface: new FileReaderSync() must inherit property "readAsDataURL(Blob)" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/MANIFEST.json b/tests/wpt/metadata/MANIFEST.json index 72c1dc5e9cd..26eed3b1456 100644 --- a/tests/wpt/metadata/MANIFEST.json +++ b/tests/wpt/metadata/MANIFEST.json @@ -241,6 +241,12 @@ {} ] ], + "audio-output/setSinkId-manual.https.html": [ + [ + "/audio-output/setSinkId-manual.https.html", + {} + ] + ], "battery-status/battery-charging-manual.https.html": [ [ "/battery-status/battery-charging-manual.https.html", @@ -271,12 +277,1356 @@ {} ] ], + "clipboard-apis/async-write-dttext-read-dttext-manual.https.html": [ + [ + "/clipboard-apis/async-write-dttext-read-dttext-manual.https.html", + {} + ] + ], + "clipboard-apis/async-write-dttext-read-text-manual.https.html": [ + [ + "/clipboard-apis/async-write-dttext-read-text-manual.https.html", + {} + ] + ], + "clipboard-apis/async-write-text-read-dttext-manual.https.html": [ + [ + "/clipboard-apis/async-write-text-read-dttext-manual.https.html", + {} + ] + ], + "clipboard-apis/async-write-text-read-text-manual.https.html": [ + [ + "/clipboard-apis/async-write-text-read-text-manual.https.html", + {} + ] + ], "console/console-count-logging-manual.html": [ [ "/console/console-count-logging-manual.html", {} ] ], + "core-aam/alert-manual.html": [ + [ + "/core-aam/alert-manual.html", + {} + ] + ], + "core-aam/alertdialog-manual.html": [ + [ + "/core-aam/alertdialog-manual.html", + {} + ] + ], + "core-aam/application-manual.html": [ + [ + "/core-aam/application-manual.html", + {} + ] + ], + "core-aam/aria-atomic_false-manual.html": [ + [ + "/core-aam/aria-atomic_false-manual.html", + {} + ] + ], + "core-aam/aria-atomic_true-manual.html": [ + [ + "/core-aam/aria-atomic_true-manual.html", + {} + ] + ], + "core-aam/aria-autocomplete_both-manual.html": [ + [ + "/core-aam/aria-autocomplete_both-manual.html", + {} + ] + ], + "core-aam/aria-autocomplete_inline-manual.html": [ + [ + "/core-aam/aria-autocomplete_inline-manual.html", + {} + ] + ], + "core-aam/aria-autocomplete_list-manual.html": [ + [ + "/core-aam/aria-autocomplete_list-manual.html", + {} + ] + ], + "core-aam/aria-busy_false-manual.html": [ + [ + "/core-aam/aria-busy_false-manual.html", + {} + ] + ], + "core-aam/aria-busy_true-manual.html": [ + [ + "/core-aam/aria-busy_true-manual.html", + {} + ] + ], + "core-aam/aria-busy_value_changes-manual.html": [ + [ + "/core-aam/aria-busy_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-checked_false_on_checkbox-manual.html": [ + [ + "/core-aam/aria-checked_false_on_checkbox-manual.html", + {} + ] + ], + "core-aam/aria-checked_false_on_menuitemradio-manual.html": [ + [ + "/core-aam/aria-checked_false_on_menuitemradio-manual.html", + {} + ] + ], + "core-aam/aria-checked_mixed-manual.html": [ + [ + "/core-aam/aria-checked_mixed-manual.html", + {} + ] + ], + "core-aam/aria-checked_true_on_checkbox-manual.html": [ + [ + "/core-aam/aria-checked_true_on_checkbox-manual.html", + {} + ] + ], + "core-aam/aria-checked_true_on_menuitemradio-manual.html": [ + [ + "/core-aam/aria-checked_true_on_menuitemradio-manual.html", + {} + ] + ], + "core-aam/aria-checked_value_changes-manual.html": [ + [ + "/core-aam/aria-checked_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-colcount_new-manual.html": [ + [ + "/core-aam/aria-colcount_new-manual.html", + {} + ] + ], + "core-aam/aria-colindex_new-manual.html": [ + [ + "/core-aam/aria-colindex_new-manual.html", + {} + ] + ], + "core-aam/aria-colspan_new-manual.html": [ + [ + "/core-aam/aria-colspan_new-manual.html", + {} + ] + ], + "core-aam/aria-controls-manual.html": [ + [ + "/core-aam/aria-controls-manual.html", + {} + ] + ], + "core-aam/aria-current_value_changes-manual.html": [ + [ + "/core-aam/aria-current_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-current_with_non-false_allowed_value_new-manual.html": [ + [ + "/core-aam/aria-current_with_non-false_allowed_value_new-manual.html", + {} + ] + ], + "core-aam/aria-current_with_unrecognized_value_new-manual.html": [ + [ + "/core-aam/aria-current_with_unrecognized_value_new-manual.html", + {} + ] + ], + "core-aam/aria-describedby-manual.html": [ + [ + "/core-aam/aria-describedby-manual.html", + {} + ] + ], + "core-aam/aria-details_new-manual.html": [ + [ + "/core-aam/aria-details_new-manual.html", + {} + ] + ], + "core-aam/aria-disabled_false-manual.html": [ + [ + "/core-aam/aria-disabled_false-manual.html", + {} + ] + ], + "core-aam/aria-disabled_true-manual.html": [ + [ + "/core-aam/aria-disabled_true-manual.html", + {} + ] + ], + "core-aam/aria-disabled_value_changes-manual.html": [ + [ + "/core-aam/aria-disabled_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_copy-manual.html": [ + [ + "/core-aam/aria-dropeffect_copy-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_execute-manual.html": [ + [ + "/core-aam/aria-dropeffect_execute-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_link-manual.html": [ + [ + "/core-aam/aria-dropeffect_link-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_move-manual.html": [ + [ + "/core-aam/aria-dropeffect_move-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_none-manual.html": [ + [ + "/core-aam/aria-dropeffect_none-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_popup-manual.html": [ + [ + "/core-aam/aria-dropeffect_popup-manual.html", + {} + ] + ], + "core-aam/aria-dropeffect_value_changes-manual.html": [ + [ + "/core-aam/aria-dropeffect_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-errormessage-manual.html": [ + [ + "/core-aam/aria-errormessage-manual.html", + {} + ] + ], + "core-aam/aria-expanded_false-manual.html": [ + [ + "/core-aam/aria-expanded_false-manual.html", + {} + ] + ], + "core-aam/aria-expanded_true-manual.html": [ + [ + "/core-aam/aria-expanded_true-manual.html", + {} + ] + ], + "core-aam/aria-expanded_value_changes-manual.html": [ + [ + "/core-aam/aria-expanded_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-flowto-manual.html": [ + [ + "/core-aam/aria-flowto-manual.html", + {} + ] + ], + "core-aam/aria-grabbed_false-manual.html": [ + [ + "/core-aam/aria-grabbed_false-manual.html", + {} + ] + ], + "core-aam/aria-grabbed_true-manual.html": [ + [ + "/core-aam/aria-grabbed_true-manual.html", + {} + ] + ], + "core-aam/aria-grabbed_value_changes-manual.html": [ + [ + "/core-aam/aria-grabbed_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_dialog_new-manual.html": [ + [ + "/core-aam/aria-haspopup_dialog_new-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_false-manual.html": [ + [ + "/core-aam/aria-haspopup_false-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_listbox_new-manual.html": [ + [ + "/core-aam/aria-haspopup_listbox_new-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_menu_new-manual.html": [ + [ + "/core-aam/aria-haspopup_menu_new-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_tree_new-manual.html": [ + [ + "/core-aam/aria-haspopup_tree_new-manual.html", + {} + ] + ], + "core-aam/aria-haspopup_true-manual.html": [ + [ + "/core-aam/aria-haspopup_true-manual.html", + {} + ] + ], + "core-aam/aria-hidden_true-manual.html": [ + [ + "/core-aam/aria-hidden_true-manual.html", + {} + ] + ], + "core-aam/aria-hidden_true_when_element_is_focused_or_fires_event_new-manual.html": [ + [ + "/core-aam/aria-hidden_true_when_element_is_focused_or_fires_event_new-manual.html", + {} + ] + ], + "core-aam/aria-hidden_value_changes-manual.html": [ + [ + "/core-aam/aria-hidden_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-invalid_false-manual.html": [ + [ + "/core-aam/aria-invalid_false-manual.html", + {} + ] + ], + "core-aam/aria-invalid_grammar-manual.html": [ + [ + "/core-aam/aria-invalid_grammar-manual.html", + {} + ] + ], + "core-aam/aria-invalid_spelling-manual.html": [ + [ + "/core-aam/aria-invalid_spelling-manual.html", + {} + ] + ], + "core-aam/aria-invalid_true-manual.html": [ + [ + "/core-aam/aria-invalid_true-manual.html", + {} + ] + ], + "core-aam/aria-invalid_value_changes-manual.html": [ + [ + "/core-aam/aria-invalid_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-invalid_with_unrecognized_value_new-manual.html": [ + [ + "/core-aam/aria-invalid_with_unrecognized_value_new-manual.html", + {} + ] + ], + "core-aam/aria-keyshortcuts_new-manual.html": [ + [ + "/core-aam/aria-keyshortcuts_new-manual.html", + {} + ] + ], + "core-aam/aria-label-manual.html": [ + [ + "/core-aam/aria-label-manual.html", + {} + ] + ], + "core-aam/aria-labelledby-manual.html": [ + [ + "/core-aam/aria-labelledby-manual.html", + {} + ] + ], + "core-aam/aria-level_on_heading-manual.html": [ + [ + "/core-aam/aria-level_on_heading-manual.html", + {} + ] + ], + "core-aam/aria-level_on_non-heading-manual.html": [ + [ + "/core-aam/aria-level_on_non-heading-manual.html", + {} + ] + ], + "core-aam/aria-live_assertive-manual.html": [ + [ + "/core-aam/aria-live_assertive-manual.html", + {} + ] + ], + "core-aam/aria-live_off-manual.html": [ + [ + "/core-aam/aria-live_off-manual.html", + {} + ] + ], + "core-aam/aria-live_polite-manual.html": [ + [ + "/core-aam/aria-live_polite-manual.html", + {} + ] + ], + "core-aam/aria-modal_false_new-manual.html": [ + [ + "/core-aam/aria-modal_false_new-manual.html", + {} + ] + ], + "core-aam/aria-modal_true_new-manual.html": [ + [ + "/core-aam/aria-modal_true_new-manual.html", + {} + ] + ], + "core-aam/aria-multiline_false-manual.html": [ + [ + "/core-aam/aria-multiline_false-manual.html", + {} + ] + ], + "core-aam/aria-multiline_true-manual.html": [ + [ + "/core-aam/aria-multiline_true-manual.html", + {} + ] + ], + "core-aam/aria-multiselectable_false-manual.html": [ + [ + "/core-aam/aria-multiselectable_false-manual.html", + {} + ] + ], + "core-aam/aria-multiselectable_true-manual.html": [ + [ + "/core-aam/aria-multiselectable_true-manual.html", + {} + ] + ], + "core-aam/aria-orientation_horizontal-manual.html": [ + [ + "/core-aam/aria-orientation_horizontal-manual.html", + {} + ] + ], + "core-aam/aria-orientation_undefined_new-manual.html": [ + [ + "/core-aam/aria-orientation_undefined_new-manual.html", + {} + ] + ], + "core-aam/aria-orientation_vertical-manual.html": [ + [ + "/core-aam/aria-orientation_vertical-manual.html", + {} + ] + ], + "core-aam/aria-owns_may_need_manual_verification-manual.html": [ + [ + "/core-aam/aria-owns_may_need_manual_verification-manual.html", + {} + ] + ], + "core-aam/aria-placeholder_new-manual.html": [ + [ + "/core-aam/aria-placeholder_new-manual.html", + {} + ] + ], + "core-aam/aria-posinset-manual.html": [ + [ + "/core-aam/aria-posinset-manual.html", + {} + ] + ], + "core-aam/aria-pressed_false-manual.html": [ + [ + "/core-aam/aria-pressed_false-manual.html", + {} + ] + ], + "core-aam/aria-pressed_mixed-manual.html": [ + [ + "/core-aam/aria-pressed_mixed-manual.html", + {} + ] + ], + "core-aam/aria-pressed_true-manual.html": [ + [ + "/core-aam/aria-pressed_true-manual.html", + {} + ] + ], + "core-aam/aria-pressed_value_changes-manual.html": [ + [ + "/core-aam/aria-pressed_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-readonly_false-manual.html": [ + [ + "/core-aam/aria-readonly_false-manual.html", + {} + ] + ], + "core-aam/aria-readonly_is_unspecified_on_gridcell_new-manual.html": [ + [ + "/core-aam/aria-readonly_is_unspecified_on_gridcell_new-manual.html", + {} + ] + ], + "core-aam/aria-readonly_true_on_checkbox-manual.html": [ + [ + "/core-aam/aria-readonly_true_on_checkbox-manual.html", + {} + ] + ], + "core-aam/aria-readonly_true_on_radiogroup-manual.html": [ + [ + "/core-aam/aria-readonly_true_on_radiogroup-manual.html", + {} + ] + ], + "core-aam/aria-readonly_true_on_textbox-manual.html": [ + [ + "/core-aam/aria-readonly_true_on_textbox-manual.html", + {} + ] + ], + "core-aam/aria-readonly_value_changes-manual.html": [ + [ + "/core-aam/aria-readonly_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-relevant-manual.html": [ + [ + "/core-aam/aria-relevant-manual.html", + {} + ] + ], + "core-aam/aria-required_true-manual.html": [ + [ + "/core-aam/aria-required_true-manual.html", + {} + ] + ], + "core-aam/aria-required_value_changes-manual.html": [ + [ + "/core-aam/aria-required_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-roledescription_is_empty_or_whitespace_characters_new-manual.html": [ + [ + "/core-aam/aria-roledescription_is_empty_or_whitespace_characters_new-manual.html", + {} + ] + ], + "core-aam/aria-roledescription_new-manual.html": [ + [ + "/core-aam/aria-roledescription_new-manual.html", + {} + ] + ], + "core-aam/aria-rowcount_new-manual.html": [ + [ + "/core-aam/aria-rowcount_new-manual.html", + {} + ] + ], + "core-aam/aria-rowindex_new-manual.html": [ + [ + "/core-aam/aria-rowindex_new-manual.html", + {} + ] + ], + "core-aam/aria-rowspan_new-manual.html": [ + [ + "/core-aam/aria-rowspan_new-manual.html", + {} + ] + ], + "core-aam/aria-selected_false-manual.html": [ + [ + "/core-aam/aria-selected_false-manual.html", + {} + ] + ], + "core-aam/aria-selected_true-manual.html": [ + [ + "/core-aam/aria-selected_true-manual.html", + {} + ] + ], + "core-aam/aria-setsize_-1_new-manual.html": [ + [ + "/core-aam/aria-setsize_-1_new-manual.html", + {} + ] + ], + "core-aam/aria-setsize_3-manual.html": [ + [ + "/core-aam/aria-setsize_3-manual.html", + {} + ] + ], + "core-aam/aria-sort_ascending-manual.html": [ + [ + "/core-aam/aria-sort_ascending-manual.html", + {} + ] + ], + "core-aam/aria-sort_descending-manual.html": [ + [ + "/core-aam/aria-sort_descending-manual.html", + {} + ] + ], + "core-aam/aria-sort_none-manual.html": [ + [ + "/core-aam/aria-sort_none-manual.html", + {} + ] + ], + "core-aam/aria-sort_other-manual.html": [ + [ + "/core-aam/aria-sort_other-manual.html", + {} + ] + ], + "core-aam/aria-valuemax-manual.html": [ + [ + "/core-aam/aria-valuemax-manual.html", + {} + ] + ], + "core-aam/aria-valuemin-manual.html": [ + [ + "/core-aam/aria-valuemin-manual.html", + {} + ] + ], + "core-aam/aria-valuenow-manual.html": [ + [ + "/core-aam/aria-valuenow-manual.html", + {} + ] + ], + "core-aam/aria-valuenow_value_changes-manual.html": [ + [ + "/core-aam/aria-valuenow_value_changes-manual.html", + {} + ] + ], + "core-aam/aria-valuetext-manual.html": [ + [ + "/core-aam/aria-valuetext-manual.html", + {} + ] + ], + "core-aam/aria-valuetext_value_changes-manual.html": [ + [ + "/core-aam/aria-valuetext_value_changes-manual.html", + {} + ] + ], + "core-aam/article-manual.html": [ + [ + "/core-aam/article-manual.html", + {} + ] + ], + "core-aam/banner-manual.html": [ + [ + "/core-aam/banner-manual.html", + {} + ] + ], + "core-aam/button_with_aria-haspopup_dialog_new-manual.html": [ + [ + "/core-aam/button_with_aria-haspopup_dialog_new-manual.html", + {} + ] + ], + "core-aam/button_with_aria-haspopup_true-manual.html": [ + [ + "/core-aam/button_with_aria-haspopup_true-manual.html", + {} + ] + ], + "core-aam/button_with_default_values_for_aria-pressed_and_aria-haspopup-manual.html": [ + [ + "/core-aam/button_with_default_values_for_aria-pressed_and_aria-haspopup-manual.html", + {} + ] + ], + "core-aam/button_with_defined_value_for_aria-pressed-manual.html": [ + [ + "/core-aam/button_with_defined_value_for_aria-pressed-manual.html", + {} + ] + ], + "core-aam/cell_new-manual.html": [ + [ + "/core-aam/cell_new-manual.html", + {} + ] + ], + "core-aam/checkbox-manual.html": [ + [ + "/core-aam/checkbox-manual.html", + {} + ] + ], + "core-aam/columnheader-manual.html": [ + [ + "/core-aam/columnheader-manual.html", + {} + ] + ], + "core-aam/combobox-manual.html": [ + [ + "/core-aam/combobox-manual.html", + {} + ] + ], + "core-aam/complementary-manual.html": [ + [ + "/core-aam/complementary-manual.html", + {} + ] + ], + "core-aam/contentinfo-manual.html": [ + [ + "/core-aam/contentinfo-manual.html", + {} + ] + ], + "core-aam/definition-manual.html": [ + [ + "/core-aam/definition-manual.html", + {} + ] + ], + "core-aam/dialog-manual.html": [ + [ + "/core-aam/dialog-manual.html", + {} + ] + ], + "core-aam/directory-manual.html": [ + [ + "/core-aam/directory-manual.html", + {} + ] + ], + "core-aam/document-manual.html": [ + [ + "/core-aam/document-manual.html", + {} + ] + ], + "core-aam/exclude_element_hidden_with_css_display_none-manual.html": [ + [ + "/core-aam/exclude_element_hidden_with_css_display_none-manual.html", + {} + ] + ], + "core-aam/exclude_element_hidden_with_css_visibility_hidden-manual.html": [ + [ + "/core-aam/exclude_element_hidden_with_css_visibility_hidden-manual.html", + {} + ] + ], + "core-aam/exclude_element_hidden_with_html5_hidden-manual.html": [ + [ + "/core-aam/exclude_element_hidden_with_html5_hidden-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_button-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_button-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_checkbox_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_checkbox_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_img-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_img-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_math-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_math-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_menuitemcheckbox_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_menuitemcheckbox_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_menuitemradio_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_menuitemradio_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_option_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_option_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_progressbar-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_progressbar-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_radio_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_radio_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_scrollbar-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_scrollbar-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_separator-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_separator-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_slider-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_slider-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_switch_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_switch_new-manual.html", + {} + ] + ], + "core-aam/exclude_presentational_children_of_tab_new-manual.html": [ + [ + "/core-aam/exclude_presentational_children_of_tab_new-manual.html", + {} + ] + ], + "core-aam/feed_new-manual.html": [ + [ + "/core-aam/feed_new-manual.html", + {} + ] + ], + "core-aam/figure_new-manual.html": [ + [ + "/core-aam/figure_new-manual.html", + {} + ] + ], + "core-aam/form-manual.html": [ + [ + "/core-aam/form-manual.html", + {} + ] + ], + "core-aam/grid-manual.html": [ + [ + "/core-aam/grid-manual.html", + {} + ] + ], + "core-aam/gridcell-manual.html": [ + [ + "/core-aam/gridcell-manual.html", + {} + ] + ], + "core-aam/group-manual.html": [ + [ + "/core-aam/group-manual.html", + {} + ] + ], + "core-aam/heading-manual.html": [ + [ + "/core-aam/heading-manual.html", + {} + ] + ], + "core-aam/img-manual.html": [ + [ + "/core-aam/img-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-controls-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-controls-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-describedby-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-describedby-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-details_new-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-details_new-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-errormessage_new-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-errormessage_new-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-flowto-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-flowto-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-labelledby-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-labelledby-manual.html", + {} + ] + ], + "core-aam/include_element_referenced_by_global_aria-owns-manual.html": [ + [ + "/core-aam/include_element_referenced_by_global_aria-owns-manual.html", + {} + ] + ], + "core-aam/include_element_that_is_focusable-manual.html": [ + [ + "/core-aam/include_element_that_is_focusable-manual.html", + {} + ] + ], + "core-aam/include_element_with_id_inside_element_with_aria-activedescendant-manual.html": [ + [ + "/core-aam/include_element_with_id_inside_element_with_aria-activedescendant-manual.html", + {} + ] + ], + "core-aam/link-manual.html": [ + [ + "/core-aam/link-manual.html", + {} + ] + ], + "core-aam/list-manual.html": [ + [ + "/core-aam/list-manual.html", + {} + ] + ], + "core-aam/listbox_not_owned_by_or_child_of_combobox-manual.html": [ + [ + "/core-aam/listbox_not_owned_by_or_child_of_combobox-manual.html", + {} + ] + ], + "core-aam/listbox_owned_by_or_child_of_combobox-manual.html": [ + [ + "/core-aam/listbox_owned_by_or_child_of_combobox-manual.html", + {} + ] + ], + "core-aam/listitem-manual.html": [ + [ + "/core-aam/listitem-manual.html", + {} + ] + ], + "core-aam/log-manual.html": [ + [ + "/core-aam/log-manual.html", + {} + ] + ], + "core-aam/main-manual.html": [ + [ + "/core-aam/main-manual.html", + {} + ] + ], + "core-aam/marquee-manual.html": [ + [ + "/core-aam/marquee-manual.html", + {} + ] + ], + "core-aam/math-manual.html": [ + [ + "/core-aam/math-manual.html", + {} + ] + ], + "core-aam/menu-manual.html": [ + [ + "/core-aam/menu-manual.html", + {} + ] + ], + "core-aam/menu_child_of_menu_item-manual.html": [ + [ + "/core-aam/menu_child_of_menu_item-manual.html", + {} + ] + ], + "core-aam/menubar-manual.html": [ + [ + "/core-aam/menubar-manual.html", + {} + ] + ], + "core-aam/menuitem_not_owned_by_or_child_of_group-manual.html": [ + [ + "/core-aam/menuitem_not_owned_by_or_child_of_group-manual.html", + {} + ] + ], + "core-aam/menuitem_owned_by_or_child_of_group-manual.html": [ + [ + "/core-aam/menuitem_owned_by_or_child_of_group-manual.html", + {} + ] + ], + "core-aam/menuitemcheckbox-manual.html": [ + [ + "/core-aam/menuitemcheckbox-manual.html", + {} + ] + ], + "core-aam/menuitemradio-manual.html": [ + [ + "/core-aam/menuitemradio-manual.html", + {} + ] + ], + "core-aam/navigation-manual.html": [ + [ + "/core-aam/navigation-manual.html", + {} + ] + ], + "core-aam/none_new-manual.html": [ + [ + "/core-aam/none_new-manual.html", + {} + ] + ], + "core-aam/none_used_on_element_that_is_focused_or_fires_event-manual.html": [ + [ + "/core-aam/none_used_on_element_that_is_focused_or_fires_event-manual.html", + {} + ] + ], + "core-aam/none_used_on_table_element_with_td_children_new-manual.html": [ + [ + "/core-aam/none_used_on_table_element_with_td_children_new-manual.html", + {} + ] + ], + "core-aam/none_used_on_ul_element_with_li_children_new-manual.html": [ + [ + "/core-aam/none_used_on_ul_element_with_li_children_new-manual.html", + {} + ] + ], + "core-aam/note-manual.html": [ + [ + "/core-aam/note-manual.html", + {} + ] + ], + "core-aam/option_inside_combobox-manual.html": [ + [ + "/core-aam/option_inside_combobox-manual.html", + {} + ] + ], + "core-aam/option_not_inside_combobox-manual.html": [ + [ + "/core-aam/option_not_inside_combobox-manual.html", + {} + ] + ], + "core-aam/presentation-manual.html": [ + [ + "/core-aam/presentation-manual.html", + {} + ] + ], + "core-aam/presentation_used_on_element_that_is_focused_or_fires_event-manual.html": [ + [ + "/core-aam/presentation_used_on_element_that_is_focused_or_fires_event-manual.html", + {} + ] + ], + "core-aam/presentation_used_on_table_element_with_td_children_new-manual.html": [ + [ + "/core-aam/presentation_used_on_table_element_with_td_children_new-manual.html", + {} + ] + ], + "core-aam/presentation_used_on_ul_element_with_li_children_new-manual.html": [ + [ + "/core-aam/presentation_used_on_ul_element_with_li_children_new-manual.html", + {} + ] + ], + "core-aam/progressbar-manual.html": [ + [ + "/core-aam/progressbar-manual.html", + {} + ] + ], + "core-aam/radio-manual.html": [ + [ + "/core-aam/radio-manual.html", + {} + ] + ], + "core-aam/radiogroup-manual.html": [ + [ + "/core-aam/radiogroup-manual.html", + {} + ] + ], + "core-aam/region_with_an_accessible_name_new-manual.html": [ + [ + "/core-aam/region_with_an_accessible_name_new-manual.html", + {} + ] + ], + "core-aam/region_without_an_accessible_name_new-manual.html": [ + [ + "/core-aam/region_without_an_accessible_name_new-manual.html", + {} + ] + ], + "core-aam/row_inside_treegrid-manual.html": [ + [ + "/core-aam/row_inside_treegrid-manual.html", + {} + ] + ], + "core-aam/row_not_inside_treegrid-manual.html": [ + [ + "/core-aam/row_not_inside_treegrid-manual.html", + {} + ] + ], + "core-aam/rowgroup-manual.html": [ + [ + "/core-aam/rowgroup-manual.html", + {} + ] + ], + "core-aam/rowheader-manual.html": [ + [ + "/core-aam/rowheader-manual.html", + {} + ] + ], + "core-aam/scrollbar-manual.html": [ + [ + "/core-aam/scrollbar-manual.html", + {} + ] + ], + "core-aam/search-manual.html": [ + [ + "/core-aam/search-manual.html", + {} + ] + ], + "core-aam/searchbox_new-manual.html": [ + [ + "/core-aam/searchbox_new-manual.html", + {} + ] + ], + "core-aam/separator_focusable_new-manual.html": [ + [ + "/core-aam/separator_focusable_new-manual.html", + {} + ] + ], + "core-aam/separator_non-focusable-manual.html": [ + [ + "/core-aam/separator_non-focusable-manual.html", + {} + ] + ], + "core-aam/slider-manual.html": [ + [ + "/core-aam/slider-manual.html", + {} + ] + ], + "core-aam/spinbutton-manual.html": [ + [ + "/core-aam/spinbutton-manual.html", + {} + ] + ], + "core-aam/status-manual.html": [ + [ + "/core-aam/status-manual.html", + {} + ] + ], + "core-aam/switch_new-manual.html": [ + [ + "/core-aam/switch_new-manual.html", + {} + ] + ], + "core-aam/tab-manual.html": [ + [ + "/core-aam/tab-manual.html", + {} + ] + ], + "core-aam/table_new-manual.html": [ + [ + "/core-aam/table_new-manual.html", + {} + ] + ], + "core-aam/tablist-manual.html": [ + [ + "/core-aam/tablist-manual.html", + {} + ] + ], + "core-aam/tabpanel-manual.html": [ + [ + "/core-aam/tabpanel-manual.html", + {} + ] + ], + "core-aam/term_new-manual.html": [ + [ + "/core-aam/term_new-manual.html", + {} + ] + ], + "core-aam/textbox_when_aria-multiline_is_false-manual.html": [ + [ + "/core-aam/textbox_when_aria-multiline_is_false-manual.html", + {} + ] + ], + "core-aam/textbox_when_aria-multiline_is_true-manual.html": [ + [ + "/core-aam/textbox_when_aria-multiline_is_true-manual.html", + {} + ] + ], + "core-aam/timer-manual.html": [ + [ + "/core-aam/timer-manual.html", + {} + ] + ], + "core-aam/toolbar-manual.html": [ + [ + "/core-aam/toolbar-manual.html", + {} + ] + ], + "core-aam/tooltip-manual.html": [ + [ + "/core-aam/tooltip-manual.html", + {} + ] + ], + "core-aam/tree-manual.html": [ + [ + "/core-aam/tree-manual.html", + {} + ] + ], + "core-aam/treegrid-manual.html": [ + [ + "/core-aam/treegrid-manual.html", + {} + ] + ], + "core-aam/treeitem-manual.html": [ + [ + "/core-aam/treeitem-manual.html", + {} + ] + ], "css/CSS2/backgrounds/background-012.xht": [ [ "/css/CSS2/backgrounds/background-012.xht", @@ -9193,504 +10543,6 @@ {} ] ], - "css/css-ui-3/nav-dir-001.html": [ - [ - "/css/css-ui-3/nav-dir-001.html", - {} - ] - ], - "css/css-ui-3/nav-dir-002.html": [ - [ - "/css/css-ui-3/nav-dir-002.html", - {} - ] - ], - "css/css-ui-3/nav-dir-003.html": [ - [ - "/css/css-ui-3/nav-dir-003.html", - {} - ] - ], - "css/css-ui-3/nav-dir-004.html": [ - [ - "/css/css-ui-3/nav-dir-004.html", - {} - ] - ], - "css/css-ui-3/nav-dir-005.html": [ - [ - "/css/css-ui-3/nav-dir-005.html", - {} - ] - ], - "css/css-ui-3/nav-dir-missing-1.html": [ - [ - "/css/css-ui-3/nav-dir-missing-1.html", - {} - ] - ], - "css/css-ui-3/nav-dir-missing-2.html": [ - [ - "/css/css-ui-3/nav-dir-missing-2.html", - {} - ] - ], - "css/css-ui-3/nav-dir-missing-3.html": [ - [ - "/css/css-ui-3/nav-dir-missing-3.html", - {} - ] - ], - "css/css-ui-3/nav-dir-missing-4.html": [ - [ - "/css/css-ui-3/nav-dir-missing-4.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-001.html": [ - [ - "/css/css-ui-3/nav-dir-target-001.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-002.html": [ - [ - "/css/css-ui-3/nav-dir-target-002.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-003.html": [ - [ - "/css/css-ui-3/nav-dir-target-003.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-004.html": [ - [ - "/css/css-ui-3/nav-dir-target-004.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-005.html": [ - [ - "/css/css-ui-3/nav-dir-target-005.html", - {} - ] - ], - "css/css-ui-3/nav-dir-target-006.html": [ - [ - "/css/css-ui-3/nav-dir-target-006.html", - {} - ] - ], - "css/css-ui-3/nav-down-000.html": [ - [ - "/css/css-ui-3/nav-down-000.html", - {} - ] - ], - "css/css-ui-3/nav-down-001.html": [ - [ - "/css/css-ui-3/nav-down-001.html", - {} - ] - ], - "css/css-ui-3/nav-down-002.html": [ - [ - "/css/css-ui-3/nav-down-002.html", - {} - ] - ], - "css/css-ui-3/nav-down-003.html": [ - [ - "/css/css-ui-3/nav-down-003.html", - {} - ] - ], - "css/css-ui-3/nav-down-004.html": [ - [ - "/css/css-ui-3/nav-down-004.html", - {} - ] - ], - "css/css-ui-3/nav-down-005.html": [ - [ - "/css/css-ui-3/nav-down-005.html", - {} - ] - ], - "css/css-ui-3/nav-down-006.html": [ - [ - "/css/css-ui-3/nav-down-006.html", - {} - ] - ], - "css/css-ui-3/nav-down-007.html": [ - [ - "/css/css-ui-3/nav-down-007.html", - {} - ] - ], - "css/css-ui-3/nav-down-008.html": [ - [ - "/css/css-ui-3/nav-down-008.html", - {} - ] - ], - "css/css-ui-3/nav-down-009.html": [ - [ - "/css/css-ui-3/nav-down-009.html", - {} - ] - ], - "css/css-ui-3/nav-down-010.html": [ - [ - "/css/css-ui-3/nav-down-010.html", - {} - ] - ], - "css/css-ui-3/nav-down-011.html": [ - [ - "/css/css-ui-3/nav-down-011.html", - {} - ] - ], - "css/css-ui-3/nav-down-012.html": [ - [ - "/css/css-ui-3/nav-down-012.html", - {} - ] - ], - "css/css-ui-3/nav-down-013.html": [ - [ - "/css/css-ui-3/nav-down-013.html", - {} - ] - ], - "css/css-ui-3/nav-down-014.html": [ - [ - "/css/css-ui-3/nav-down-014.html", - {} - ] - ], - "css/css-ui-3/nav-down-015.html": [ - [ - "/css/css-ui-3/nav-down-015.html", - {} - ] - ], - "css/css-ui-3/nav-down-016.html": [ - [ - "/css/css-ui-3/nav-down-016.html", - {} - ] - ], - "css/css-ui-3/nav-left-000.html": [ - [ - "/css/css-ui-3/nav-left-000.html", - {} - ] - ], - "css/css-ui-3/nav-left-001.html": [ - [ - "/css/css-ui-3/nav-left-001.html", - {} - ] - ], - "css/css-ui-3/nav-left-002.html": [ - [ - "/css/css-ui-3/nav-left-002.html", - {} - ] - ], - "css/css-ui-3/nav-left-003.html": [ - [ - "/css/css-ui-3/nav-left-003.html", - {} - ] - ], - "css/css-ui-3/nav-left-004.html": [ - [ - "/css/css-ui-3/nav-left-004.html", - {} - ] - ], - "css/css-ui-3/nav-left-005.html": [ - [ - "/css/css-ui-3/nav-left-005.html", - {} - ] - ], - "css/css-ui-3/nav-left-006.html": [ - [ - "/css/css-ui-3/nav-left-006.html", - {} - ] - ], - "css/css-ui-3/nav-left-007.html": [ - [ - "/css/css-ui-3/nav-left-007.html", - {} - ] - ], - "css/css-ui-3/nav-left-008.html": [ - [ - "/css/css-ui-3/nav-left-008.html", - {} - ] - ], - "css/css-ui-3/nav-left-009.html": [ - [ - "/css/css-ui-3/nav-left-009.html", - {} - ] - ], - "css/css-ui-3/nav-left-010.html": [ - [ - "/css/css-ui-3/nav-left-010.html", - {} - ] - ], - "css/css-ui-3/nav-left-011.html": [ - [ - "/css/css-ui-3/nav-left-011.html", - {} - ] - ], - "css/css-ui-3/nav-left-012.html": [ - [ - "/css/css-ui-3/nav-left-012.html", - {} - ] - ], - "css/css-ui-3/nav-left-013.html": [ - [ - "/css/css-ui-3/nav-left-013.html", - {} - ] - ], - "css/css-ui-3/nav-left-014.html": [ - [ - "/css/css-ui-3/nav-left-014.html", - {} - ] - ], - "css/css-ui-3/nav-left-015.html": [ - [ - "/css/css-ui-3/nav-left-015.html", - {} - ] - ], - "css/css-ui-3/nav-left-016.html": [ - [ - "/css/css-ui-3/nav-left-016.html", - {} - ] - ], - "css/css-ui-3/nav-right-000.html": [ - [ - "/css/css-ui-3/nav-right-000.html", - {} - ] - ], - "css/css-ui-3/nav-right-001.html": [ - [ - "/css/css-ui-3/nav-right-001.html", - {} - ] - ], - "css/css-ui-3/nav-right-002.html": [ - [ - "/css/css-ui-3/nav-right-002.html", - {} - ] - ], - "css/css-ui-3/nav-right-003.html": [ - [ - "/css/css-ui-3/nav-right-003.html", - {} - ] - ], - "css/css-ui-3/nav-right-004.html": [ - [ - "/css/css-ui-3/nav-right-004.html", - {} - ] - ], - "css/css-ui-3/nav-right-005.html": [ - [ - "/css/css-ui-3/nav-right-005.html", - {} - ] - ], - "css/css-ui-3/nav-right-006.html": [ - [ - "/css/css-ui-3/nav-right-006.html", - {} - ] - ], - "css/css-ui-3/nav-right-007.html": [ - [ - "/css/css-ui-3/nav-right-007.html", - {} - ] - ], - "css/css-ui-3/nav-right-008.html": [ - [ - "/css/css-ui-3/nav-right-008.html", - {} - ] - ], - "css/css-ui-3/nav-right-009.html": [ - [ - "/css/css-ui-3/nav-right-009.html", - {} - ] - ], - "css/css-ui-3/nav-right-010.html": [ - [ - "/css/css-ui-3/nav-right-010.html", - {} - ] - ], - "css/css-ui-3/nav-right-011.html": [ - [ - "/css/css-ui-3/nav-right-011.html", - {} - ] - ], - "css/css-ui-3/nav-right-012.html": [ - [ - "/css/css-ui-3/nav-right-012.html", - {} - ] - ], - "css/css-ui-3/nav-right-013.html": [ - [ - "/css/css-ui-3/nav-right-013.html", - {} - ] - ], - "css/css-ui-3/nav-right-014.html": [ - [ - "/css/css-ui-3/nav-right-014.html", - {} - ] - ], - "css/css-ui-3/nav-right-015.html": [ - [ - "/css/css-ui-3/nav-right-015.html", - {} - ] - ], - "css/css-ui-3/nav-right-016.html": [ - [ - "/css/css-ui-3/nav-right-016.html", - {} - ] - ], - "css/css-ui-3/nav-up-000.html": [ - [ - "/css/css-ui-3/nav-up-000.html", - {} - ] - ], - "css/css-ui-3/nav-up-001.html": [ - [ - "/css/css-ui-3/nav-up-001.html", - {} - ] - ], - "css/css-ui-3/nav-up-002.html": [ - [ - "/css/css-ui-3/nav-up-002.html", - {} - ] - ], - "css/css-ui-3/nav-up-003.html": [ - [ - "/css/css-ui-3/nav-up-003.html", - {} - ] - ], - "css/css-ui-3/nav-up-004.html": [ - [ - "/css/css-ui-3/nav-up-004.html", - {} - ] - ], - "css/css-ui-3/nav-up-005.html": [ - [ - "/css/css-ui-3/nav-up-005.html", - {} - ] - ], - "css/css-ui-3/nav-up-006.html": [ - [ - "/css/css-ui-3/nav-up-006.html", - {} - ] - ], - "css/css-ui-3/nav-up-007.html": [ - [ - "/css/css-ui-3/nav-up-007.html", - {} - ] - ], - "css/css-ui-3/nav-up-008.html": [ - [ - "/css/css-ui-3/nav-up-008.html", - {} - ] - ], - "css/css-ui-3/nav-up-009.html": [ - [ - "/css/css-ui-3/nav-up-009.html", - {} - ] - ], - "css/css-ui-3/nav-up-010.html": [ - [ - "/css/css-ui-3/nav-up-010.html", - {} - ] - ], - "css/css-ui-3/nav-up-011.html": [ - [ - "/css/css-ui-3/nav-up-011.html", - {} - ] - ], - "css/css-ui-3/nav-up-012.html": [ - [ - "/css/css-ui-3/nav-up-012.html", - {} - ] - ], - "css/css-ui-3/nav-up-013.html": [ - [ - "/css/css-ui-3/nav-up-013.html", - {} - ] - ], - "css/css-ui-3/nav-up-014.html": [ - [ - "/css/css-ui-3/nav-up-014.html", - {} - ] - ], - "css/css-ui-3/nav-up-015.html": [ - [ - "/css/css-ui-3/nav-up-015.html", - {} - ] - ], - "css/css-ui-3/nav-up-016.html": [ - [ - "/css/css-ui-3/nav-up-016.html", - {} - ] - ], "css/css-ui-3/resize-001.html": [ [ "/css/css-ui-3/resize-001.html", @@ -9733,18 +10585,618 @@ {} ] ], + "css/css-ui-3/resize-008.html": [ + [ + "/css/css-ui-3/resize-008.html", + {} + ] + ], + "css/css-ui-3/resize-009.html": [ + [ + "/css/css-ui-3/resize-009.html", + {} + ] + ], + "css/css-ui-3/resize-010.html": [ + [ + "/css/css-ui-3/resize-010.html", + {} + ] + ], + "css/css-ui-3/resize-011.html": [ + [ + "/css/css-ui-3/resize-011.html", + {} + ] + ], + "css/css-ui-3/resize-012.html": [ + [ + "/css/css-ui-3/resize-012.html", + {} + ] + ], + "css/css-ui-3/resize-013.html": [ + [ + "/css/css-ui-3/resize-013.html", + {} + ] + ], + "css/css-ui-3/resize-014.html": [ + [ + "/css/css-ui-3/resize-014.html", + {} + ] + ], + "css/css-ui-3/resize-015.html": [ + [ + "/css/css-ui-3/resize-015.html", + {} + ] + ], + "css/css-ui-3/resize-016.html": [ + [ + "/css/css-ui-3/resize-016.html", + {} + ] + ], + "css/css-ui-3/resize-017.html": [ + [ + "/css/css-ui-3/resize-017.html", + {} + ] + ], + "css/css-ui-3/resize-018.html": [ + [ + "/css/css-ui-3/resize-018.html", + {} + ] + ], + "css/css-ui-3/resize-019.html": [ + [ + "/css/css-ui-3/resize-019.html", + {} + ] + ], + "css/css-ui-3/resize-020.html": [ + [ + "/css/css-ui-3/resize-020.html", + {} + ] + ], + "css/css-ui-3/resize-021.html": [ + [ + "/css/css-ui-3/resize-021.html", + {} + ] + ], "css/css-ui-3/select-cursor-001-manual.html": [ [ "/css/css-ui-3/select-cursor-001-manual.html", {} ] ], + "css/css-ui-3/text-overflow-017.html": [ + [ + "/css/css-ui-3/text-overflow-017.html", + {} + ] + ], + "css/css-ui-3/text-overflow-018.html": [ + [ + "/css/css-ui-3/text-overflow-018.html", + {} + ] + ], + "css/css-ui-3/text-overflow-019.html": [ + [ + "/css/css-ui-3/text-overflow-019.html", + {} + ] + ], "css/css-ui-3/text-overflow.html": [ [ "/css/css-ui-3/text-overflow.html", {} ] ], + "css/css-ui-4/nav-dir-001.html": [ + [ + "/css/css-ui-4/nav-dir-001.html", + {} + ] + ], + "css/css-ui-4/nav-dir-002.html": [ + [ + "/css/css-ui-4/nav-dir-002.html", + {} + ] + ], + "css/css-ui-4/nav-dir-003.html": [ + [ + "/css/css-ui-4/nav-dir-003.html", + {} + ] + ], + "css/css-ui-4/nav-dir-004.html": [ + [ + "/css/css-ui-4/nav-dir-004.html", + {} + ] + ], + "css/css-ui-4/nav-dir-005.html": [ + [ + "/css/css-ui-4/nav-dir-005.html", + {} + ] + ], + "css/css-ui-4/nav-dir-missing-1.html": [ + [ + "/css/css-ui-4/nav-dir-missing-1.html", + {} + ] + ], + "css/css-ui-4/nav-dir-missing-2.html": [ + [ + "/css/css-ui-4/nav-dir-missing-2.html", + {} + ] + ], + "css/css-ui-4/nav-dir-missing-3.html": [ + [ + "/css/css-ui-4/nav-dir-missing-3.html", + {} + ] + ], + "css/css-ui-4/nav-dir-missing-4.html": [ + [ + "/css/css-ui-4/nav-dir-missing-4.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-001.html": [ + [ + "/css/css-ui-4/nav-dir-target-001.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-002.html": [ + [ + "/css/css-ui-4/nav-dir-target-002.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-003.html": [ + [ + "/css/css-ui-4/nav-dir-target-003.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-004.html": [ + [ + "/css/css-ui-4/nav-dir-target-004.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-005.html": [ + [ + "/css/css-ui-4/nav-dir-target-005.html", + {} + ] + ], + "css/css-ui-4/nav-dir-target-006.html": [ + [ + "/css/css-ui-4/nav-dir-target-006.html", + {} + ] + ], + "css/css-ui-4/nav-down-000.html": [ + [ + "/css/css-ui-4/nav-down-000.html", + {} + ] + ], + "css/css-ui-4/nav-down-001.html": [ + [ + "/css/css-ui-4/nav-down-001.html", + {} + ] + ], + "css/css-ui-4/nav-down-002.html": [ + [ + "/css/css-ui-4/nav-down-002.html", + {} + ] + ], + "css/css-ui-4/nav-down-003.html": [ + [ + "/css/css-ui-4/nav-down-003.html", + {} + ] + ], + "css/css-ui-4/nav-down-004.html": [ + [ + "/css/css-ui-4/nav-down-004.html", + {} + ] + ], + "css/css-ui-4/nav-down-005.html": [ + [ + "/css/css-ui-4/nav-down-005.html", + {} + ] + ], + "css/css-ui-4/nav-down-006.html": [ + [ + "/css/css-ui-4/nav-down-006.html", + {} + ] + ], + "css/css-ui-4/nav-down-007.html": [ + [ + "/css/css-ui-4/nav-down-007.html", + {} + ] + ], + "css/css-ui-4/nav-down-008.html": [ + [ + "/css/css-ui-4/nav-down-008.html", + {} + ] + ], + "css/css-ui-4/nav-down-009.html": [ + [ + "/css/css-ui-4/nav-down-009.html", + {} + ] + ], + "css/css-ui-4/nav-down-010.html": [ + [ + "/css/css-ui-4/nav-down-010.html", + {} + ] + ], + "css/css-ui-4/nav-down-011.html": [ + [ + "/css/css-ui-4/nav-down-011.html", + {} + ] + ], + "css/css-ui-4/nav-down-012.html": [ + [ + "/css/css-ui-4/nav-down-012.html", + {} + ] + ], + "css/css-ui-4/nav-down-013.html": [ + [ + "/css/css-ui-4/nav-down-013.html", + {} + ] + ], + "css/css-ui-4/nav-down-014.html": [ + [ + "/css/css-ui-4/nav-down-014.html", + {} + ] + ], + "css/css-ui-4/nav-down-015.html": [ + [ + "/css/css-ui-4/nav-down-015.html", + {} + ] + ], + "css/css-ui-4/nav-down-016.html": [ + [ + "/css/css-ui-4/nav-down-016.html", + {} + ] + ], + "css/css-ui-4/nav-left-000.html": [ + [ + "/css/css-ui-4/nav-left-000.html", + {} + ] + ], + "css/css-ui-4/nav-left-001.html": [ + [ + "/css/css-ui-4/nav-left-001.html", + {} + ] + ], + "css/css-ui-4/nav-left-002.html": [ + [ + "/css/css-ui-4/nav-left-002.html", + {} + ] + ], + "css/css-ui-4/nav-left-003.html": [ + [ + "/css/css-ui-4/nav-left-003.html", + {} + ] + ], + "css/css-ui-4/nav-left-004.html": [ + [ + "/css/css-ui-4/nav-left-004.html", + {} + ] + ], + "css/css-ui-4/nav-left-005.html": [ + [ + "/css/css-ui-4/nav-left-005.html", + {} + ] + ], + "css/css-ui-4/nav-left-006.html": [ + [ + "/css/css-ui-4/nav-left-006.html", + {} + ] + ], + "css/css-ui-4/nav-left-007.html": [ + [ + "/css/css-ui-4/nav-left-007.html", + {} + ] + ], + "css/css-ui-4/nav-left-008.html": [ + [ + "/css/css-ui-4/nav-left-008.html", + {} + ] + ], + "css/css-ui-4/nav-left-009.html": [ + [ + "/css/css-ui-4/nav-left-009.html", + {} + ] + ], + "css/css-ui-4/nav-left-010.html": [ + [ + "/css/css-ui-4/nav-left-010.html", + {} + ] + ], + "css/css-ui-4/nav-left-011.html": [ + [ + "/css/css-ui-4/nav-left-011.html", + {} + ] + ], + "css/css-ui-4/nav-left-012.html": [ + [ + "/css/css-ui-4/nav-left-012.html", + {} + ] + ], + "css/css-ui-4/nav-left-013.html": [ + [ + "/css/css-ui-4/nav-left-013.html", + {} + ] + ], + "css/css-ui-4/nav-left-014.html": [ + [ + "/css/css-ui-4/nav-left-014.html", + {} + ] + ], + "css/css-ui-4/nav-left-015.html": [ + [ + "/css/css-ui-4/nav-left-015.html", + {} + ] + ], + "css/css-ui-4/nav-left-016.html": [ + [ + "/css/css-ui-4/nav-left-016.html", + {} + ] + ], + "css/css-ui-4/nav-right-000.html": [ + [ + "/css/css-ui-4/nav-right-000.html", + {} + ] + ], + "css/css-ui-4/nav-right-001.html": [ + [ + "/css/css-ui-4/nav-right-001.html", + {} + ] + ], + "css/css-ui-4/nav-right-002.html": [ + [ + "/css/css-ui-4/nav-right-002.html", + {} + ] + ], + "css/css-ui-4/nav-right-003.html": [ + [ + "/css/css-ui-4/nav-right-003.html", + {} + ] + ], + "css/css-ui-4/nav-right-004.html": [ + [ + "/css/css-ui-4/nav-right-004.html", + {} + ] + ], + "css/css-ui-4/nav-right-005.html": [ + [ + "/css/css-ui-4/nav-right-005.html", + {} + ] + ], + "css/css-ui-4/nav-right-006.html": [ + [ + "/css/css-ui-4/nav-right-006.html", + {} + ] + ], + "css/css-ui-4/nav-right-007.html": [ + [ + "/css/css-ui-4/nav-right-007.html", + {} + ] + ], + "css/css-ui-4/nav-right-008.html": [ + [ + "/css/css-ui-4/nav-right-008.html", + {} + ] + ], + "css/css-ui-4/nav-right-009.html": [ + [ + "/css/css-ui-4/nav-right-009.html", + {} + ] + ], + "css/css-ui-4/nav-right-010.html": [ + [ + "/css/css-ui-4/nav-right-010.html", + {} + ] + ], + "css/css-ui-4/nav-right-011.html": [ + [ + "/css/css-ui-4/nav-right-011.html", + {} + ] + ], + "css/css-ui-4/nav-right-012.html": [ + [ + "/css/css-ui-4/nav-right-012.html", + {} + ] + ], + "css/css-ui-4/nav-right-013.html": [ + [ + "/css/css-ui-4/nav-right-013.html", + {} + ] + ], + "css/css-ui-4/nav-right-014.html": [ + [ + "/css/css-ui-4/nav-right-014.html", + {} + ] + ], + "css/css-ui-4/nav-right-015.html": [ + [ + "/css/css-ui-4/nav-right-015.html", + {} + ] + ], + "css/css-ui-4/nav-right-016.html": [ + [ + "/css/css-ui-4/nav-right-016.html", + {} + ] + ], + "css/css-ui-4/nav-up-000.html": [ + [ + "/css/css-ui-4/nav-up-000.html", + {} + ] + ], + "css/css-ui-4/nav-up-001.html": [ + [ + "/css/css-ui-4/nav-up-001.html", + {} + ] + ], + "css/css-ui-4/nav-up-002.html": [ + [ + "/css/css-ui-4/nav-up-002.html", + {} + ] + ], + "css/css-ui-4/nav-up-003.html": [ + [ + "/css/css-ui-4/nav-up-003.html", + {} + ] + ], + "css/css-ui-4/nav-up-004.html": [ + [ + "/css/css-ui-4/nav-up-004.html", + {} + ] + ], + "css/css-ui-4/nav-up-005.html": [ + [ + "/css/css-ui-4/nav-up-005.html", + {} + ] + ], + "css/css-ui-4/nav-up-006.html": [ + [ + "/css/css-ui-4/nav-up-006.html", + {} + ] + ], + "css/css-ui-4/nav-up-007.html": [ + [ + "/css/css-ui-4/nav-up-007.html", + {} + ] + ], + "css/css-ui-4/nav-up-008.html": [ + [ + "/css/css-ui-4/nav-up-008.html", + {} + ] + ], + "css/css-ui-4/nav-up-009.html": [ + [ + "/css/css-ui-4/nav-up-009.html", + {} + ] + ], + "css/css-ui-4/nav-up-010.html": [ + [ + "/css/css-ui-4/nav-up-010.html", + {} + ] + ], + "css/css-ui-4/nav-up-011.html": [ + [ + "/css/css-ui-4/nav-up-011.html", + {} + ] + ], + "css/css-ui-4/nav-up-012.html": [ + [ + "/css/css-ui-4/nav-up-012.html", + {} + ] + ], + "css/css-ui-4/nav-up-013.html": [ + [ + "/css/css-ui-4/nav-up-013.html", + {} + ] + ], + "css/css-ui-4/nav-up-014.html": [ + [ + "/css/css-ui-4/nav-up-014.html", + {} + ] + ], + "css/css-ui-4/nav-up-015.html": [ + [ + "/css/css-ui-4/nav-up-015.html", + {} + ] + ], + "css/css-ui-4/nav-up-016.html": [ + [ + "/css/css-ui-4/nav-up-016.html", + {} + ] + ], "css/css-writing-modes-3/background-position-vlr-003.xht": [ [ "/css/css-writing-modes-3/background-position-vlr-003.xht", @@ -10147,6 +11599,12 @@ {} ] ], + "cssom-view/scrollBoundaryBehavior-manual.html": [ + [ + "/cssom-view/scrollBoundaryBehavior-manual.html", + {} + ] + ], "dpub-aam/doc-abstract-manual.html": [ [ "/dpub-aam/doc-abstract-manual.html", @@ -10387,6 +11845,96 @@ {} ] ], + "entries-api/errors-manual.html": [ + [ + "/entries-api/errors-manual.html", + {} + ] + ], + "entries-api/file-webkitRelativePath-manual.html": [ + [ + "/entries-api/file-webkitRelativePath-manual.html", + {} + ] + ], + "entries-api/filesystem-manual.html": [ + [ + "/entries-api/filesystem-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryentry-attributes-manual.html": [ + [ + "/entries-api/filesystemdirectoryentry-attributes-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryentry-createReader-manual.html": [ + [ + "/entries-api/filesystemdirectoryentry-createReader-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryentry-getDirectory-manual.html": [ + [ + "/entries-api/filesystemdirectoryentry-getDirectory-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryentry-getFile-manual.html": [ + [ + "/entries-api/filesystemdirectoryentry-getFile-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryentry-getParent-manual.html": [ + [ + "/entries-api/filesystemdirectoryentry-getParent-manual.html", + {} + ] + ], + "entries-api/filesystemdirectoryreader-manual.html": [ + [ + "/entries-api/filesystemdirectoryreader-manual.html", + {} + ] + ], + "entries-api/filesystementry-attributes-manual.html": [ + [ + "/entries-api/filesystementry-attributes-manual.html", + {} + ] + ], + "entries-api/filesystementry-getParent-manual.html": [ + [ + "/entries-api/filesystementry-getParent-manual.html", + {} + ] + ], + "entries-api/filesystemfileentry-attributes-manual.html": [ + [ + "/entries-api/filesystemfileentry-attributes-manual.html", + {} + ] + ], + "entries-api/filesystemfileentry-file-manual.html": [ + [ + "/entries-api/filesystemfileentry-file-manual.html", + {} + ] + ], + "entries-api/filesystemfileentry-getParent-manual.html": [ + [ + "/entries-api/filesystemfileentry-getParent-manual.html", + {} + ] + ], + "entries-api/interfaces-manual.html": [ + [ + "/entries-api/interfaces-manual.html", + {} + ] + ], "fullscreen/api/document-exit-fullscreen-manual.html": [ [ "/fullscreen/api/document-exit-fullscreen-manual.html", @@ -10429,15 +11977,15 @@ {} ] ], - "fullscreen/api/element-ready-check-containing-iframe-manual.html": [ + "fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html": [ [ - "/fullscreen/api/element-ready-check-containing-iframe-manual.html", + "/fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html", {} ] ], - "fullscreen/api/element-ready-check-enabled-flag-not-set-manual.html": [ + "fullscreen/api/element-ready-check-containing-iframe-manual.html": [ [ - "/fullscreen/api/element-ready-check-enabled-flag-not-set-manual.html", + "/fullscreen/api/element-ready-check-containing-iframe-manual.html", {} ] ], @@ -10459,6 +12007,18 @@ {} ] ], + "fullscreen/api/element-ready-check-not-allowed-cross-origin-manual.sub.html": [ + [ + "/fullscreen/api/element-ready-check-not-allowed-cross-origin-manual.sub.html", + {} + ] + ], + "fullscreen/api/element-ready-check-not-allowed-manual.html": [ + [ + "/fullscreen/api/element-ready-check-not-allowed-manual.html", + {} + ] + ], "fullscreen/api/element-ready-check-not-in-document-manual.html": [ [ "/fullscreen/api/element-ready-check-not-in-document-manual.html", @@ -10495,6 +12055,12 @@ {} ] ], + "fullscreen/api/element-request-fullscreen-dialog-manual.html": [ + [ + "/fullscreen/api/element-request-fullscreen-dialog-manual.html", + {} + ] + ], "fullscreen/api/element-request-fullscreen-manual.html": [ [ "/fullscreen/api/element-request-fullscreen-manual.html", @@ -10507,6 +12073,12 @@ {} ] ], + "fullscreen/api/element-request-fullscreen-null-ns-manual.html": [ + [ + "/fullscreen/api/element-request-fullscreen-null-ns-manual.html", + {} + ] + ], "fullscreen/api/element-request-fullscreen-same-manual.html": [ [ "/fullscreen/api/element-request-fullscreen-same-manual.html", @@ -10561,6 +12133,12 @@ {} ] ], + "fullscreen/model/move-to-inactive-document-manual.html": [ + [ + "/fullscreen/model/move-to-inactive-document-manual.html", + {} + ] + ], "fullscreen/model/remove-child-manual.html": [ [ "/fullscreen/model/remove-child-manual.html", @@ -10591,6 +12169,12 @@ {} ] ], + "fullscreen/rendering/fullscreen-pseudo-class-manual.html": [ + [ + "/fullscreen/rendering/fullscreen-pseudo-class-manual.html", + {} + ] + ], "gamepad/events-manual.html": [ [ "/gamepad/events-manual.html", @@ -11335,6 +12919,18 @@ {} ] ], + "html/editing/dnd/the-datatransfer-interface/protectedDragDataTransfer-manual.html": [ + [ + "/html/editing/dnd/the-datatransfer-interface/protectedDragDataTransfer-manual.html", + {} + ] + ], + "html/editing/dnd/the-datatransfer-interface/protectedPasteDataTransfer-manual.html": [ + [ + "/html/editing/dnd/the-datatransfer-interface/protectedPasteDataTransfer-manual.html", + {} + ] + ], "html/editing/dnd/the-dragevent-interface/dragevent-manual.html": [ [ "/html/editing/dnd/the-dragevent-interface/dragevent-manual.html", @@ -11629,6 +13225,60 @@ {} ] ], + "html/semantics/embedded-content/the-iframe-element/sandbox_003-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_003-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_004-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_004-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_006-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_006-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_007-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_007-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_008-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_008-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_010-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_010-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_020-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_020-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_021-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_021-manual.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_022-manual.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_022-manual.htm", + {} + ] + ], "html/semantics/embedded-content/the-img-element/ismap/img-ismap-coordinates-manual.html": [ [ "/html/semantics/embedded-content/the-img-element/ismap/img-ismap-coordinates-manual.html", @@ -11803,9 +13453,21 @@ {} ] ], - "input-events/input-events-typing-data-manual.html": [ + "input-events/input-events-cut-paste-manual.html": [ [ - "/input-events/input-events-typing-data-manual.html", + "/input-events/input-events-cut-paste-manual.html", + {} + ] + ], + "input-events/input-events-get-target-ranges-manual.html": [ + [ + "/input-events/input-events-get-target-ranges-manual.html", + {} + ] + ], + "input-events/input-events-typing-manual.html": [ + [ + "/input-events/input-events-typing-manual.html", {} ] ], @@ -11905,42 +13567,6 @@ {} ] ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_autocomplete-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_autocomplete-manual.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_list-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_list-manual.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasdate-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasdate-manual.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasnumber-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasnumber-manual.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_length-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_length-manual.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_selectedindex-manual.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_selectedindex-manual.html", - {} - ] - ], "old-tests/submission/Microsoft/dragdrop/dragdrop_000-manual.htm": [ [ "/old-tests/submission/Microsoft/dragdrop/dragdrop_000-manual.htm", @@ -12043,60 +13669,6 @@ {} ] ], - "old-tests/submission/Microsoft/sandbox/sandbox_003-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_003-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_004-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_004-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_006-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_006-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_007-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_007-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_008-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_008-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_010-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_010-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_020-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_020-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_021-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_021-manual.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_022-manual.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_022-manual.htm", - {} - ] - ], "orientation-event/free-fall-manual.html": [ [ "/orientation-event/free-fall-manual.html", @@ -12193,6 +13765,12 @@ {} ] ], + "orientation-sensor/OrientationSensor_onerror-manual.https.html": [ + [ + "/orientation-sensor/OrientationSensor_onerror-manual.https.html", + {} + ] + ], "page-visibility/test_minimize-manual.html": [ [ "/page-visibility/test_minimize-manual.html", @@ -12205,6 +13783,126 @@ {} ] ], + "payment-method-basic-card/empty-data-manual.https.html": [ + [ + "/payment-method-basic-card/empty-data-manual.https.html", + {} + ] + ], + "payment-request/PaymentAddress/attributes-and-toJSON-method-manual.https.html": [ + [ + "/payment-request/PaymentAddress/attributes-and-toJSON-method-manual.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-call-immediate-manual.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/updateWith-call-immediate-manual.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-duplicate-shipping-options-manual.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/updateWith-duplicate-shipping-options-manual.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-method-abort-update-manual.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/updateWith-method-abort-update-manual.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-state-checks-manual.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/updateWith-state-checks-manual.https.html", + {} + ] + ], + "payment-request/algorithms-manual.https.html": [ + [ + "/payment-request/algorithms-manual.https.html", + {} + ] + ], + "payment-request/change-shipping-option-manual.https.html": [ + [ + "/payment-request/change-shipping-option-manual.https.html", + {} + ] + ], + "payment-request/payment-response/complete-method-manual.https.html": [ + [ + "/payment-request/payment-response/complete-method-manual.https.html", + {} + ] + ], + "payment-request/payment-response/methodName-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/methodName-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/payerEmail-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/payerEmail-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/payerName-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/payerName-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/payerPhone-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/payerPhone-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/requestId-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/requestId-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/shippingAddress-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/shippingAddress-attribute-manual.https.html", + {} + ] + ], + "payment-request/payment-response/shippingOption-attribute-manual.https.html": [ + [ + "/payment-request/payment-response/shippingOption-attribute-manual.https.html", + {} + ] + ], + "payment-request/shipping-address-changed-manual.https.html": [ + [ + "/payment-request/shipping-address-changed-manual.https.html", + {} + ] + ], + "payment-request/updateWith-method-pmi-handling-manual.https.html": [ + [ + "/payment-request/updateWith-method-pmi-handling-manual.https.html", + {} + ] + ], + "payment-request/user-abort-algorithm-manual.https.html": [ + [ + "/payment-request/user-abort-algorithm-manual.https.html", + {} + ] + ], + "payment-request/user-accepts-payment-request-algo-manual.https.html": [ + [ + "/payment-request/user-accepts-payment-request-algo-manual.https.html", + {} + ] + ], "pointerevents/compat/pointerevent_touch-action_two-finger_interaction-manual.html": [ [ "/pointerevents/compat/pointerevent_touch-action_two-finger_interaction-manual.html", @@ -12217,6 +13915,12 @@ {} ] ], + "pointerevents/html/pointerevent_drag_interaction-manual.html": [ + [ + "/pointerevents/html/pointerevent_drag_interaction-manual.html", + {} + ] + ], "pointerevents/pointerevent_attributes_hoverable_pointers-manual.html": [ [ "/pointerevents/pointerevent_attributes_hoverable_pointers-manual.html", @@ -16015,18 +17719,6 @@ {} ] ], - "uievents/keyboard/key-manual.css": [ - [ - "/uievents/keyboard/key-manual.css", - {} - ] - ], - "uievents/keyboard/key-manual.js": [ - [ - "/uievents/keyboard/key-manual.js", - {} - ] - ], "uievents/mouse/mouseevent_move_button-manual.html": [ [ "/uievents/mouse/mouseevent_move_button-manual.html", @@ -16165,6 +17857,12 @@ {} ] ], + "viewport/viewport-attribute-event-handlers-manual.html": [ + [ + "/viewport/viewport-attribute-event-handlers-manual.html", + {} + ] + ], "viewport/viewport-dimensions-custom-scrollbars-manual.html": [ [ "/viewport/viewport-dimensions-custom-scrollbars-manual.html", @@ -16213,6 +17911,12 @@ {} ] ], + "viewport/viewport-url-bar-changes-height-manual.html": [ + [ + "/viewport/viewport-url-bar-changes-height-manual.html", + {} + ] + ], "wai-aria/alertdialog_modal_false-manual.html": [ [ "/wai-aria/alertdialog_modal_false-manual.html", @@ -17575,6 +19279,138 @@ {} ] ], + "web-nfc/nfc_hw_disabled-manual.https.html": [ + [ + "/web-nfc/nfc_hw_disabled-manual.https.html", + {} + ] + ], + "web-nfc/nfc_push_ArrayBuffer-manual.https.html": [ + [ + "/web-nfc/nfc_push_ArrayBuffer-manual.https.html", + {} + ] + ], + "web-nfc/nfc_push_DOMString-manual.https.html": [ + [ + "/web-nfc/nfc_push_DOMString-manual.https.html", + {} + ] + ], + "web-nfc/nfc_recordType_empty-manual.https.html": [ + [ + "/web-nfc/nfc_recordType_empty-manual.https.html", + {} + ] + ], + "web-nfc/nfc_recordType_json-manual.https.html": [ + [ + "/web-nfc/nfc_recordType_json-manual.https.html", + {} + ] + ], + "web-nfc/nfc_recordType_opaque-manual.https.html": [ + [ + "/web-nfc/nfc_recordType_opaque-manual.https.html", + {} + ] + ], + "web-nfc/nfc_recordType_text-manual.https.html": [ + [ + "/web-nfc/nfc_recordType_text-manual.https.html", + {} + ] + ], + "web-nfc/nfc_recordType_url-manual.https.html": [ + [ + "/web-nfc/nfc_recordType_url-manual.https.html", + {} + ] + ], + "web-share/share-cancel-manual.html": [ + [ + "/web-share/share-cancel-manual.html", + {} + ] + ], + "web-share/share-extra-argument-manual.html": [ + [ + "/web-share/share-extra-argument-manual.html", + {} + ] + ], + "web-share/share-extra-field-manual.html": [ + [ + "/web-share/share-extra-field-manual.html", + {} + ] + ], + "web-share/share-non-string-manual.html": [ + [ + "/web-share/share-non-string-manual.html", + {} + ] + ], + "web-share/share-null-manual.html": [ + [ + "/web-share/share-null-manual.html", + {} + ] + ], + "web-share/share-simple-manual.html": [ + [ + "/web-share/share-simple-manual.html", + {} + ] + ], + "web-share/share-unicode-strings-manual.html": [ + [ + "/web-share/share-unicode-strings-manual.html", + {} + ] + ], + "web-share/share-unicode-strings-nonutf8-manual.html": [ + [ + "/web-share/share-unicode-strings-nonutf8-manual.html", + {} + ] + ], + "web-share/share-url-data-manual.html": [ + [ + "/web-share/share-url-data-manual.html", + {} + ] + ], + "web-share/share-url-empty-manual.html": [ + [ + "/web-share/share-url-empty-manual.html", + {} + ] + ], + "web-share/share-url-encoding-manual.html": [ + [ + "/web-share/share-url-encoding-manual.html", + {} + ] + ], + "web-share/share-url-noscheme-manual.html": [ + [ + "/web-share/share-url-noscheme-manual.html", + {} + ] + ], + "web-share/share-url-pathonly-manual.html": [ + [ + "/web-share/share-url-pathonly-manual.html", + {} + ] + ], + "web-share/share-url-relative-manual.html": [ + [ + "/web-share/share-url-relative-manual.html", + {} + ] + ], "webstorage/storage_local-manual.html": [ [ "/webstorage/storage_local-manual.html", @@ -17586,6 +19422,12 @@ "/webstorage/storage_session-manual.html", {} ] + ], + "webusb/usb-manual.https.html": [ + [ + "/webusb/usb-manual.https.html", + {} + ] ] }, "reftest": { @@ -17625,330 +19467,6 @@ {} ] ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8_ref.html", - "==" - ] - ], - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9.html": [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9.html", - [ - [ - "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9_ref.html", - "==" - ] - ], - {} - ] - ], "2dcontext/line-styles/canvas_linestyles_linecap_001.htm": [ [ "/2dcontext/line-styles/canvas_linestyles_linecap_001.htm", @@ -18069,66 +19587,54 @@ {} ] ], - "assumptions/ahem.html": [ + "compat/webkit-linear-gradient-line-bottom.html": [ [ - "/assumptions/ahem.html", + "/compat/webkit-linear-gradient-line-bottom.html", [ [ - "/assumptions/ahem-ref.html", + "/compat/green-ref.html", "==" ] ], {} ] ], - "assumptions/canvas-background.html": [ + "compat/webkit-linear-gradient-line-left.html": [ [ - "/assumptions/canvas-background.html", + "/compat/webkit-linear-gradient-line-left.html", [ [ - "/assumptions/canvas-background-ref.html", + "/compat/green-ref.html", "==" ] ], {} ] ], - "assumptions/initial-color.html": [ + "compat/webkit-linear-gradient-line-right.html": [ [ - "/assumptions/initial-color.html", + "/compat/webkit-linear-gradient-line-right.html", [ [ - "/assumptions/initial-color-ref.html", + "/compat/green-ref.html", "==" ] ], {} ] ], - "assumptions/medium-font-size.html": [ + "compat/webkit-linear-gradient-line-top.html": [ [ - "/assumptions/medium-font-size.html", + "/compat/webkit-linear-gradient-line-top.html", [ [ - "/assumptions/medium-font-size-ref.html", + "/compat/green-ref.html", "==" ] ], {} ] ], - "assumptions/min-font-size.html": [ - [ - "/assumptions/min-font-size.html", - [ - [ - "/assumptions/min-font-size-ref.html", - "!=" - ] - ], - {} - ] - ], "compat/webkit-text-fill-color-property-001a.html": [ [ "/compat/webkit-text-fill-color-property-001a.html", @@ -18237,12 +19743,108 @@ {} ] ], - "css-font-display/font-display.html": [ + "css-backgrounds/background-clip-color-repaint.html": [ [ - "/css-font-display/font-display.html", + "/css-backgrounds/background-clip-color-repaint.html", [ [ - "/css-font-display/font-display-ref.html", + "/css-backgrounds/background-clip-color-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "css-backgrounds/background-clip-color.html": [ + [ + "/css-backgrounds/background-clip-color.html", + [ + [ + "/css-backgrounds/background-clip-color-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/font-display/font-display.html": [ + [ + "/css-fonts/font-display/font-display.html", + [ + [ + "/css-fonts/font-display/font-display-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/matching/fixed-stretch-style-over-weight.html": [ + [ + "/css-fonts/matching/fixed-stretch-style-over-weight.html", + [ + [ + "/css-fonts/matching/fixed-stretch-style-over-weight-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/matching/stretch-distance-over-weight-distance.html": [ + [ + "/css-fonts/matching/stretch-distance-over-weight-distance.html", + [ + [ + "/css-fonts/matching/stretch-distance-over-weight-distance-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/matching/style-ranges-over-weight-direction.html": [ + [ + "/css-fonts/matching/style-ranges-over-weight-direction.html", + [ + [ + "/css-fonts/matching/style-ranges-over-weight-direction-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/variations/variable-box-font.html": [ + [ + "/css-fonts/variations/variable-box-font.html", + [ + [ + "/css-fonts/variations/variable-box-font-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/variations/variable-gpos-m2b.html": [ + [ + "/css-fonts/variations/variable-gpos-m2b.html", + [ + [ + "/css-fonts/variations/variable-gpos-m2b-ref.html", + "==" + ] + ], + {} + ] + ], + "css-fonts/variations/variable-gsub.html": [ + [ + "/css-fonts/variations/variable-gsub.html", + [ + [ + "/css-fonts/variations/variable-gsub-ref.html", "==" ] ], @@ -18285,6 +19887,126 @@ {} ] ], + "css-paint-api/geometry-background-image-001.html": [ + [ + "/css-paint-api/geometry-background-image-001.html", + [ + [ + "/css-paint-api/geometry-background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-background-image-002.html": [ + [ + "/css-paint-api/geometry-background-image-002.html", + [ + [ + "/css-paint-api/geometry-background-image-002-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-001.html": [ + [ + "/css-paint-api/geometry-background-image-tiled-001.html", + [ + [ + "/css-paint-api/geometry-background-image-tiled-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-002.html": [ + [ + "/css-paint-api/geometry-background-image-tiled-002.html", + [ + [ + "/css-paint-api/geometry-background-image-tiled-002-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-003.html": [ + [ + "/css-paint-api/geometry-background-image-tiled-003.html", + [ + [ + "/css-paint-api/geometry-background-image-tiled-003-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-border-image-001.html": [ + [ + "/css-paint-api/geometry-border-image-001.html", + [ + [ + "/css-paint-api/geometry-border-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-border-image-002.html": [ + [ + "/css-paint-api/geometry-border-image-002.html", + [ + [ + "/css-paint-api/geometry-border-image-002-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-border-image-003.html": [ + [ + "/css-paint-api/geometry-border-image-003.html", + [ + [ + "/css-paint-api/geometry-border-image-003-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/geometry-border-image-004.html": [ + [ + "/css-paint-api/geometry-border-image-004.html", + [ + [ + "/css-paint-api/geometry-border-image-004-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/hidpi/device-pixel-ratio.html": [ + [ + "/css-paint-api/hidpi/device-pixel-ratio.html", + [ + [ + "/css-paint-api/hidpi/device-pixel-ratio-ref.html", + "==" + ] + ], + {} + ] + ], "css-paint-api/invalid-image-constructor-error.html": [ [ "/css-paint-api/invalid-image-constructor-error.html", @@ -18453,6 +20175,318 @@ {} ] ], + "css-paint-api/parse-input-arguments-001.html": [ + [ + "/css-paint-api/parse-input-arguments-001.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-002.html": [ + [ + "/css-paint-api/parse-input-arguments-002.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-003.html": [ + [ + "/css-paint-api/parse-input-arguments-003.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-004.html": [ + [ + "/css-paint-api/parse-input-arguments-004.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-005.html": [ + [ + "/css-paint-api/parse-input-arguments-005.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-006.html": [ + [ + "/css-paint-api/parse-input-arguments-006.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-007.html": [ + [ + "/css-paint-api/parse-input-arguments-007.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-008.html": [ + [ + "/css-paint-api/parse-input-arguments-008.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-009.html": [ + [ + "/css-paint-api/parse-input-arguments-009.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-010.html": [ + [ + "/css-paint-api/parse-input-arguments-010.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-011.html": [ + [ + "/css-paint-api/parse-input-arguments-011.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-012.html": [ + [ + "/css-paint-api/parse-input-arguments-012.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-013.html": [ + [ + "/css-paint-api/parse-input-arguments-013.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-014.html": [ + [ + "/css-paint-api/parse-input-arguments-014.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-015.html": [ + [ + "/css-paint-api/parse-input-arguments-015.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-016.html": [ + [ + "/css-paint-api/parse-input-arguments-016.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-017.html": [ + [ + "/css-paint-api/parse-input-arguments-017.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-018.html": [ + [ + "/css-paint-api/parse-input-arguments-018.html", + [ + [ + "/css-paint-api/parse-input-arguments-018-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-019.html": [ + [ + "/css-paint-api/parse-input-arguments-019.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-020.html": [ + [ + "/css-paint-api/parse-input-arguments-020.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-021.html": [ + [ + "/css-paint-api/parse-input-arguments-021.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/parse-input-arguments-022.html": [ + [ + "/css-paint-api/parse-input-arguments-022.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/registered-properties-in-custom-paint.html": [ + [ + "/css-paint-api/registered-properties-in-custom-paint.html", + [ + [ + "/css-paint-api/parse-input-arguments-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/style-background-image.html": [ + [ + "/css-paint-api/style-background-image.html", + [ + [ + "/css-paint-api/style-background-image-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/style-before-pseudo.html": [ + [ + "/css-paint-api/style-before-pseudo.html", + [ + [ + "/css-paint-api/style-before-pseudo-ref.html", + "==" + ] + ], + {} + ] + ], + "css-paint-api/style-first-letter-pseudo.html": [ + [ + "/css-paint-api/style-first-letter-pseudo.html", + [ + [ + "/css-paint-api/style-first-letter-pseudo-ref.html", + "==" + ] + ], + {} + ] + ], "css-paint-api/valid-image-after-load.html": [ [ "/css-paint-api/valid-image-after-load.html", @@ -18477,6 +20511,18 @@ {} ] ], + "css-scoping/slotted-with-pseudo-element.html": [ + [ + "/css-scoping/slotted-with-pseudo-element.html", + [ + [ + "/css-scoping/slotted-with-pseudo-element-ref.html", + "==" + ] + ], + {} + ] + ], "css/CSS2/abspos/abspos-containing-block-initial-001.xht": [ [ "/css/CSS2/abspos/abspos-containing-block-initial-001.xht", @@ -87545,6 +89591,18 @@ {} ] ], + "css/CSS2/tables/table-anonymous-border-spacing.xht": [ + [ + "/css/CSS2/tables/table-anonymous-border-spacing.xht", + [ + [ + "/css/CSS2/tables/reference/table-anonymous-border-spacing-ref.xht", + "==" + ] + ], + {} + ] + ], "css/CSS2/tables/table-anonymous-objects-009.xht": [ [ "/css/CSS2/tables/table-anonymous-objects-009.xht", @@ -89473,6 +91531,18 @@ {} ] ], + "css/CSS2/tables/table-anonymous-text-indent.xht": [ + [ + "/css/CSS2/tables/table-anonymous-text-indent.xht", + [ + [ + "/css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht", + "==" + ] + ], + {} + ] + ], "css/CSS2/tables/table-backgrounds-bc-cell-001.xht": [ [ "/css/CSS2/tables/table-backgrounds-bc-cell-001.xht", @@ -102705,6 +104775,18 @@ {} ] ], + "css/css-flexbox-1/auto-margins-001.html": [ + [ + "/css/css-flexbox-1/auto-margins-001.html", + [ + [ + "/css/css-flexbox-1/auto-margins-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-flexbox-1/css-box-justify-content.html": [ [ "/css/css-flexbox-1/css-box-justify-content.html", @@ -106437,6 +108519,42 @@ {} ] ], + "css/css-flexbox-1/percentage-heights-002.html": [ + [ + "/css/css-flexbox-1/percentage-heights-002.html", + [ + [ + "/css/css-flexbox-1/percentage-heights-002-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-flexbox-1/percentage-widths-001.html": [ + [ + "/css/css-flexbox-1/percentage-widths-001.html", + [ + [ + "/css/css-flexbox-1/percentage-widths-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-flexbox-1/position-absolute-005.html": [ + [ + "/css/css-flexbox-1/position-absolute-005.html", + [ + [ + "/css/css-flexbox-1/position-absolute-005-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-flexbox-1/ttwf-reftest-flex-align-content-center.html": [ [ "/css/css-flexbox-1/ttwf-reftest-flex-align-content-center.html", @@ -106593,6 +108711,18 @@ {} ] ], + "css/css-flexbox-1/whitespace-in-flexitem-001.html": [ + [ + "/css/css-flexbox-1/whitespace-in-flexitem-001.html", + [ + [ + "/css/css-flexbox-1/whitespace-in-flexitem-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-fonts-3/alternates-order.html": [ [ "/css/css-fonts-3/alternates-order.html", @@ -107553,6 +109683,90 @@ {} ] ], + "css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001.html": [ + [ + "/css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001.html", + [ + [ + "/css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-item-absolute-positioning-dynamic-001.html": [ + [ + "/css/css-grid-1/abspos/grid-item-absolute-positioning-dynamic-001.html", + [ + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-paint-positioned-children-001.html": [ + [ + "/css/css-grid-1/abspos/grid-paint-positioned-children-001.html", + [ + [ + "/css/css-grid-1/abspos/grid-paint-positioned-children-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-children-writing-modes-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-children-writing-modes-001.html", + [ + [ + "/css/css-grid-1/abspos/grid-positioned-children-writing-modes-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-item-dynamic-change-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-item-dynamic-change-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-background-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-background-001.html", + [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-background-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-background-rtl-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-background-rtl-001.html", + [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-background-rtl-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-grid-1/abspos/orthogonal-positioned-grid-items-001.html": [ [ "/css/css-grid-1/abspos/orthogonal-positioned-grid-items-001.html", @@ -107961,6 +110175,18 @@ {} ] ], + "css/css-grid-1/abspos/positioned-grid-items-sizing-001.html": [ + [ + "/css/css-grid-1/abspos/positioned-grid-items-sizing-001.html", + [ + [ + "/css/css-grid-1/abspos/positioned-grid-items-sizing-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-grid-1/alignment/grid-content-distribution-001.html": [ [ "/css/css-grid-1/alignment/grid-content-distribution-001.html", @@ -108549,6 +110775,150 @@ {} ] ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-001.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-002.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-002.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-003.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-003.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-004.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-004.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-005.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-005.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-006.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-006.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-007.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-007.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-008.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-008.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-009.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-009.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-010.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-010.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-011.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-011.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-012.html": [ + [ + "/css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-012.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "css/css-grid-1/grid-definition/fr-unit-with-percentage.html": [ [ "/css/css-grid-1/grid-definition/fr-unit-with-percentage.html", @@ -109869,6 +112239,18 @@ {} ] ], + "css/css-grid-1/implicit-grids/grid-support-grid-auto-columns-rows-002.html": [ + [ + "/css/css-grid-1/implicit-grids/grid-support-grid-auto-columns-rows-002.html", + [ + [ + "/css/css-grid-1/reference/grid-support-grid-auto-columns-rows-002-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-grid-1/layout-algorithm/grid-layout-free-space-unit.html": [ [ "/css/css-grid-1/layout-algorithm/grid-layout-free-space-unit.html", @@ -109929,6 +112311,18 @@ {} ] ], + "css/css-grid-1/placement/grid-placement-using-named-grid-lines-001.html": [ + [ + "/css/css-grid-1/placement/grid-placement-using-named-grid-lines-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "css/css-images-3/css-image-fallbacks-and-annotations.html": [ [ "/css/css-images-3/css-image-fallbacks-and-annotations.html", @@ -110049,12 +112443,12 @@ {} ] ], - "css/css-logical-props-1/cascading-001.html": [ + "css/css-logical-1/cascading-001.html": [ [ - "/css/css-logical-props-1/cascading-001.html", + "/css/css-logical-1/cascading-001.html", [ [ - "/css/css-logical-props-1/cascading-001-ref.html", + "/css/css-logical-1/cascading-001-ref.html", "==" ] ], @@ -110714,7 +113108,7 @@ "/css/css-masking-1/clip-path-svg-content/clip-path-precision-001.svg", [ [ - "/css/css-masking-1/clip-path-svg-content/reference/clip-path-precision-002-ref.svg", + "/css/css-masking-1/clip-path-svg-content/reference/clip-path-precision-001-ref.svg", "==" ] ], @@ -111969,24 +114363,24 @@ {} ] ], - "css/css-multicol-1/multicol-block-clip-001.xht": [ + "css/css-multicol-1/multicol-block-no-clip-001.xht": [ [ - "/css/css-multicol-1/multicol-block-clip-001.xht", + "/css/css-multicol-1/multicol-block-no-clip-001.xht", [ [ - "/css/css-multicol-1/multicol-block-clip-001-ref.xht", + "/css/css-multicol-1/multicol-block-no-clip-001-ref.xht", "==" ] ], {} ] ], - "css/css-multicol-1/multicol-block-clip-002.xht": [ + "css/css-multicol-1/multicol-block-no-clip-002.xht": [ [ - "/css/css-multicol-1/multicol-block-clip-002.xht", + "/css/css-multicol-1/multicol-block-no-clip-002.xht", [ [ - "/css/css-multicol-1/multicol-block-clip-002-ref.xht", + "/css/css-multicol-1/multicol-block-no-clip-002-ref.xht", "==" ] ], @@ -113133,6 +115527,18 @@ {} ] ], + "css/css-multicol-1/multicol-rule-shorthand-2.xht": [ + [ + "/css/css-multicol-1/multicol-rule-shorthand-2.xht", + [ + [ + "/css/css-multicol-1/multicol-rule-shorthand-2-ref.xht", + "==" + ] + ], + {} + ] + ], "css/css-multicol-1/multicol-rule-solid-000.xht": [ [ "/css/css-multicol-1/multicol-rule-solid-000.xht", @@ -113889,6 +116295,54 @@ {} ] ], + "css/css-position-3/position-sticky-flexbox.html": [ + [ + "/css/css-position-3/position-sticky-flexbox.html", + [ + [ + "/css/css-position-3/position-sticky-flexbox-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-grid.html": [ + [ + "/css/css-position-3/position-sticky-grid.html", + [ + [ + "/css/css-position-3/position-sticky-grid-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-inflow-position.html": [ + [ + "/css/css-position-3/position-sticky-inflow-position.html", + [ + [ + "/css/css-position-3/position-sticky-inflow-position-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-inline.html": [ + [ + "/css/css-position-3/position-sticky-inline.html", + [ + [ + "/css/css-position-3/position-sticky-inline-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-position-3/position-sticky-left.html": [ [ "/css/css-position-3/position-sticky-left.html", @@ -113901,6 +116355,102 @@ {} ] ], + "css/css-position-3/position-sticky-margins.html": [ + [ + "/css/css-position-3/position-sticky-margins.html", + [ + [ + "/css/css-position-3/position-sticky-margins-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-bottom.html": [ + [ + "/css/css-position-3/position-sticky-nested-bottom.html", + [ + [ + "/css/css-position-3/position-sticky-nested-bottom-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-inline.html": [ + [ + "/css/css-position-3/position-sticky-nested-inline.html", + [ + [ + "/css/css-position-3/position-sticky-nested-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-left.html": [ + [ + "/css/css-position-3/position-sticky-nested-left.html", + [ + [ + "/css/css-position-3/position-sticky-nested-left-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-right.html": [ + [ + "/css/css-position-3/position-sticky-nested-right.html", + [ + [ + "/css/css-position-3/position-sticky-nested-right-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-table.html": [ + [ + "/css/css-position-3/position-sticky-nested-table.html", + [ + [ + "/css/css-position-3/position-sticky-nested-table-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-nested-top.html": [ + [ + "/css/css-position-3/position-sticky-nested-top.html", + [ + [ + "/css/css-position-3/position-sticky-nested-top-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-overflow-padding.html": [ + [ + "/css/css-position-3/position-sticky-overflow-padding.html", + [ + [ + "/css/css-position-3/position-sticky-overflow-padding-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-position-3/position-sticky-right.html": [ [ "/css/css-position-3/position-sticky-right.html", @@ -113913,6 +116463,30 @@ {} ] ], + "css/css-position-3/position-sticky-root-scroller.html": [ + [ + "/css/css-position-3/position-sticky-root-scroller.html", + [ + [ + "/css/css-position-3/position-sticky-root-scroller-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-stacking-context.html": [ + [ + "/css/css-position-3/position-sticky-stacking-context.html", + [ + [ + "/css/css-position-3/position-sticky-stacking-context-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-position-3/position-sticky-table-tfoot-bottom.html": [ [ "/css/css-position-3/position-sticky-table-tfoot-bottom.html", @@ -114021,6 +116595,42 @@ {} ] ], + "css/css-position-3/position-sticky-transforms-translate.html": [ + [ + "/css/css-position-3/position-sticky-transforms-translate.html", + [ + [ + "/css/css-position-3/position-sticky-transforms-translate-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-transforms.html": [ + [ + "/css/css-position-3/position-sticky-transforms.html", + [ + [ + "/css/css-position-3/position-sticky-transforms-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-position-3/position-sticky-writing-modes.html": [ + [ + "/css/css-position-3/position-sticky-writing-modes.html", + [ + [ + "/css/css-position-3/position-sticky-writing-modes-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-pseudo-4/first-letter-001.html": [ [ "/css/css-pseudo-4/first-letter-001.html", @@ -114057,6 +116667,54 @@ {} ] ], + "css/css-pseudo-4/marker-and-other-pseudo-elements.html": [ + [ + "/css/css-pseudo-4/marker-and-other-pseudo-elements.html", + [ + [ + "/css/css-pseudo-4/marker-and-other-pseudo-elements-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-pseudo-4/marker-color.html": [ + [ + "/css/css-pseudo-4/marker-color.html", + [ + [ + "/css/css-pseudo-4/marker-color-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-pseudo-4/marker-font-properties.html": [ + [ + "/css/css-pseudo-4/marker-font-properties.html", + [ + [ + "/css/css-pseudo-4/marker-font-properties-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-pseudo-4/marker-inherit-values.html": [ + [ + "/css/css-pseudo-4/marker-inherit-values.html", + [ + [ + "/css/css-pseudo-4/marker-inherit-values-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-regions-1/contentEditable/contentEditable-001.html": [ [ "/css/css-regions-1/contentEditable/contentEditable-001.html", @@ -118009,6 +120667,30 @@ {} ] ], + "css/css-tables-3/visibility-collapse-colspan-003.html": [ + [ + "/css/css-tables-3/visibility-collapse-colspan-003.html", + [ + [ + "/css/css-tables-3/visibility-collapse-colspan-003-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-005.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-005.html", + [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-005-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-text-3/i18n/css3-text-line-break-jazh-001.html": [ [ "/css/css-text-3/i18n/css3-text-line-break-jazh-001.html", @@ -123313,6 +125995,30 @@ {} ] ], + "css/css-text-3/line-break/line-break-anywhere-001.html": [ + [ + "/css/css-text-3/line-break/line-break-anywhere-001.html", + [ + [ + "/css/css-text-3/line-break/reference/line-break-anywhere-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/line-break/line-break-anywhere-002.html": [ + [ + "/css/css-text-3/line-break/line-break-anywhere-002.html", + [ + [ + "/css/css-text-3/line-break/reference/line-break-anywhere-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-text-3/line-break/line-break-normal-021.xht": [ [ "/css/css-text-3/line-break/line-break-normal-021.xht", @@ -123474,7 +126180,7 @@ "/css/css-text-3/line-breaking/line-breaking-001.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123486,7 +126192,7 @@ "/css/css-text-3/line-breaking/line-breaking-002.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123498,7 +126204,7 @@ "/css/css-text-3/line-breaking/line-breaking-003.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123510,7 +126216,7 @@ "/css/css-text-3/line-breaking/line-breaking-004.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123522,7 +126228,7 @@ "/css/css-text-3/line-breaking/line-breaking-005.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123534,7 +126240,7 @@ "/css/css-text-3/line-breaking/line-breaking-006.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123546,7 +126252,7 @@ "/css/css-text-3/line-breaking/line-breaking-007.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123558,7 +126264,7 @@ "/css/css-text-3/line-breaking/line-breaking-008.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123570,7 +126276,7 @@ "/css/css-text-3/line-breaking/line-breaking-009.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123582,7 +126288,7 @@ "/css/css-text-3/line-breaking/line-breaking-010.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123594,7 +126300,7 @@ "/css/css-text-3/line-breaking/line-breaking-011.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-001-ref.html", "==" ] ], @@ -123606,7 +126312,7 @@ "/css/css-text-3/line-breaking/line-breaking-ic-001.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-ic-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-ic-001-ref.html", "==" ] ], @@ -123618,7 +126324,7 @@ "/css/css-text-3/line-breaking/line-breaking-ic-002.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-ic-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-ic-001-ref.html", "==" ] ], @@ -123630,7 +126336,7 @@ "/css/css-text-3/line-breaking/line-breaking-ic-003.html", [ [ - "/css/css-text-3/line-breaking/references/line-breaking-ic-001-ref.html", + "/css/css-text-3/line-breaking/reference/line-breaking-ic-001-ref.html", "==" ] ], @@ -125329,6 +128035,342 @@ {} ] ], + "css/css-text-3/white-space/pre-wrap-001.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-001.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-002.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-002.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-003.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-003.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-004.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-004.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-005.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-005.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-006.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-006.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-007.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-007.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-008.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-008.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-009.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-009.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-010.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-010.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-011.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-011.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-012.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-012.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-013.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-013.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/pre-wrap-014.html": [ + [ + "/css/css-text-3/white-space/pre-wrap-014.html", + [ + [ + "/css/css-text-3/white-space/reference/pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-001.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-001.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-002.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-002.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-003.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-003.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-004.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-004.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-005.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-005.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-006.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-006.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-007.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-007.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-008.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-008.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-009.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-009.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-010.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-010.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-011.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-011.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-012.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-012.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-013.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-013.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-text-3/white-space/textarea-pre-wrap-014.html": [ + [ + "/css/css-text-3/white-space/textarea-pre-wrap-014.html", + [ + [ + "/css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-text-3/white-space/white-space-collapsing-discard-001.xht": [ [ "/css/css-text-3/white-space/white-space-collapsing-discard-001.xht", @@ -138669,10 +141711,6 @@ [ "/css/css-ui-3/box-sizing-026.html", [ - [ - "/css/css-ui-3/reference/box-sizing-001-ref.html", - "==" - ], [ "/css/reference/ref-filled-green-100px-square.xht", "==" @@ -139029,6 +142067,174 @@ {} ] ], + "css/css-ui-3/text-overflow-006.html": [ + [ + "/css/css-ui-3/text-overflow-006.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-006-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-007.html": [ + [ + "/css/css-ui-3/text-overflow-007.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-008.html": [ + [ + "/css/css-ui-3/text-overflow-008.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-008-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-009.html": [ + [ + "/css/css-ui-3/text-overflow-009.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-010.html": [ + [ + "/css/css-ui-3/text-overflow-010.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-011.html": [ + [ + "/css/css-ui-3/text-overflow-011.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-012.html": [ + [ + "/css/css-ui-3/text-overflow-012.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-012-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-013.html": [ + [ + "/css/css-ui-3/text-overflow-013.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-013-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-014.html": [ + [ + "/css/css-ui-3/text-overflow-014.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-015.html": [ + [ + "/css/css-ui-3/text-overflow-015.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-016.html": [ + [ + "/css/css-ui-3/text-overflow-016.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-016-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-020.html": [ + [ + "/css/css-ui-3/text-overflow-020.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-021.html": [ + [ + "/css/css-ui-3/text-overflow-021.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-021-ref.html", + "==" + ] + ], + {} + ] + ], + "css/css-ui-3/text-overflow-022.html": [ + [ + "/css/css-ui-3/text-overflow-022.html", + [ + [ + "/css/css-ui-3/reference/text-overflow-022-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-values-3/attr-color-invalid-cast.html": [ [ "/css/css-values-3/attr-color-invalid-cast.html", @@ -139089,18 +142295,6 @@ {} ] ], - "css/css-values-3/attr-invalid-type-003.html": [ - [ - "/css/css-values-3/attr-invalid-type-003.html", - [ - [ - "/css/css-values-3/reference/200-200-green.html", - "==" - ] - ], - {} - ] - ], "css/css-values-3/attr-length-invalid-cast.html": [ [ "/css/css-values-3/attr-length-invalid-cast.html", @@ -139461,18 +142655,6 @@ {} ] ], - "css/css-values-3/vh_not_refreshing_on_chrome_iframe.html": [ - [ - "/css/css-values-3/vh_not_refreshing_on_chrome_iframe.html", - [ - [ - "/css/css-values-3/reference/vh_not_refreshing_on_chrome-ref.html", - "==" - ] - ], - {} - ] - ], "css/css-values-4/ic-unit-001.html": [ [ "/css/css-values-4/ic-unit-001.html", @@ -139545,6 +142727,18 @@ {} ] ], + "css/css-variables-1/variable-generated-content-dynamic-001.html": [ + [ + "/css/css-variables-1/variable-generated-content-dynamic-001.html", + [ + [ + "/css/css-variables-1/variable-generated-content-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/css-variables-1/variable-reference-without-whitespace.html": [ [ "/css/css-variables-1/variable-reference-without-whitespace.html", @@ -151786,7 +154980,7 @@ "/css/mediaqueries-3/relative-units-002.html", [ [ - "/css/reference/ref-green-body.xht", + "/css/mediaqueries-3/reference/ref-green-body.xht", "==" ] ], @@ -151798,7 +154992,7 @@ "/css/mediaqueries-3/relative-units-003.html", [ [ - "/css/reference/ref-green-body.xht", + "/css/mediaqueries-3/reference/ref-green-body.xht", "==" ] ], @@ -151810,7 +155004,7 @@ "/css/mediaqueries-3/relative-units-004.html", [ [ - "/css/reference/ref-green-body.xht", + "/css/mediaqueries-3/reference/ref-green-body.xht", "==" ] ], @@ -161117,6 +164311,18 @@ {} ] ], + "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001.html": [ + [ + "/css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001.html", + [ + [ + "/css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-emphasis-color-property-001.html": [ [ "/css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-emphasis-color-property-001.html", @@ -163805,6 +167011,18 @@ {} ] ], + "css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1.html": [ + [ + "/css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1.html", + [ + [ + "/css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1-ref.html", + "==" + ] + ], + {} + ] + ], "css/vendor-imports/mozilla/mozilla-central-reftests/variables/variable-declaration-01.html": [ [ "/css/vendor-imports/mozilla/mozilla-central-reftests/variables/variable-declaration-01.html", @@ -166325,6 +169543,30 @@ {} ] ], + "cssom-view/scrollingElement-quirks-dynamic-001.html": [ + [ + "/cssom-view/scrollingElement-quirks-dynamic-001.html", + [ + [ + "/cssom-view/scrollingElement-quirks-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-view/scrollingElement-quirks-dynamic-002.html": [ + [ + "/cssom-view/scrollingElement-quirks-dynamic-002.html", + [ + [ + "/cssom-view/scrollingElement-quirks-dynamic-002-ref.html", + "==" + ] + ], + {} + ] + ], "cssom/selectorText-modification-restyle-001.html": [ [ "/cssom/selectorText-modification-restyle-001.html", @@ -166337,6 +169579,54 @@ {} ] ], + "encoding/eof-shift_jis.html": [ + [ + "/encoding/eof-shift_jis.html", + [ + [ + "/encoding/eof-shift_jis-ref.html", + "==" + ] + ], + {} + ] + ], + "encoding/eof-utf-8-one.html": [ + [ + "/encoding/eof-utf-8-one.html", + [ + [ + "/encoding/eof-utf-8-one-ref.html", + "==" + ] + ], + {} + ] + ], + "encoding/eof-utf-8-three.html": [ + [ + "/encoding/eof-utf-8-three.html", + [ + [ + "/encoding/eof-utf-8-three-ref.html", + "==" + ] + ], + {} + ] + ], + "encoding/eof-utf-8-two.html": [ + [ + "/encoding/eof-utf-8-two.html", + [ + [ + "/encoding/eof-utf-8-two-ref.html", + "==" + ] + ], + {} + ] + ], "html/dom/elements/global-attributes/dir_auto-EN-L.html": [ [ "/html/dom/elements/global-attributes/dir_auto-EN-L.html", @@ -167993,6 +171283,30 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/colgroup_valign_bottom.xhtml": [ + [ + "/html/rendering/non-replaced-elements/tables/colgroup_valign_bottom.xhtml", + [ + [ + "/html/rendering/non-replaced-elements/tables/colgroup_valign-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "html/rendering/non-replaced-elements/tables/colgroup_valign_top.xhtml": [ + [ + "/html/rendering/non-replaced-elements/tables/colgroup_valign_top.xhtml", + [ + [ + "/html/rendering/non-replaced-elements/tables/colgroup_valign-ref.xhtml", + "==" + ] + ], + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-border-1.html": [ [ "/html/rendering/non-replaced-elements/tables/table-border-1.html", @@ -168041,6 +171355,18 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/table-direction.html": [ + [ + "/html/rendering/non-replaced-elements/tables/table-direction.html", + [ + [ + "/html/rendering/non-replaced-elements/tables/table-direction-ref.html", + "==" + ] + ], + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-layout.html": [ [ "/html/rendering/non-replaced-elements/tables/table-layout.html", @@ -168053,6 +171379,30 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/table-row-direction.html": [ + [ + "/html/rendering/non-replaced-elements/tables/table-row-direction.html", + [ + [ + "/html/rendering/non-replaced-elements/tables/table-row-direction-ref.html", + "==" + ] + ], + {} + ] + ], + "html/rendering/non-replaced-elements/tables/table-row-group-direction.html": [ + [ + "/html/rendering/non-replaced-elements/tables/table-row-group-direction.html", + [ + [ + "/html/rendering/non-replaced-elements/tables/table-row-group-direction-ref.html", + "==" + ] + ], + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-width-150percent.html": [ [ "/html/rendering/non-replaced-elements/tables/table-width-150percent.html", @@ -169181,6 +172531,66 @@ {} ] ], + "infrastructure/assumptions/ahem.html": [ + [ + "/infrastructure/assumptions/ahem.html", + [ + [ + "/infrastructure/assumptions/ahem-ref.html", + "==" + ] + ], + {} + ] + ], + "infrastructure/assumptions/canvas-background.html": [ + [ + "/infrastructure/assumptions/canvas-background.html", + [ + [ + "/infrastructure/assumptions/canvas-background-ref.html", + "==" + ] + ], + {} + ] + ], + "infrastructure/assumptions/initial-color.html": [ + [ + "/infrastructure/assumptions/initial-color.html", + [ + [ + "/infrastructure/assumptions/initial-color-ref.html", + "==" + ] + ], + {} + ] + ], + "infrastructure/assumptions/medium-font-size.html": [ + [ + "/infrastructure/assumptions/medium-font-size.html", + [ + [ + "/infrastructure/assumptions/medium-font-size-ref.html", + "==" + ] + ], + {} + ] + ], + "infrastructure/assumptions/min-font-size.html": [ + [ + "/infrastructure/assumptions/min-font-size.html", + [ + [ + "/infrastructure/assumptions/min-font-size-ref.html", + "!=" + ] + ], + {} + ] + ], "infrastructure/reftest-wait.html": [ [ "/infrastructure/reftest-wait.html", @@ -173383,18 +176793,6 @@ {} ] ], - "css/css-multicol-1/multicol-rule-shorthand-2.xht": [ - [ - "/css/css-multicol-1/multicol-rule-shorthand-2.xht", - [ - [ - "/css/css-multicol-1/multicol-rule-shorthand-2.xht", - "==" - ] - ], - {} - ] - ], "css/css-transforms-1/2d-rotate-notref.html": [ [ "/css/css-transforms-1/2d-rotate-notref.html", @@ -173888,56 +177286,16 @@ {} ] ], - "./check_stability.py": [ - [ - {} - ] - ], - "./ci_built_diff.sh": [ - [ - {} - ] - ], - "./ci_lint.sh": [ - [ - {} - ] - ], - "./ci_stability.sh": [ - [ - {} - ] - ], - "./ci_unittest.sh": [ - [ - {} - ] - ], "./config.default.json": [ [ {} ] ], - "./lint": [ - [ - {} - ] - ], "./lint.whitelist": [ [ {} ] ], - "./manifest": [ - [ - {} - ] - ], - "./serve": [ - [ - {} - ] - ], "./serve.py": [ [ {} @@ -173953,7 +177311,27 @@ {} ] ], - "./wptrun": [ + "./wpt": [ + [ + {} + ] + ], + "./wpt.py": [ + [ + {} + ] + ], + ".well-known/README.md": [ + [ + {} + ] + ], + ".well-known/idp-proxy/README.md": [ + [ + {} + ] + ], + ".well-known/idp-proxy/mock-idp.js": [ [ {} ] @@ -174343,141 +177721,6 @@ {} ] ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8_ref.html": [ - [ - {} - ] - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9_ref.html": [ - [ - {} - ] - ], "2dcontext/drawing-model/.gitkeep": [ [ {} @@ -175273,6 +178516,11 @@ {} ] ], + "IndexedDB/nested-cloning-common.js": [ + [ + {} + ] + ], "IndexedDB/support-promises.js": [ [ {} @@ -175448,11 +178696,6 @@ {} ] ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.js": [ - [ - {} - ] - ], "WebIDL/invalid/idl/enum.widl": [ [ {} @@ -176023,6 +179266,121 @@ {} ] ], + "XMLHttpRequest/resources/access-control-allow-lists.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-allow-with-body.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-auth-basic.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-allow-no-credentials.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-allow-star.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-allow.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-cors-safelisted-request-headers.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-denied.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-options-not-supported.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache-timeout.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-put-allow.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-basic-whitelist-response-headers.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-cookie.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-origin-header.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-denied.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-request-header-lowercase.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-request-header-sorted.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-request-headers-origin.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-request-invalid-status.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-preflight-request-must-not-contain-cookie.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/access-control-sandboxed-iframe.html": [ + [ + {} + ] + ], "XMLHttpRequest/resources/auth1/auth.py": [ [ {} @@ -176198,6 +179556,11 @@ {} ] ], + "XMLHttpRequest/resources/no-custom-header-on-preflight.py": [ + [ + {} + ] + ], "XMLHttpRequest/resources/nocors/folder.txt": [ [ {} @@ -176208,6 +179571,16 @@ {} ] ], + "XMLHttpRequest/resources/pass.txt": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/redirect-cors.py": [ + [ + {} + ] + ], "XMLHttpRequest/resources/redirect.py": [ [ {} @@ -176218,6 +179591,21 @@ {} ] ], + "XMLHttpRequest/resources/reset-token.py": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/responseType-document-in-worker.js": [ + [ + {} + ] + ], + "XMLHttpRequest/resources/responseXML-unavailable-in-worker.js": [ + [ + {} + ] + ], "XMLHttpRequest/resources/send-after-setting-document-domain-window-1.htm": [ [ {} @@ -176263,6 +179651,11 @@ {} ] ], + "XMLHttpRequest/resources/win-1252-html.py": [ + [ + {} + ] + ], "XMLHttpRequest/resources/win-1252-xml.py": [ [ {} @@ -176358,21 +179751,11 @@ {} ] ], - "accelerometer/support-iframe.html": [ - [ - {} - ] - ], "ambient-light/OWNERS": [ [ {} ] ], - "ambient-light/support-iframe.html": [ - [ - {} - ] - ], "annotation-model/.editorconfig": [ [ {} @@ -177818,6 +181201,11 @@ {} ] ], + "annotation-protocol/OWNERS": [ + [ + {} + ] + ], "annotation-protocol/README.md": [ [ {} @@ -178803,106 +182191,6 @@ {} ] ], - "app-uri/OWNERS": [ - [ - {} - ] - ], - "app-uri/README.md": [ - [ - {} - ] - ], - "app-uri/resources/ExamPLE/mmY/index.html": [ - [ - {} - ] - ], - "app-uri/resources/ExamPLE/mmY/sth.txt": [ - [ - {} - ] - ], - "app-uri/resources/ExamPLE/{mY}/z...z/index.html": [ - [ - {} - ] - ], - "app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png": [ - [ - {} - ] - ], - "app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png": [ - [ - {} - ] - ], - "app-uri/resources/ImaGes/~t/{!a}/~sth.png": [ - [ - {} - ] - ], - "app-uri/resources/icons/w3c-128.png": [ - [ - {} - ] - ], - "app-uri/resources/icons/w3c-16.png": [ - [ - {} - ] - ], - "app-uri/resources/icons/w3c-48.png": [ - [ - {} - ] - ], - "assumptions/OWNERS": [ - [ - {} - ] - ], - "assumptions/ahem-ref.html": [ - [ - {} - ] - ], - "assumptions/canvas-background-ref.html": [ - [ - {} - ] - ], - "assumptions/initial-color-ref.html": [ - [ - {} - ] - ], - "assumptions/medium-font-size-ref.html": [ - [ - {} - ] - ], - "assumptions/min-font-size-ref.html": [ - [ - {} - ] - ], - "assumptions/tools/ahem-generate-table.py": [ - [ - {} - ] - ], - "assumptions/tools/build.sh": [ - [ - {} - ] - ], - "auxclick/OWNERS": [ - [ - {} - ] - ], "background-fetch/OWNERS": [ [ {} @@ -178913,6 +182201,16 @@ {} ] ], + "background-fetch/resources/sw.js": [ + [ + {} + ] + ], + "background-fetch/resources/utils.js": [ + [ + {} + ] + ], "battery-status/OWNERS": [ [ {} @@ -178928,11 +182226,26 @@ {} ] ], + "beacon/beacon-common.sub.js": [ + [ + {} + ] + ], "beacon/headers/header-referrer.js": [ [ {} ] ], + "beacon/navigate.iFrame.sub.html": [ + [ + {} + ] + ], + "beacon/resources/beacon.py": [ + [ + {} + ] + ], "beacon/resources/content-type.py": [ [ {} @@ -178953,12 +182266,27 @@ {} ] ], - "clear-site-data/support/test_utils.js": [ + "clear-site-data/support/page_with_resource.sub.html": [ [ {} ] ], - "clipboard/OWNERS": [ + "clear-site-data/support/send_report.html": [ + [ + {} + ] + ], + "clear-site-data/support/service_worker.js": [ + [ + {} + ] + ], + "clear-site-data/support/test_utils.sub.js": [ + [ + {} + ] + ], + "clipboard-apis/OWNERS": [ [ {} ] @@ -178973,11 +182301,21 @@ {} ] ], + "common/PrefixedLocalStorage.js.headers": [ + [ + {} + ] + ], "common/PrefixedPostMessage.js": [ [ {} ] ], + "common/PrefixedPostMessage.js.headers": [ + [ + {} + ] + ], "common/blank.html": [ [ {} @@ -178988,31 +182326,61 @@ {} ] ], + "common/canvas-frame.css.headers": [ + [ + {} + ] + ], "common/canvas-index.css": [ [ {} ] ], + "common/canvas-index.css.headers": [ + [ + {} + ] + ], "common/canvas-spec.css": [ [ {} ] ], + "common/canvas-spec.css.headers": [ + [ + {} + ] + ], "common/canvas-tests.css": [ [ {} ] ], + "common/canvas-tests.css.headers": [ + [ + {} + ] + ], "common/canvas-tests.js": [ [ {} ] ], + "common/canvas-tests.js.headers": [ + [ + {} + ] + ], "common/css-paint-tests.js": [ [ {} ] ], + "common/css-paint-tests.js.headers": [ + [ + {} + ] + ], "common/css-red.txt": [ [ {} @@ -179048,6 +182416,11 @@ {} ] ], + "common/get-host-info.sub.js.headers": [ + [ + {} + ] + ], "common/large.py": [ [ {} @@ -179058,16 +182431,31 @@ {} ] ], + "common/media.js.headers": [ + [ + {} + ] + ], "common/object-association.js": [ [ {} ] ], + "common/object-association.js.headers": [ + [ + {} + ] + ], "common/performance-timeline-utils.js": [ [ {} ] ], + "common/performance-timeline-utils.js.headers": [ + [ + {} + ] + ], "common/redirect-opt-in.py": [ [ {} @@ -179083,16 +182471,31 @@ {} ] ], + "common/reftest-wait.js.headers": [ + [ + {} + ] + ], "common/stringifiers.js": [ [ {} ] ], + "common/stringifiers.js.headers": [ + [ + {} + ] + ], "common/test-setting-immutable-prototype.js": [ [ {} ] ], + "common/test-setting-immutable-prototype.js.headers": [ + [ + {} + ] + ], "common/text-plain.txt": [ [ {} @@ -179103,7 +182506,22 @@ {} ] ], - "common/vendor-prefix.js": [ + "common/utils.js.headers": [ + [ + {} + ] + ], + "common/vendor-prefix.js.headers": [ + [ + {} + ] + ], + "compat/OWNERS": [ + [ + {} + ] + ], + "compat/green-ref.html": [ [ {} ] @@ -196973,7 +200391,7 @@ {} ] ], - "conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-novalid.html": [ + "conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-valid.html": [ [ {} ] @@ -201653,21 +205071,11 @@ {} ] ], - "content-security-policy/blink-contrib/manifest-src-allowed.sub.html": [ - [ - {} - ] - ], "content-security-policy/blink-contrib/manifest-src-allowed.sub.html.sub.headers": [ [ {} ] ], - "content-security-policy/blink-contrib/manifest-src-blocked.sub.html": [ - [ - {} - ] - ], "content-security-policy/blink-contrib/manifest-src-blocked.sub.html.sub.headers": [ [ {} @@ -201703,26 +205111,6 @@ {} ] ], - "content-security-policy/blink-contrib/object-src-applet-archive-codebase.sub.html.sub.headers": [ - [ - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-archive.sub.html.sub.headers": [ - [ - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-code-codebase.sub.html.sub.headers": [ - [ - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-code.sub.html.sub.headers": [ - [ - {} - ] - ], "content-security-policy/blink-contrib/object-src-no-url-allowed.sub.html.sub.headers": [ [ {} @@ -202353,6 +205741,16 @@ {} ] ], + "content-security-policy/navigation/support/test_csp_self_window.sub.html": [ + [ + {} + ] + ], + "content-security-policy/navigation/support/test_csp_self_window.sub.html.sub.headers": [ + [ + {} + ] + ], "content-security-policy/nonce-hiding/script-nonces-hidden.tentative.html.headers": [ [ {} @@ -202418,6 +205816,11 @@ {} ] ], + "content-security-policy/script-src/javascript-window-open-blocked.html.sub.headers": [ + [ + {} + ] + ], "content-security-policy/script-src/script-src-1_1.html.sub.headers": [ [ {} @@ -202463,6 +205866,26 @@ {} ] ], + "content-security-policy/script-src/script-src-multiple-policies-multiple-hashing-algorithms.html.sub.headers": [ + [ + {} + ] + ], + "content-security-policy/script-src/script-src-multiple-policies-one-using-hashing-algorithms.html.sub.headers": [ + [ + {} + ] + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-external-hash-policy.html.sub.headers": [ + [ + {} + ] + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-hash-policy.html.sub.headers": [ + [ + {} + ] + ], "content-security-policy/script-src/script-src-sri_hash.sub.html.sub.headers": [ [ {} @@ -202593,7 +206016,7 @@ {} ] ], - "content-security-policy/support/Ahem.ttf": [ + "content-security-policy/style-src/style-src-multiple-policies-multiple-hashing-algorithms.html.sub.headers": [ [ {} ] @@ -202638,6 +206061,11 @@ {} ] ], + "content-security-policy/support/import-scripts.js": [ + [ + {} + ] + ], "content-security-policy/support/inject-image.js": [ [ {} @@ -202763,6 +206191,16 @@ {} ] ], + "core-aam/OWNERS": [ + [ + {} + ] + ], + "core-aam/README.md": [ + [ + {} + ] + ], "cors/OWNERS": [ [ {} @@ -202833,12 +206271,77 @@ {} ] ], - "css-font-display/font-display-ref.html": [ + "css-backgrounds/background-clip-color-ref.html": [ [ {} ] ], - "css-font-display/resources/slow-ahem-loading.py": [ + "css-backgrounds/background-clip-color-repaint-ref.html": [ + [ + {} + ] + ], + "css-fonts/font-display/font-display-ref.html": [ + [ + {} + ] + ], + "css-fonts/matching/OWNERS": [ + [ + {} + ] + ], + "css-fonts/matching/README.md": [ + [ + {} + ] + ], + "css-fonts/matching/fixed-stretch-style-over-weight-ref.html": [ + [ + {} + ] + ], + "css-fonts/matching/font-matching.css": [ + [ + {} + ] + ], + "css-fonts/matching/resources/variabletest_matching.ttf": [ + [ + {} + ] + ], + "css-fonts/matching/stretch-distance-over-weight-distance-ref.html": [ + [ + {} + ] + ], + "css-fonts/matching/style-ranges-over-weight-direction-ref.html": [ + [ + {} + ] + ], + "css-fonts/variations/OWNERS": [ + [ + {} + ] + ], + "css-fonts/variations/resources/variabletest_box.ttf": [ + [ + {} + ] + ], + "css-fonts/variations/variable-box-font-ref.html": [ + [ + {} + ] + ], + "css-fonts/variations/variable-gpos-m2b-ref.html": [ + [ + {} + ] + ], + "css-fonts/variations/variable-gsub-ref.html": [ [ {} ] @@ -202863,6 +206366,56 @@ {} ] ], + "css-paint-api/geometry-background-image-001-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-background-image-002-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-001-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-002-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-background-image-tiled-003-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-border-image-001-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-border-image-002-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-border-image-003-ref.html": [ + [ + {} + ] + ], + "css-paint-api/geometry-border-image-004-ref.html": [ + [ + {} + ] + ], + "css-paint-api/hidpi/device-pixel-ratio-ref.html": [ + [ + {} + ] + ], "css-paint-api/invalid-image-constructor-error-ref.html": [ [ {} @@ -202933,6 +206486,31 @@ {} ] ], + "css-paint-api/parse-input-arguments-018-ref.html": [ + [ + {} + ] + ], + "css-paint-api/parse-input-arguments-ref.html": [ + [ + {} + ] + ], + "css-paint-api/style-background-image-ref.html": [ + [ + {} + ] + ], + "css-paint-api/style-before-pseudo-ref.html": [ + [ + {} + ] + ], + "css-paint-api/style-first-letter-pseudo-ref.html": [ + [ + {} + ] + ], "css-paint-api/valid-image-after-load-ref.html": [ [ {} @@ -202943,6 +206521,11 @@ {} ] ], + "css-scoping/slotted-with-pseudo-element-ref.html": [ + [ + {} + ] + ], "css-timing/OWNERS": [ [ {} @@ -211008,6 +214591,11 @@ {} ] ], + "css/CSS2/i18n/OWNERS": [ + [ + {} + ] + ], "css/CSS2/i18n/syndata/.htaccess": [ [ {} @@ -219223,6 +222811,16 @@ {} ] ], + "css/CSS2/tables/reference/table-anonymous-border-spacing-ref.xht": [ + [ + {} + ] + ], + "css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht": [ + [ + {} + ] + ], "css/CSS2/tables/reference/table-margin-004-ref.xht": [ [ {} @@ -225568,6 +229166,11 @@ {} ] ], + "css/css-counter-styles-3/i18n/OWNERS": [ + [ + {} + ] + ], "css/css-counter-styles-3/i18n/README": [ [ {} @@ -225718,6 +229321,11 @@ {} ] ], + "css/css-flexbox-1/auto-margins-001-ref.html": [ + [ + {} + ] + ], "css/css-flexbox-1/css-flexbox-column-ref.html": [ [ {} @@ -226578,6 +230186,21 @@ {} ] ], + "css/css-flexbox-1/percentage-heights-002-ref.html": [ + [ + {} + ] + ], + "css/css-flexbox-1/percentage-widths-001-ref.html": [ + [ + {} + ] + ], + "css/css-flexbox-1/position-absolute-005-ref.html": [ + [ + {} + ] + ], "css/css-flexbox-1/reference/Flexible-order-ref.html": [ [ {} @@ -227003,6 +230626,11 @@ {} ] ], + "css/css-flexbox-1/whitespace-in-flexitem-001-ref.html": [ + [ + {} + ] + ], "css/css-fonts-3/OWNERS": [ [ {} @@ -227588,16 +231216,6 @@ {} ] ], - "css/css-fonts-3/support/fonts/Unnamed Med/FontFeatureTest.ttf": [ - [ - {} - ] - ], - "css/css-fonts-3/support/fonts/Unnamed Med/Unnamed-Medium.ttf": [ - [ - {} - ] - ], "css/css-fonts-3/support/fonts/font-feature-settings-rendering-2-expected.html": [ [ {} @@ -235023,6 +238641,31 @@ {} ] ], + "css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001-ref.html": [ + [ + {} + ] + ], + "css/css-grid-1/abspos/grid-paint-positioned-children-001-ref.html": [ + [ + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-children-writing-modes-001-ref.html": [ + [ + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-background-001-ref.html": [ + [ + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-background-rtl-001-ref.html": [ + [ + {} + ] + ], "css/css-grid-1/abspos/orthogonal-positioned-grid-items-001-ref.html": [ [ {} @@ -235153,6 +238796,11 @@ {} ] ], + "css/css-grid-1/abspos/positioned-grid-items-sizing-001-ref.html": [ + [ + {} + ] + ], "css/css-grid-1/grid-definition/support/testing-utils.js": [ [ {} @@ -235173,12 +238821,12 @@ {} ] ], - "css/css-grid-1/grid-items/support/100x50-green.png": [ + "css/css-grid-1/grid-items/support/200x200-green.png": [ [ {} ] ], - "css/css-grid-1/grid-items/support/200x200-green.png": [ + "css/css-grid-1/grid-items/support/25x50-green.png": [ [ {} ] @@ -235188,7 +238836,7 @@ {} ] ], - "css/css-grid-1/grid-items/support/50x100-green.png": [ + "css/css-grid-1/grid-items/support/50x25-green.png": [ [ {} ] @@ -235263,6 +238911,11 @@ {} ] ], + "css/css-grid-1/reference/grid-support-grid-auto-columns-rows-002-ref.html": [ + [ + {} + ] + ], "css/css-grid-1/reference/grid-text-green-margin-no-collapse-ref.html": [ [ {} @@ -235273,6 +238926,21 @@ {} ] ], + "css/css-grid-1/support/grid-alignment.css": [ + [ + {} + ] + ], + "css/css-grid-1/support/grid.css": [ + [ + {} + ] + ], + "css/css-grid-1/support/style-change.js": [ + [ + {} + ] + ], "css/css-grid-1/test-plan/index.html": [ [ {} @@ -235538,17 +239206,17 @@ {} ] ], - "css/css-logical-properties-1/OWNERS": [ + "css/css-logical-1/OWNERS": [ [ {} ] ], - "css/css-logical-properties-1/resources/style-check.js": [ + "css/css-logical-1/cascading-001-ref.html": [ [ {} ] ], - "css/css-logical-props-1/cascading-001-ref.html": [ + "css/css-logical-1/resources/style-check.js": [ [ {} ] @@ -235808,12 +239476,12 @@ {} ] ], - "css/css-multicol-1/multicol-block-clip-001-ref.xht": [ + "css/css-multicol-1/multicol-block-no-clip-001-ref.xht": [ [ {} ] ], - "css/css-multicol-1/multicol-block-clip-002-ref.xht": [ + "css/css-multicol-1/multicol-block-no-clip-002-ref.xht": [ [ {} ] @@ -236168,6 +239836,11 @@ {} ] ], + "css/css-multicol-1/multicol-rule-shorthand-2-ref.xht": [ + [ + {} + ] + ], "css/css-multicol-1/multicol-rule-solid-000-ref.xht": [ [ {} @@ -236778,16 +240451,86 @@ {} ] ], + "css/css-position-3/position-sticky-flexbox-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-grid-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-inflow-position-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-inline-ref.html": [ + [ + {} + ] + ], "css/css-position-3/position-sticky-left-ref.html": [ [ {} ] ], + "css/css-position-3/position-sticky-margins-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-bottom-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-inline-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-left-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-right-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-table-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-nested-top-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-overflow-padding-ref.html": [ + [ + {} + ] + ], "css/css-position-3/position-sticky-right-ref.html": [ [ {} ] ], + "css/css-position-3/position-sticky-root-scroller-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-stacking-context-ref.html": [ + [ + {} + ] + ], "css/css-position-3/position-sticky-table-tfoot-bottom-ref.html": [ [ {} @@ -236833,6 +240576,21 @@ {} ] ], + "css/css-position-3/position-sticky-transforms-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-transforms-translate-ref.html": [ + [ + {} + ] + ], + "css/css-position-3/position-sticky-writing-modes-ref.html": [ + [ + {} + ] + ], "css/css-pseudo-4/OWNERS": [ [ {} @@ -236843,6 +240601,26 @@ {} ] ], + "css/css-pseudo-4/marker-and-other-pseudo-elements-ref.html": [ + [ + {} + ] + ], + "css/css-pseudo-4/marker-color-ref.html": [ + [ + {} + ] + ], + "css/css-pseudo-4/marker-font-properties-ref.html": [ + [ + {} + ] + ], + "css/css-pseudo-4/marker-inherit-values-ref.html": [ + [ + {} + ] + ], "css/css-regions-1/OWNERS": [ [ {} @@ -238833,6 +242611,31 @@ {} ] ], + "css/css-tables-3/support/base.css": [ + [ + {} + ] + ], + "css/css-tables-3/support/check-layout-th.js": [ + [ + {} + ] + ], + "css/css-tables-3/tools/markup-generator.html": [ + [ + {} + ] + ], + "css/css-tables-3/visibility-collapse-colspan-003-ref.html": [ + [ + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-005-ref.html": [ + [ + {} + ] + ], "css/css-text-3/OWNERS": [ [ {} @@ -238858,6 +242661,11 @@ {} ] ], + "css/css-text-3/i18n/OWNERS": [ + [ + {} + ] + ], "css/css-text-3/i18n/reference/css3-text-line-break-jazh-001-ref.html": [ [ {} @@ -241088,6 +244896,11 @@ {} ] ], + "css/css-text-3/line-break/reference/line-break-anywhere-001-ref.html": [ + [ + {} + ] + ], "css/css-text-3/line-break/reference/line-break-normal-021-ref.xht": [ [ {} @@ -242023,6 +245836,16 @@ {} ] ], + "css/css-text-3/white-space/reference/pre-wrap-001-ref.html": [ + [ + {} + ] + ], + "css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html": [ + [ + {} + ] + ], "css/css-text-3/white-space/reference/white-space-collapsing-discard-001-ref.xht": [ [ {} @@ -243463,6 +247286,11 @@ {} ] ], + "css/css-transforms-2/animation/resources/interpolation-testcommon.js": [ + [ + {} + ] + ], "css/css-transforms-2/css-rotate-2d-3d-001-ref.html": [ [ {} @@ -244063,6 +247891,46 @@ {} ] ], + "css/css-ui-3/reference/text-overflow-006-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-008-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-012-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-013-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-016-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-021-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/reference/text-overflow-022-ref.html": [ + [ + {} + ] + ], + "css/css-ui-3/support/1x1-red.png": [ + [ + {} + ] + ], "css/css-ui-3/support/PTS/PngSuite.LICENSE": [ [ {} @@ -245048,127 +248916,12 @@ {} ] ], - "css/css-ui-3/support/nav-dir-target-001-frame.html": [ + "css/css-ui-3/support/orange.png": [ [ {} ] ], - "css/css-ui-3/support/nav-dir-target-002-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-dir-target-003-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-dir-target-004-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-dir-target-005-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-down-009-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-down-010-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-down-011-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-down-012-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-down-013-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-left-009-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-left-010-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-left-011-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-left-012-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-left-013-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-right-009-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-right-010-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-right-011-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-right-012-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-right-013-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-up-009-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-up-010-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-up-011-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-up-012-frame.html": [ - [ - {} - ] - ], - "css/css-ui-3/support/nav-up-013-frame.html": [ + "css/css-ui-3/support/orange.svg": [ [ {} ] @@ -245183,6 +248936,21 @@ {} ] ], + "css/css-ui-3/support/test.mp4": [ + [ + {} + ] + ], + "css/css-ui-3/support/test.ogv": [ + [ + {} + ] + ], + "css/css-ui-3/support/test.webm": [ + [ + {} + ] + ], "css/css-ui-3/support/w100.svg": [ [ {} @@ -245203,6 +248971,136 @@ {} ] ], + "css/css-ui-4/OWNERS": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-dir-target-001-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-dir-target-002-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-dir-target-003-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-dir-target-004-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-dir-target-005-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-down-009-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-down-010-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-down-011-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-down-012-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-down-013-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-left-009-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-left-010-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-left-011-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-left-012-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-left-013-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-right-009-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-right-010-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-right-011-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-right-012-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-right-013-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-up-009-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-up-010-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-up-011-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-up-012-frame.html": [ + [ + {} + ] + ], + "css/css-ui-4/support/nav-up-013-frame.html": [ + [ + {} + ] + ], "css/css-values-3/OWNERS": [ [ {} @@ -245463,6 +249361,11 @@ {} ] ], + "css/css-values-3/support/vh_not_refreshing_on_chrome_iframe.html": [ + [ + {} + ] + ], "css/css-values-3/vh-calc-support.html": [ [ {} @@ -245533,6 +249436,11 @@ {} ] ], + "css/css-variables-1/variable-generated-content-dynamic-001-ref.html": [ + [ + {} + ] + ], "css/css-writing-modes-3/OWNERS": [ [ {} @@ -249978,6 +253886,11 @@ {} ] ], + "css/css3-selectors/i18n/OWNERS": [ + [ + {} + ] + ], "css/css3-selectors/i18n/README": [ [ {} @@ -250788,21 +254701,6 @@ {} ] ], - "css/fonts/ahem/COPYING": [ - [ - {} - ] - ], - "css/fonts/ahem/README": [ - [ - {} - ] - ], - "css/fonts/ahem/ahem.ttf": [ - [ - {} - ] - ], "css/geometry-1/OWNERS": [ [ {} @@ -250838,6 +254736,11 @@ {} ] ], + "css/motion-1/animation/resources/interpolation-testcommon.js": [ + [ + {} + ] + ], "css/motion-1/offset-path-ray-ref.html": [ [ {} @@ -254298,6 +258201,11 @@ {} ] ], + "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001-ref.html": [ + [ + {} + ] + ], "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-emphasis-color-property-001-ref.html": [ [ {} @@ -255068,6 +258976,11 @@ {} ] ], + "css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1-ref.html": [ + [ + {} + ] + ], "css/vendor-imports/mozilla/mozilla-central-reftests/variables/reftest.list": [ [ {} @@ -275653,161 +279566,6 @@ {} ] ], - "css/work-in-progress/microsoft/css-tables/base.css": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-3.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/caption-side-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/fixed-layout-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/fixed-layout-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/computing-row-measure-0.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/computing-row-measure-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html-to-css-mapping-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html-to-css-mapping-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-3.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-fixed-layout-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/markup-generator.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/table-model-fixup-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/table-model-fixup.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/visibility-collapse-col-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/visibility-collapse-row-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-column-measure-0.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-column-measure-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-table-width-0.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-table-width-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-guess.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-percent-guess.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-specified-guess.1.html": [ - [ - {} - ] - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-specified-guess.html": [ - [ - {} - ] - ], "css/work-in-progress/microsoft/emboxes.png": [ [ {} @@ -279028,2606 +282786,6 @@ {} ] ], - "css/work-in-progress/ttwf_bj/Along/reference/ttwf-reftest-borderRadius-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Along/ttwf-jstest-borderRadius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Along/ttwf-reftest-borderRadius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Chris/elementFromPosition.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Chris/reference/ttwf-reftest-borderRadius-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Chris/ttwf-reftest-borderRadius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Chris/ttwf-scrollintoview.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/Chris/window-screen-height.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/angela/background-clip-color.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/angela/background-clip-image.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/angela/reference/background-clip-color-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/angela/reference/background-clip-image-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/angela/support/img_star.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images-003.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image-002.jpg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image-003.jpg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image.jpg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand-missing-bottom.htm": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand-missing-left.htm": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand.htm": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color.htm": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/list.txt": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/list.txt": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_position.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_size.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/resource/border.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/resource/css3.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/finscn/resource/ttwf.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/henry_d/border-image-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/henry_d/reference/border-image-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/henry_d/support/bt_blue.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/henry_d/support/repeat-x.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/jieorlin/flex-justify.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/jieorlin/flex-min-auto.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/jieorlin/reference/flex-justify-rel.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/jieorlin/reference/flex-min-auto-rel.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/jingke/cssom-view-window-pageXOffset-return-scrollX.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/keynesqu/Flexible-order.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/keynesqu/reference/Flexible-order-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/neo_and_rayi/extensions_to_the_HTMLElement_interface.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/peter/flex-align-items-center.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/peter/flex-items-flexibility.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/peter/readme.txt": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/peter/reference/flex-align-items-center-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/peter/reference/flex-items-flexibility.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/phuangce/flex-margin-no-collapse.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/phuangce/reference/flex-margin-no-collapse-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-repeat-round.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-round-and-stretch.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-slice-percentage.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-repeat-round-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-round-and-stretch-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-slice-percentage-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/support/border-image-round-result.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/support/border.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/renjing/support/borderresult.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tang,shaofeng/border-image-repeat_repeatnegx_none_50px.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/css-border-radius-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/css-border-radius-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/readme.txt": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/reference/css-border-radius-ref-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/reference/css-border-radius-ref-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/tmd/reference/y.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-boxsizing.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-childmargin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-flex-prescation.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-margin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-padding.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-percentage-basic.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-percentage-cascading.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/xiaochun/background-size-035.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/xiaochun/bg.jpg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/xiaochun/reference/background-size-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/xiaoyan.jxy/background-clip_padding-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/xiaoyan.jxy/reference/background_clip_padding-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/yuhong/css-backgrounds-sizingimages-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/yuhong/reference/css-backgrounds-sizingimages-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/yuhong/support/test.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhangxiaochong/box-shadow-outset-without-border-radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhangxiaochong/reference/box-shadow-outset-without-border-radius.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhouli/border-radius-clipping.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhouli/flexible-box-float.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhouli/reference/border-radius-clipping-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_bj/zhouli/reference/flex-box-float-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/box-sizing-border-box-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/outline-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/outline-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/outline-offset-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/ref/box-sizing-border-box-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/ref/outline-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/justh/ref/outline-offset-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/tonychyan/css-transform-combination-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/tonychyan/css-transform-hover-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-bothlines.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-firstline.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-secondline.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-order.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/achicu/css-exclusions/exclusions-pos-01.xht": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-maroon.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-navy.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-gg-rr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/a-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/b-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/c-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/cat.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/import-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/import-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-gg-gr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-grg-rgr-grg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-grg-rrg-rgg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-rgr-grg-rgr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-h-50%.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-h-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-v-100px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-v-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-purple.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-teal.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-blue.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-orange.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-teal.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-yellow.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-bl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-br.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-inner-half-size.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-outer.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-tl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/chrissanborn/css-transform-scale-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/chrissanborn/reference/css-transform-scale-ref-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/chrissanborn/reference/css-transform-scale-ref-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/cjgammon/css-transforms/reftest/transform-origin-01-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/cjgammon/css-transforms/transform-origin-01.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/cshoop/medialist-creating-object-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/background-position-center-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/background-position-center-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/border-bottom-left-radius-001.xht": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-maroon.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-navy.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/20x20-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/20x20-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-gg-rr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/a-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/b-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/c-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/cat.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/import-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/import-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-grg-rgr-grg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-grg-rrg-rgg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-rgr-grg-rgr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-h-50%.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-h-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-v-100px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-v-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/square-purple.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/square-teal.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/square-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-blue.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-orange.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-yellow.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-bl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-br.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-inner-half-size.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-outer.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-tl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/david/support/test-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/divya/index-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/divya/index-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/gangleton/reference/transform-translateX-002-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/gangleton/transform-translateX-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/girlie_mac/css-transforms-skewx90.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/girlie_mac/css-transforms-skewy90.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-TODO": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-003.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-004.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-005.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-003.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-004.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-005.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-006.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-007.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-008.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-009.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-010.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-011.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-012.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-013.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-014.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-015.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-016.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-003.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-004.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-fixed-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-001.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-002.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-003.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-004.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-005.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-006.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-007.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-008.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-009.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-010.xml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/border-style-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/hixie/border-style-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-container-margin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction-modify.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction-with-element-insert.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-item-change-width.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-container.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction-modify.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction-with-element-insert.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-item-change-width.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/jeffreyatw/support/rectangle-100x60.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/jeffreyatw/support/rectangle-96x60.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-180-degrees-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-270-degrees-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-90-degrees-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/background-attachment-fixed.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-border-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-content-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-padding-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-border-box-ref.xht": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-content-box-ref.xht": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-padding-box-ref.xht": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-maroon.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-navy.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-gg-rr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/a-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/b-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/c-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/cat.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/import-green.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/import-red.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-grg-rgr-grg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-grg-rrg-rgg.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-rgr-grg-rgr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-h-50%.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-h-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-v-100px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-v-50px.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-purple.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-teal.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/README": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-blue.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-green.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-lime.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-orange.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-red.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-teal.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-white.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-yellow.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-bl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-br.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-inner-half-size.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-outer.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-tl.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-tr.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/miked782000/transform-oragin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/miked782000/ttwf-reftest-rotate.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-cssText-serialize.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-cssstyledeclaration-set.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-fontfacerule-constructors.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-fontfacerule.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-setProperty-shorthand.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/paulirish/cssstyledeclaration-mutability.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/ssreed/diagonal-percentage-vector-background.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/ssreed/diagonal-scaled.svg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/ssreed/reftest/diagonal-percentage-vector-background-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_sf/ssreed/reftest/diagonal-scaled-fixed.svg": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/Zourui/background-color-transparent.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/Zourui/background-origin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/Zourui/reference/background-color-transparent.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/Zourui/reference/background-origin.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/mark/css3-box-shadow-outline.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shanghai/mark/reference/css3-box-shadow-outline-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/keiko-kiki/refrence/ref-shape-circle-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/keiko-kiki/shape-circle-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/dish-isolated.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/shape-outside-invalid-ellipse-000.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/shape-outside-invalid-ellipse-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-value-1em.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/markqin/where-is-letter-spacing-applied.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/onlymollah/shape-outside-negative-center-positive-radius-ellipse-000.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/smallni/letter-spacing-value-1em.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/gradient.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/mask-test-01.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/mask-test-02-mask-box.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/hayashih/padding-box-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/hayashih/padding-box-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/hiromitsuuuuu/test_font_face_parser.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/kasshisatari/border-box-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/kasshisatari/border-box-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/ahem.css": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-4-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-4.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-vert-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-vert-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1-iframe.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2-iframe.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3-iframe.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4-iframe.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertEmptySpan-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertEmptySpan-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1c.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1d.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3c.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-4-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-4.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-5-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-5.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2a.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2b.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-invalidation-1-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-invalidation-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-horiz-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-horiz-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-vert-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-vert-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-paint-ordering-3-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-paint-ordering-3.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-4-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-4.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-2-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-2.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-3-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-3.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-4-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-4.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1-disabled-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1-enabled-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1-helper.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1-ref.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1.xhtml": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-1-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-1.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-2-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-2.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-3-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-3.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-4-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-4.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/reftest.list": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/mozilla/solidblue.png": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/CSSOM/samples/CSSStyleDeclaration-setProperty.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-001-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-001.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-002.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-003-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-003.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-004.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-005.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/t32k/css-fonts-font-face-rule.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-18n-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-18n.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-fallback18n-ref.html": [ - [ - {} - ] - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-fallback18n.html": [ - [ - {} - ] - ], "cssom-view/OWNERS": [ [ {} @@ -281638,6 +282796,31 @@ {} ] ], + "cssom-view/resources/elementsFromPoint.js": [ + [ + {} + ] + ], + "cssom-view/resources/iframe1.html": [ + [ + {} + ] + ], + "cssom-view/resources/iframe2.html": [ + [ + {} + ] + ], + "cssom-view/scrollingElement-quirks-dynamic-001-ref.html": [ + [ + {} + ] + ], + "cssom-view/scrollingElement-quirks-dynamic-002-ref.html": [ + [ + {} + ] + ], "cssom-view/support/1x1-green.png": [ [ {} @@ -282098,6 +283281,11 @@ {} ] ], + "cssom/support/xmlss-pi.xhtml": [ + [ + {} + ] + ], "custom-elements/OWNERS": [ [ {} @@ -282243,6 +283431,11 @@ {} ] ], + "docs/_writing-tests/file-names.md": [ + [ + {} + ] + ], "docs/_writing-tests/general-guidelines.md": [ [ {} @@ -282733,6 +283926,11 @@ {} ] ], + "dom/nodes/Element-matches-init.js": [ + [ + {} + ] + ], "dom/nodes/Element-matches.js": [ [ {} @@ -282998,6 +284196,11 @@ {} ] ], + "editing/data/insert-list-items-in-table-cells.js": [ + [ + {} + ] + ], "editing/data/inserthorizontalrule.js": [ [ {} @@ -283168,6 +284371,26 @@ {} ] ], + "encoding/eof-shift_jis-ref.html": [ + [ + {} + ] + ], + "encoding/eof-utf-8-one-ref.html": [ + [ + {} + ] + ], + "encoding/eof-utf-8-three-ref.html": [ + [ + {} + ] + ], + "encoding/eof-utf-8-two-ref.html": [ + [ + {} + ] + ], "encoding/legacy-mb-japanese/shift_jis/jis0208_index.js": [ [ {} @@ -283713,6 +284936,11 @@ {} ] ], + "encoding/resources/decoding-helpers.js": [ + [ + {} + ] + ], "encoding/resources/encodings.js": [ [ {} @@ -283728,221 +284956,51 @@ {} ] ], + "encoding/resources/utf-32-big-endian-bom.html": [ + [ + {} + ] + ], + "encoding/resources/utf-32-big-endian-bom.xml": [ + [ + {} + ] + ], + "encoding/resources/utf-32-big-endian-nobom.html": [ + [ + {} + ] + ], + "encoding/resources/utf-32-big-endian-nobom.xml": [ + [ + {} + ] + ], + "encoding/resources/utf-32-little-endian-bom.html": [ + [ + {} + ] + ], + "encoding/resources/utf-32-little-endian-bom.xml": [ + [ + {} + ] + ], + "encoding/resources/utf-32-little-endian-nobom.html": [ + [ + {} + ] + ], + "encoding/resources/utf-32-little-endian-nobom.xml": [ + [ + {} + ] + ], "encrypted-media/EncryptedMediaExtensions.idl": [ [ {} ] ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-async-creation-with-gc.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-async-setcert-with-gc.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeys-with-session.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-reference.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-release-noreference.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-release.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-multiple-mediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-reload.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-check-init-data-type.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-clear-key-invalid-license.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-clearkey-update-non-ascii-input.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-events.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-generate-request-disallowed-input.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses-multiple-sessions.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses-multiple-updates.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-not-callable-after-createsession.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-onencrypted.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-encrypted-and-clear-sources.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-multiple-sessions.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-setmediakeys-after-src.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-setmediakeys-before-src.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-two-videos.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-requestmediakeysystemaccess.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-reset-src-after-setmediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-session-closed-event.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-again-after-playback.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-again-after-resetting-src.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-at-same-time.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-multiple-times-with-different-mediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-multiple-times-with-the-same-mediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-to-multiple-video-elements.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-syntax.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-unique-origin.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-update-disallowed-input.html": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-utils.js": [ - [ - {} - ] - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-waiting-for-a-key.html": [ - [ - {} - ] - ], - "encrypted-media/Google/webm/test-encrypted-different-av-keys.webm": [ - [ - {} - ] - ], - "encrypted-media/Google/webm/test-encrypted.webm": [ - [ - {} - ] - ], - "encrypted-media/Google/webm/test.webm": [ - [ - {} - ] - ], "encrypted-media/OWNERS": [ [ {} @@ -284318,6 +285376,61 @@ {} ] ], + "entries-api/OWNERS": [ + [ + {} + ] + ], + "entries-api/interfaces.idl": [ + [ + {} + ] + ], + "entries-api/support.js": [ + [ + {} + ] + ], + "entries-api/support/a/b/c/3.txt": [ + [ + {} + ] + ], + "entries-api/support/a/b/c/d/1.txt": [ + [ + {} + ] + ], + "entries-api/support/a/b/c/d/2.txt": [ + [ + {} + ] + ], + "entries-api/support/upload.txt": [ + [ + {} + ] + ], + "entries-api/support/upload/file.txt": [ + [ + {} + ] + ], + "entries-api/support/upload/subdir/1.txt": [ + [ + {} + ] + ], + "entries-api/support/upload/subdir/2.txt": [ + [ + {} + ] + ], + "entries-api/support/upload/subdir/3.txt": [ + [ + {} + ] + ], "eventsource/OWNERS": [ [ {} @@ -284408,6 +285521,51 @@ {} ] ], + "feature-policy/OWNERS": [ + [ + {} + ] + ], + "feature-policy/README.md": [ + [ + {} + ] + ], + "feature-policy/payment-allowed-by-feature-policy.https.sub.html.headers": [ + [ + {} + ] + ], + "feature-policy/payment-disabled-by-feature-policy.https.sub.html.headers": [ + [ + {} + ] + ], + "feature-policy/resources/feature-policy-payment.html": [ + [ + {} + ] + ], + "feature-policy/resources/feature-policy-usb.html": [ + [ + {} + ] + ], + "feature-policy/resources/feature-policy-webvr.html": [ + [ + {} + ] + ], + "feature-policy/resources/featurepolicy.js": [ + [ + {} + ] + ], + "feature-policy/resources/redirect-on-load.html": [ + [ + {} + ] + ], "fetch/OWNERS": [ [ {} @@ -284593,6 +285751,11 @@ {} ] ], + "fetch/api/request/request-error.js": [ + [ + {} + ] + ], "fetch/api/request/resources/cache.py": [ [ {} @@ -284608,6 +285771,11 @@ {} ] ], + "fetch/api/resources/basic.html": [ + [ + {} + ] + ], "fetch/api/resources/cache.py": [ [ {} @@ -284628,6 +285796,16 @@ {} ] ], + "fetch/api/resources/empty.txt": [ + [ + {} + ] + ], + "fetch/api/resources/infinite-slow-response.py": [ + [ + {} + ] + ], "fetch/api/resources/inspect-headers.py": [ [ {} @@ -284653,11 +285831,26 @@ {} ] ], + "fetch/api/resources/stash-put.py": [ + [ + {} + ] + ], + "fetch/api/resources/stash-take.py": [ + [ + {} + ] + ], "fetch/api/resources/status.py": [ [ {} ] ], + "fetch/api/resources/sw-intercept.js": [ + [ + {} + ] + ], "fetch/api/resources/top.txt": [ [ {} @@ -284763,6 +285956,11 @@ {} ] ], + "fonts/Ahem.ttf": [ + [ + {} + ] + ], "fonts/CanvasTest.ttf": [ [ {} @@ -284773,6 +285971,11 @@ {} ] ], + "fonts/README.md": [ + [ + {} + ] + ], "fonts/math/axisheight5000-verticalarrow14000.woff": [ [ {} @@ -285113,6 +286316,21 @@ {} ] ], + "fullscreen/api/resources/attempt-fullscreen.html": [ + [ + {} + ] + ], + "fullscreen/api/resources/report-fullscreen-enabled.html": [ + [ + {} + ] + ], + "fullscreen/rendering/fullscreen-pseudo-class-support.html": [ + [ + {} + ] + ], "fullscreen/trusted-click.js": [ [ {} @@ -285148,11 +286366,6 @@ {} ] ], - "gyroscope/support-iframe.html": [ - [ - {} - ] - ], "hr-time/OWNERS": [ [ {} @@ -285278,6 +286491,11 @@ {} ] ], + "html/README.md": [ + [ + {} + ] + ], "html/browsers/.gitkeep": [ [ {} @@ -285378,6 +286596,16 @@ {} ] ], + "html/browsers/browsing-the-web/history-traversal/support/window-name-navigation.sub.html": [ + [ + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/support/window-name-test.sub.html": [ + [ + {} + ] + ], "html/browsers/browsing-the-web/history-traversal/unset_context_name.html": [ [ {} @@ -285578,6 +286806,11 @@ {} ] ], + "html/browsers/browsing-the-web/scroll-to-fragid/navigate-helpers.js": [ + [ + {} + ] + ], "html/browsers/browsing-the-web/unloading-documents/.gitkeep": [ [ {} @@ -286198,6 +287431,36 @@ {} ] ], + "html/browsers/offline/appcache/workers/resources/appcache-dedicated-worker-not-in-cache.js": [ + [ + {} + ] + ], + "html/browsers/offline/appcache/workers/resources/appcache-shared-worker-not-in-cache.js": [ + [ + {} + ] + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker-data.py": [ + [ + {} + ] + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker-import.py": [ + [ + {} + ] + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker.manifest": [ + [ + {} + ] + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker.py": [ + [ + {} + ] + ], "html/browsers/offline/application-cache-api/.gitkeep": [ [ {} @@ -292253,6 +293516,11 @@ {} ] ], + "html/infrastructure/safe-passing-of-structured-data/echo.js": [ + [ + {} + ] + ], "html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success.js": [ [ {} @@ -292883,6 +294151,11 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/colgroup_valign-ref.xhtml": [ + [ + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-border-1-ref.html": [ [ {} @@ -292903,6 +294176,11 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/table-direction-ref.html": [ + [ + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-layout-notref.html": [ [ {} @@ -292913,6 +294191,16 @@ {} ] ], + "html/rendering/non-replaced-elements/tables/table-row-direction-ref.html": [ + [ + {} + ] + ], + "html/rendering/non-replaced-elements/tables/table-row-group-direction-ref.html": [ + [ + {} + ] + ], "html/rendering/non-replaced-elements/tables/table-width-150percent-ref.html": [ [ {} @@ -293298,6 +294586,11 @@ {} ] ], + "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/refresh.py": [ + [ + {} + ] + ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/refresh.sub.html": [ [ {} @@ -293813,6 +295106,11 @@ {} ] ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-that-performs-top-navigation-on-popup.html": [ + [ + {} + ] + ], "html/semantics/embedded-content/the-iframe-element/support/iframe-that-performs-top-navigation-without-user-gesture-failed.html": [ [ {} @@ -293823,16 +295121,171 @@ {} ] ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-that-tries-to-navigate-parent-and-sends-result-to-grandparent.html": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-tried-to-be-navigated-by-its-child.html": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-trying-to-navigate-its-child.html": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-trying-to-navigate-itself.html": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_001.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_002.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_003.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_004.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_006.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_007.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_008.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_010.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_012.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_020.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_020a.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_021.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_021a.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_022.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_023.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_024.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_026.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_027.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_028.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_029.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_031.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_032.htm": [ + [ + {} + ] + ], "html/semantics/embedded-content/the-iframe-element/support/navigation-changed-iframe.html": [ [ {} ] ], + "html/semantics/embedded-content/the-iframe-element/support/sandbox.pdf": [ + [ + {} + ] + ], "html/semantics/embedded-content/the-iframe-element/support/sandbox_allow_script.html": [ [ {} ] ], + "html/semantics/embedded-content/the-iframe-element/support/sandbox_helper.js": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-fail.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-iframe-content.htm": [ + [ + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-pass.htm": [ + [ + {} + ] + ], "html/semantics/embedded-content/the-img-element/.gitkeep": [ [ {} @@ -294133,6 +295586,11 @@ {} ] ], + "html/semantics/forms/the-label-element/iframe-label-attributes.html": [ + [ + {} + ] + ], "html/semantics/forms/the-legend-element/.gitkeep": [ [ {} @@ -294163,11 +295621,6 @@ {} ] ], - "html/semantics/forms/the-progress-element/.gitkeep": [ - [ - {} - ] - ], "html/semantics/forms/the-select-element/.gitkeep": [ [ {} @@ -294378,6 +295831,11 @@ {} ] ], + "html/semantics/interactive-elements/the-dialog-element/resources/common.js": [ + [ + {} + ] + ], "html/semantics/interactive-elements/the-menu-element/.gitkeep": [ [ {} @@ -294493,6 +295951,106 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/execution-timing/102.html": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/css/background.css": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/css/import.css": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/pages/helloworld-postMessage.html": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/pages/helloworld.html": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/count-script-tags.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/find-body.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/find-foo.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-1.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-10.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-11.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-2.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-3.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-4.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-5.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-6.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-7.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-8.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-9.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/testlib/testlib.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/external-script-utf8.js": [ [ {} @@ -294603,6 +296161,11 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/errorhandling-parseerror-common.js": [ [ {} @@ -294763,6 +296326,121 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4a.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4b.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4c.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4d.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5a.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5b.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5c.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5d.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5e.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6a.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6b.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6c.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6d.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7a.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7b.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7c.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7d.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7e.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7f.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/integrity-matches-inner.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/integrity-matches.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/integrity-mismatches-inner.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/integrity-mismatches.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/missing-export-nested.js": [ [ {} @@ -294778,11 +296456,41 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/resources/check-cookie.py": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/resources/credentials-iframe.sub.html": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/resources/delayed-modulescript.py": [ [ {} ] ], + "html/semantics/scripting-1/the-script-element/module/resources/import-non-utf8-with-charset-header.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-non-utf8.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-utf8-with-charset-header.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-utf8.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/set-currentScript-on-window.js": [ [ {} @@ -294818,6 +296526,11 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/throw-error.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/throw-nested.js": [ [ {} @@ -294828,6 +296541,21 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-16be.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-16le.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-8.js": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/resources/cocoa-module.js": [ [ {} @@ -294843,11 +296571,26 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/resources/load-error-events-helpers.js": [ + [ + {} + ] + ], + "html/semantics/scripting-1/the-script-element/resources/load-error-events.py": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/resources/set-script-executed.js": [ [ {} ] ], + "html/semantics/scripting-1/the-script-element/resources/slow.py": [ + [ + {} + ] + ], "html/semantics/scripting-1/the-script-element/script-not-executed-after-shutdown-child.html": [ [ {} @@ -295203,6 +296946,16 @@ {} ] ], + "html/semantics/text-level-semantics/the-a-element/a-download-404.py": [ + [ + {} + ] + ], + "html/semantics/text-level-semantics/the-a-element/resources/a-download-404.html": [ + [ + {} + ] + ], "html/semantics/text-level-semantics/the-abbr-element/.gitkeep": [ [ {} @@ -295738,11 +297491,6 @@ {} ] ], - "html/webappapis/idle-callbacks/resources/post_name_on_load.html": [ - [ - {} - ] - ], "html/webappapis/scripting/.gitkeep": [ [ {} @@ -295928,6 +297676,11 @@ {} ] ], + "http/OWNERS": [ + [ + {} + ] + ], "http/basic-auth-cache-test-ref.html": [ [ {} @@ -295938,6 +297691,26 @@ {} ] ], + "http/refresh/README.md": [ + [ + {} + ] + ], + "http/refresh/resources/multiple.asis": [ + [ + {} + ] + ], + "http/refresh/resources/refresh.py": [ + [ + {} + ] + ], + "http/refresh/resources/refreshed.txt": [ + [ + {} + ] + ], "http/resources/securedimage.py": [ [ {} @@ -296118,6 +297891,11 @@ {} ] ], + "images/smiley.png.headers": [ + [ + {} + ] + ], "images/threecolors.png": [ [ {} @@ -296143,6 +297921,51 @@ {} ] ], + "infrastructure/README.md": [ + [ + {} + ] + ], + "infrastructure/assumptions/OWNERS": [ + [ + {} + ] + ], + "infrastructure/assumptions/ahem-ref.html": [ + [ + {} + ] + ], + "infrastructure/assumptions/canvas-background-ref.html": [ + [ + {} + ] + ], + "infrastructure/assumptions/initial-color-ref.html": [ + [ + {} + ] + ], + "infrastructure/assumptions/medium-font-size-ref.html": [ + [ + {} + ] + ], + "infrastructure/assumptions/min-font-size-ref.html": [ + [ + {} + ] + ], + "infrastructure/assumptions/tools/ahem-generate-table.py": [ + [ + {} + ] + ], + "infrastructure/assumptions/tools/build.sh": [ + [ + {} + ] + ], "infrastructure/reftest-wait-ref.html": [ [ {} @@ -296168,11 +297991,31 @@ {} ] ], + "interfaces/clipboard.idl": [ + [ + {} + ] + ], + "interfaces/console.idl": [ + [ + {} + ] + ], + "interfaces/cssom-view.idl": [ + [ + {} + ] + ], "interfaces/cssom.idl": [ [ {} ] ], + "interfaces/dedicated-workers.idl": [ + [ + {} + ] + ], "interfaces/dom.idl": [ [ {} @@ -296198,6 +298041,16 @@ {} ] ], + "interfaces/payment-handler.idl": [ + [ + {} + ] + ], + "interfaces/payment-request.idl": [ + [ + {} + ] + ], "interfaces/remoteplayback.idl": [ [ {} @@ -296213,11 +298066,56 @@ {} ] ], + "interfaces/web-share.idl": [ + [ + {} + ] + ], + "interfaces/webidl.idl": [ + [ + {} + ] + ], "interfaces/webrtc-pc.idl": [ [ {} ] ], + "interfaces/webusb.idl": [ + [ + {} + ] + ], + "intersection-observer/observer-in-iframe.html": [ + [ + {} + ] + ], + "intersection-observer/resources/cross-origin-subframe.html": [ + [ + {} + ] + ], + "intersection-observer/resources/iframe-no-root-subframe.html": [ + [ + {} + ] + ], + "intersection-observer/resources/intersection-observer-test-utils.js": [ + [ + {} + ] + ], + "intersection-observer/resources/observer-in-iframe-subframe.html": [ + [ + {} + ] + ], + "intersection-observer/resources/timestamp-subframe.html": [ + [ + {} + ] + ], "js/builtins/Math.maxmin.js": [ [ {} @@ -296233,6 +298131,11 @@ {} ] ], + "longtask-timing/OWNERS": [ + [ + {} + ] + ], "longtask-timing/resources/makelongtask.js": [ [ {} @@ -296258,7 +298161,7 @@ {} ] ], - "magnetometer/support-iframe.html": [ + "mathml/OWNERS": [ [ {} ] @@ -296848,6 +298751,21 @@ {} ] ], + "media/test-a-128k-44100Hz-1ch.webm": [ + [ + {} + ] + ], + "media/test-av-384k-44100Hz-1ch-320x240-30fps-10kfr.webm": [ + [ + {} + ] + ], + "media/test-v-128k-320x240-24fps-8kfr.webm": [ + [ + {} + ] + ], "media/white.mp4": [ [ {} @@ -296873,111 +298791,6 @@ {} ] ], - "microdata/conformance-requirements/.gitkeep": [ - [ - {} - ] - ], - "microdata/converting-html-to-other-formats/.gitkeep": [ - [ - {} - ] - ], - "microdata/converting-html-to-other-formats/json/.gitkeep": [ - [ - {} - ] - ], - "microdata/dependencies/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/associating-names-with-items/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/items/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/microdata-and-other-namespaces/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/names-the-itemprop-attribute/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/names-the-itemprop-attribute/original-id.json": [ - [ - {} - ] - ], - "microdata/encoding-microdata/the-microdata-model/.gitkeep": [ - [ - {} - ] - ], - "microdata/encoding-microdata/values/.gitkeep": [ - [ - {} - ] - ], - "microdata/iana/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/global-identifiers-for-items/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/overview/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/selecting-names-when-defining-vocabularies/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/the-basic-syntax/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/typed-items/.gitkeep": [ - [ - {} - ] - ], - "microdata/introduction/using-the-microdata-dom-api/.gitkeep": [ - [ - {} - ] - ], - "microdata/terminology/.gitkeep": [ - [ - {} - ] - ], "mixed-content/OWNERS": [ [ {} @@ -297738,16 +299551,6 @@ {} ] ], - "old-tests/submission/Infraware/Session_History/contents/Session_History/css/result.css": [ - [ - {} - ] - ], - "old-tests/submission/Infraware/Session_History/contents/Session_History/index.html": [ - [ - {} - ] - ], "old-tests/submission/Microsoft/dragdrop/dragdrop_support.js": [ [ {} @@ -297783,206 +299586,11 @@ {} ] ], - "old-tests/submission/Microsoft/images/blue-area.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/blue-border.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/blue.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/fail.gif": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/movie_300_frame_0.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/poster.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/poster_blue.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/poster_green.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/poster_red.png": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/images/rect.svg": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_001.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_002.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_003.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_004.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_006.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_007.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_008.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_010.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_012.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_020.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_020a.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_021.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_021a.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_022.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_023.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_024.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_026.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_027.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_028.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_029.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_031.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_032.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox.pdf": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_helper.js": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/standalone-fail.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/standalone-iframe-content.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/standalone-pass.htm": [ - [ - {} - ] - ], "old-tests/submission/Microsoft/selection/RemoveElementContainingSelection.htm": [ [ {} ] ], - "old-tests/submission/Microsoft/selection/addRange.htm": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/selection/collapse.htm": [ - [ - {} - ] - ], "old-tests/submission/Microsoft/selection/collapseToEnd.htm": [ [ {} @@ -298038,126 +299646,6 @@ {} ] ], - "old-tests/submission/Microsoft/structuredclone/echo.js": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/xhtml5/colgroup_valign_bottom.xhtml": [ - [ - {} - ] - ], - "old-tests/submission/Microsoft/xhtml5/colgroup_valign_top.xhtml": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/102.html": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/css/background.css": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/css/import.css": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/pages/helloworld-postMessage.html": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/pages/helloworld.html": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/count-script-tags.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/find-body.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/find-foo.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-1.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-10.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-11.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-12.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-2.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-3.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-4.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-5.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-6.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-7.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-8.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-9.js": [ - [ - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/testlib/testlib.js": [ - [ - {} - ] - ], "old-tests/submission/migration.txt": [ [ {} @@ -298893,6 +300381,16 @@ {} ] ], + "page-visibility/resources/iframe-with-subframes.html": [ + [ + {} + ] + ], + "page-visibility/resources/iframe.html": [ + [ + {} + ] + ], "page-visibility/resources/pagevistestharness.js": [ [ {} @@ -298908,6 +300406,41 @@ {} ] ], + "paint-timing/OWNERS": [ + [ + {} + ] + ], + "paint-timing/resources/circle.svg": [ + [ + {} + ] + ], + "paint-timing/resources/circles.png": [ + [ + {} + ] + ], + "payment-handler/OWNERS": [ + [ + {} + ] + ], + "payment-method-basic-card/OWNERS": [ + [ + {} + ] + ], + "payment-method-id/OWNERS": [ + [ + {} + ] + ], + "payment-method-id/README.md": [ + [ + {} + ] + ], "payment-request/OWNERS": [ [ {} @@ -298923,12 +300456,22 @@ {} ] ], - "payment-request/payment-request-canmakepayment-method.https.http": [ + "payment-request/payment-request-response-id.html": [ [ {} ] ], - "payment-request/payment-request-response-id.html": [ + "payment-request/payment-response/helpers.js": [ + [ + {} + ] + ], + "payment-request/resources/page1.html": [ + [ + {} + ] + ], + "payment-request/resources/page2.html": [ [ {} ] @@ -298948,6 +300491,11 @@ {} ] ], + "performance-timeline/resources/worker-with-performance-observer.js": [ + [ + {} + ] + ], "pointerevents/OWNERS": [ [ {} @@ -298988,51 +300536,146 @@ {} ] ], + "preload/dynamic-adding-preload-nonce.html.headers": [ + [ + {} + ] + ], "preload/link-header-preload-delay-onload.html.headers": [ [ {} ] ], + "preload/link-header-preload-nonce.html.headers": [ + [ + {} + ] + ], "preload/link-header-preload.html.headers": [ [ {} ] ], + "preload/resources/A4.ogv": [ + [ + {} + ] + ], + "preload/resources/A4.ogv.sub.headers": [ + [ + {} + ] + ], + "preload/resources/CanvasTest.ttf": [ + [ + {} + ] + ], + "preload/resources/CanvasTest.ttf.sub.headers": [ + [ + {} + ] + ], + "preload/resources/dummy-preloads-subresource.css": [ + [ + {} + ] + ], + "preload/resources/dummy-preloads-subresource.css.sub.headers": [ + [ + {} + ] + ], "preload/resources/dummy.css": [ [ {} ] ], + "preload/resources/dummy.css.sub.headers": [ + [ + {} + ] + ], "preload/resources/dummy.js": [ [ {} ] ], + "preload/resources/dummy.js.sub.headers": [ + [ + {} + ] + ], "preload/resources/dummy.xml": [ [ {} ] ], + "preload/resources/dummy.xml.sub.headers": [ + [ + {} + ] + ], "preload/resources/empty.html": [ [ {} ] ], + "preload/resources/empty.html.sub.headers": [ + [ + {} + ] + ], "preload/resources/fetch-destination-worker.js": [ [ {} ] ], + "preload/resources/foo.vtt": [ + [ + {} + ] + ], + "preload/resources/foo.vtt.sub.headers": [ + [ + {} + ] + ], "preload/resources/preload_helper.js": [ [ {} ] ], + "preload/resources/sound_5.oga": [ + [ + {} + ] + ], + "preload/resources/sound_5.oga.sub.headers": [ + [ + {} + ] + ], "preload/resources/square.png": [ [ {} ] ], + "preload/resources/square.png.sub.headers": [ + [ + {} + ] + ], + "preload/resources/white.mp4": [ + [ + {} + ] + ], + "preload/resources/white.mp4.sub.headers": [ + [ + {} + ] + ], "presentation-api/OWNERS": [ [ {} @@ -301798,6 +303441,31 @@ {} ] ], + "requestidlecallback/OWNERS": [ + [ + {} + ] + ], + "requestidlecallback/resources/post_name_on_load.html": [ + [ + {} + ] + ], + "resize-observer/OWNERS": [ + [ + {} + ] + ], + "resize-observer/resources/iframe.html": [ + [ + {} + ] + ], + "resize-observer/resources/resizeTestHelper.js": [ + [ + {} + ] + ], "resource-timing/OWNERS": [ [ {} @@ -301823,6 +303491,11 @@ {} ] ], + "resource-timing/resources/blue.png": [ + [ + {} + ] + ], "resource-timing/resources/fake_responses.html": [ [ {} @@ -302398,11 +304071,41 @@ {} ] ], + "service-workers/service-worker/resources/bytecheck-worker-imported-script.py": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/bytecheck-worker.py": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/claim-shared-worker-fetch-iframe.html": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/claim-shared-worker-fetch-worker.js": [ + [ + {} + ] + ], "service-workers/service-worker/resources/claim-with-redirect-iframe.html": [ [ {} ] ], + "service-workers/service-worker/resources/claim-worker-fetch-iframe.html": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/claim-worker-fetch-worker.js": [ + [ + {} + ] + ], "service-workers/service-worker/resources/claim-worker.js": [ [ {} @@ -302618,11 +304321,6 @@ {} ] ], - "service-workers/service-worker/resources/fetch-event-redirect-iframe.html": [ - [ - {} - ] - ], "service-workers/service-worker/resources/fetch-event-respond-with-argument-iframe.html": [ [ {} @@ -302883,6 +304581,11 @@ {} ] ], + "service-workers/service-worker/resources/immutable-prototype-serviceworker.js": [ + [ + {} + ] + ], "service-workers/service-worker/resources/import-mime-type-worker.py": [ [ {} @@ -302893,6 +304596,16 @@ {} ] ], + "service-workers/service-worker/resources/import-scripts-redirect-import.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/import-scripts-redirect-worker.js": [ + [ + {} + ] + ], "service-workers/service-worker/resources/import-scripts-resource-map-worker.js": [ [ {} @@ -302923,12 +304636,12 @@ {} ] ], - "service-workers/service-worker/resources/interfaces-worker.sub.js": [ + "service-workers/service-worker/resources/interfaces-idls.js": [ [ {} ] ], - "service-workers/service-worker/resources/interfaces.js": [ + "service-workers/service-worker/resources/interfaces-worker.sub.js": [ [ {} ] @@ -302993,6 +304706,11 @@ {} ] ], + "service-workers/service-worker/resources/mime-sniffing-worker.js": [ + [ + {} + ] + ], "service-workers/service-worker/resources/mime-type-worker.py": [ [ {} @@ -303113,7 +304831,7 @@ {} ] ], - "service-workers/service-worker/resources/opaque-response-preloaded-iframe.html": [ + "service-workers/service-worker/resources/opaque-response-being-preloaded-xhr.html": [ [ {} ] @@ -303123,6 +304841,11 @@ {} ] ], + "service-workers/service-worker/resources/opaque-response-preloaded-xhr.html": [ + [ + {} + ] + ], "service-workers/service-worker/resources/other.html": [ [ {} @@ -303193,7 +304916,32 @@ {} ] ], - "service-workers/service-worker/resources/registration-tests.js": [ + "service-workers/service-worker/resources/registration-tests-basic.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/registration-tests-mime-types.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/registration-tests-scope.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/registration-tests-script-url.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/registration-tests-script.js": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/registration-tests-security-error.js": [ [ {} ] @@ -303323,6 +305071,16 @@ {} ] ], + "service-workers/service-worker/resources/update-max-aged-worker-imported-script.py": [ + [ + {} + ] + ], + "service-workers/service-worker/resources/update-max-aged-worker.py": [ + [ + {} + ] + ], "service-workers/service-worker/resources/update-nocookie-worker.py": [ [ {} @@ -303463,6 +305221,11 @@ {} ] ], + "speech-api/OWNERS": [ + [ + {} + ] + ], "staticrange/OWNERS": [ [ {} @@ -303573,11 +305336,26 @@ {} ] ], + "streams/readable-byte-streams/brand-checks.js": [ + [ + {} + ] + ], + "streams/readable-byte-streams/detached-buffers.js": [ + [ + {} + ] + ], "streams/readable-byte-streams/general.js": [ [ {} ] ], + "streams/readable-byte-streams/properties.js": [ + [ + {} + ] + ], "streams/readable-streams/bad-strategies.js": [ [ {} @@ -303623,11 +305401,6 @@ {} ] ], - "streams/readable-streams/pipe-through.js": [ - [ - {} - ] - ], "streams/readable-streams/tee.js": [ [ {} @@ -303793,6 +305566,126 @@ {} ] ], + "subresource-integrity/ed25519-broken-signature.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-broken-signature.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature-headers.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature-headers.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature2.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-multi-signature2.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-no-signature.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-signature.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-signature.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-signature2.js": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-signature2.js.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature-headers.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature-headers.css.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature.css.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature2.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-multi-signature2.css.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-no-signature.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-wrong-signature.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style-wrong-signature.css.headers": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style.css": [ + [ + {} + ] + ], + "subresource-integrity/ed25519-style.css.headers": [ + [ + {} + ] + ], "subresource-integrity/matching-digest.js": [ [ {} @@ -303808,6 +305701,11 @@ {} ] ], + "subresource-integrity/tools/ed25519.py": [ + [ + {} + ] + ], "subresource-integrity/tools/generate_javascript.py": [ [ {} @@ -304078,6 +305976,11 @@ {} ] ], + "trusted-types/support/helper.js": [ + [ + {} + ] + ], "uievents/OWNERS": [ [ {} @@ -304108,6 +306011,16 @@ {} ] ], + "uievents/keyboard/key.css": [ + [ + {} + ] + ], + "uievents/keyboard/key.js": [ + [ + {} + ] + ], "uievents/legacy-domevents-tests/Status.html": [ [ {} @@ -304503,11 +306416,6 @@ {} ] ], - "viewport/OWNERS": [ - [ - {} - ] - ], "viewport/viewport_support.js": [ [ {} @@ -304623,6 +306531,11 @@ {} ] ], + "web-animations/resources/xhr-doc.py": [ + [ + {} + ] + ], "web-animations/testcommon.js": [ [ {} @@ -304633,6 +306546,21 @@ {} ] ], + "web-nfc/resources/nfc_help.js": [ + [ + {} + ] + ], + "web-share/OWNERS": [ + [ + {} + ] + ], + "web-share/resources/manual-helper.js": [ + [ + {} + ] + ], "webaudio/.gitignore": [ [ {} @@ -304663,11 +306591,6 @@ {} ] ], - "webaudio/js/vendor-prefixes.js": [ - [ - {} - ] - ], "webaudio/refresh_idl.rb": [ [ {} @@ -304838,57 +306761,87 @@ {} ] ], - "webdriver/actions/__init__.py": [ + "webdriver/tests/__init__.py": [ [ {} ] ], - "webdriver/actions/support/__init__.py": [ + "webdriver/tests/actions/__init__.py": [ [ {} ] ], - "webdriver/actions/support/keys.py": [ + "webdriver/tests/actions/support/__init__.py": [ [ {} ] ], - "webdriver/actions/support/refine.py": [ + "webdriver/tests/actions/support/keys.py": [ [ {} ] ], - "webdriver/actions/support/test_actions_wdspec.html": [ + "webdriver/tests/actions/support/refine.py": [ [ {} ] ], - "webdriver/support/__init__.py": [ + "webdriver/tests/actions/support/test_actions_wdspec.html": [ [ {} ] ], - "webdriver/support/asserts.py": [ + "webdriver/tests/element_click/__init__.py": [ [ {} ] ], - "webdriver/support/fixtures.py": [ + "webdriver/tests/retrieval/__init__.py": [ [ {} ] ], - "webdriver/support/http_request.py": [ + "webdriver/tests/state/__init__.py": [ [ {} ] ], - "webdriver/support/inline.py": [ + "webdriver/tests/state/text/__init__.py": [ [ {} ] ], - "webdriver/support/merge_dictionaries.py": [ + "webdriver/tests/support/__init__.py": [ + [ + {} + ] + ], + "webdriver/tests/support/asserts.py": [ + [ + {} + ] + ], + "webdriver/tests/support/fixtures.py": [ + [ + {} + ] + ], + "webdriver/tests/support/http_request.py": [ + [ + {} + ] + ], + "webdriver/tests/support/inline.py": [ + [ + {} + ] + ], + "webdriver/tests/support/merge_dictionaries.py": [ + [ + {} + ] + ], + "webdriver/tests/support/wait.py": [ [ {} ] @@ -313268,11 +315221,61 @@ {} ] ], + "webrtc/RTCConfiguration-helper.js": [ + [ + {} + ] + ], + "webrtc/RTCDTMFSender-helper.js": [ + [ + {} + ] + ], "webrtc/RTCPeerConnection-helper.js": [ [ {} ] ], + "webrtc/RTCRtpCapabilities-helper.js": [ + [ + {} + ] + ], + "webrtc/RTCRtpParameters-helper.js": [ + [ + {} + ] + ], + "webrtc/RTCStats-helper.js": [ + [ + {} + ] + ], + "webrtc/coverage/RTCDTMFSender.txt": [ + [ + {} + ] + ], + "webrtc/coverage/identity.txt": [ + [ + {} + ] + ], + "webrtc/coverage/set-session-description.txt": [ + [ + {} + ] + ], + "webrtc/dictionary-helper.js": [ + [ + {} + ] + ], + "webrtc/identity-helper.js": [ + [ + {} + ] + ], "websockets/OWNERS": [ [ {} @@ -313423,11 +315426,21 @@ {} ] ], + "websockets/unload-a-document/001-2.html": [ + [ + {} + ] + ], "websockets/unload-a-document/002-1.html": [ [ {} ] ], + "websockets/unload-a-document/002-2.html": [ + [ + {} + ] + ], "websockets/unload-a-document/005-1.html": [ [ {} @@ -313528,6 +315541,11 @@ {} ] ], + "webstorage/resources/storage_session_window_noopener_second.html": [ + [ + {} + ] + ], "webstorage/resources/storage_session_window_open_second.html": [ [ {} @@ -313538,12 +315556,22 @@ {} ] ], - "webusb/resources/check-availability.html": [ + "webusb/README.md": [ [ {} ] ], - "webusb/resources/featurepolicytest.js": [ + "webusb/resources/fake-devices.js": [ + [ + {} + ] + ], + "webusb/resources/open-in-iframe.html": [ + [ + {} + ] + ], + "webusb/resources/usb-helpers.js": [ [ {} ] @@ -313563,6 +315591,21 @@ {} ] ], + "webvr/webvr-disabled-by-feature-policy.https.sub.html.headers": [ + [ + {} + ] + ], + "webvr/webvr-enabled-by-feature-policy.https.sub.html.headers": [ + [ + {} + ] + ], + "webvr/webvr-enabled-on-self-origin-by-feature-policy.https.sub.html.headers": [ + [ + {} + ] + ], "webvtt/OWNERS": [ [ {} @@ -313578,6 +315621,11 @@ {} ] ], + "webvtt/api/VTTCue/common.js": [ + [ + {} + ] + ], "webvtt/api/categories.json": [ [ {} @@ -313618,6 +315666,11 @@ {} ] ], + "webvtt/parsing/cue-text-parsing/dat/text.dat": [ + [ + {} + ] + ], "webvtt/parsing/cue-text-parsing/dat/timestamps.dat": [ [ {} @@ -315718,11 +317771,6 @@ {} ] ], - "workers/interfaces.idl": [ - [ - {} - ] - ], "workers/interfaces/DedicatedWorkerGlobalScope/postMessage/message-event.js": [ [ {} @@ -315943,6 +317991,11 @@ {} ] ], + "workers/support/WorkerLocation-origin.html": [ + [ + {} + ] + ], "workers/support/WorkerLocation.js": [ [ {} @@ -315963,6 +318016,11 @@ {} ] ], + "workers/support/name-as-accidental-global.js": [ + [ + {} + ] + ], "workers/support/name.js": [ [ {} @@ -315983,6 +318041,41 @@ {} ] ], + "worklets/README.md": [ + [ + {} + ] + ], + "worklets/resources/empty-worklet-script.js": [ + [ + {} + ] + ], + "worklets/resources/import-cyclic-worklet-script.js": [ + [ + {} + ] + ], + "worklets/resources/import-nested-internal-worklet-script.js": [ + [ + {} + ] + ], + "worklets/resources/import-nested-worklet-script.js": [ + [ + {} + ] + ], + "worklets/resources/import-tests.js": [ + [ + {} + ] + ], + "worklets/resources/throwing-worklet-script.js": [ + [ + {} + ] + ], "x-frame-options/support/helper.js": [ [ {} @@ -316792,6 +318885,24 @@ {} ] ], + "2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html": [ + [ + "/2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html", + {} + ] + ], + "2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html": [ + [ + "/2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html", + {} + ] + ], + "2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html": [ + [ + "/2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html", + {} + ] + ], "2dcontext/drawing-paths-to-the-canvas/canvas_complexshapes_ispointInpath_001.htm": [ [ "/2dcontext/drawing-paths-to-the-canvas/canvas_complexshapes_ispointInpath_001.htm", @@ -318568,6 +320679,18 @@ {} ] ], + "2dcontext/imagebitmap/createImageBitmap-invalid-args.html": [ + [ + "/2dcontext/imagebitmap/createImageBitmap-invalid-args.html", + {} + ] + ], + "2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html": [ + [ + "/2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html", + {} + ] + ], "2dcontext/line-styles/2d.line.cap.butt.html": [ [ "/2dcontext/line-styles/2d.line.cap.butt.html", @@ -320392,6 +322515,12 @@ {} ] ], + "2dcontext/text-styles/2d.text.font.parse.tiny.html": [ + [ + "/2dcontext/text-styles/2d.text.font.parse.tiny.html", + {} + ] + ], "2dcontext/text-styles/2d.text.measure.width.space.html": [ [ "/2dcontext/text-styles/2d.text.measure.width.space.html", @@ -322716,14 +324845,6 @@ } ] ], - "IndexedDB/large-nested-cloning.html": [ - [ - "/IndexedDB/large-nested-cloning.html", - { - "timeout": "long" - } - ] - ], "IndexedDB/large-requests-abort.html": [ [ "/IndexedDB/large-requests-abort.html", @@ -322744,6 +324865,30 @@ {} ] ], + "IndexedDB/nested-cloning-large-multiple.html": [ + [ + "/IndexedDB/nested-cloning-large-multiple.html", + { + "timeout": "long" + } + ] + ], + "IndexedDB/nested-cloning-large.html": [ + [ + "/IndexedDB/nested-cloning-large.html", + { + "timeout": "long" + } + ] + ], + "IndexedDB/nested-cloning-small.html": [ + [ + "/IndexedDB/nested-cloning-small.html", + { + "timeout": "long" + } + ] + ], "IndexedDB/objectstore_keyorder.htm": [ [ "/IndexedDB/objectstore_keyorder.htm", @@ -323610,27 +325755,43 @@ {} ] ], - "WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.html": [ + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.any.js": [ [ - "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.html", + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.any.html", + {} + ], + [ + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.any.worker.html", {} ] ], - "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html": [ + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.js": [ [ - "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html", + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.html", + {} + ], + [ + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.worker.html", {} ] ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.html": [ + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.js": [ [ - "/WebIDL/ecmascript-binding/es-exceptions/constructor-object.html", + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.html", + {} + ], + [ + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.worker.html", {} ] ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.js": [ + "WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js": [ [ - "/WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.html", + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.html", + {} + ], + [ + "/WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.worker.html", {} ] ], @@ -323664,6 +325825,12 @@ {} ] ], + "WebIDL/ecmascript-binding/legacy-platform-object.html": [ + [ + "/WebIDL/ecmascript-binding/legacy-platform-object.html", + {} + ] + ], "WebIDL/ecmascript-binding/put-forwards.html": [ [ "/WebIDL/ecmascript-binding/put-forwards.html", @@ -323676,6 +325843,12 @@ {} ] ], + "WebIDL/interfaces.html": [ + [ + "/WebIDL/interfaces.html", + {} + ] + ], "XMLHttpRequest/FormData-append.html": [ [ "/XMLHttpRequest/FormData-append.html", @@ -323782,6 +325955,294 @@ {} ] ], + "XMLHttpRequest/access-control-and-redirects-async-same-origin.htm": [ + [ + "/XMLHttpRequest/access-control-and-redirects-async-same-origin.htm", + {} + ] + ], + "XMLHttpRequest/access-control-and-redirects-async.htm": [ + [ + "/XMLHttpRequest/access-control-and-redirects-async.htm", + {} + ] + ], + "XMLHttpRequest/access-control-and-redirects.htm": [ + [ + "/XMLHttpRequest/access-control-and-redirects.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-access-control-origin-header.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-access-control-origin-header.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-async.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-async.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method-async.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method-async.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-header.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-header.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-method.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-method.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-timeout.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-preflight-cache-timeout.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-preflight-cache.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow-star.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow-star.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-allow.htm": [ + [ + "/XMLHttpRequest/access-control-basic-allow.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm": [ + [ + "/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-cors-safelisted-response-headers.htm": [ + [ + "/XMLHttpRequest/access-control-basic-cors-safelisted-response-headers.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-denied.htm": [ + [ + "/XMLHttpRequest/access-control-basic-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-get-fail-non-simple.htm": [ + [ + "/XMLHttpRequest/access-control-basic-get-fail-non-simple.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-non-cors-safelisted-content-type.htm": [ + [ + "/XMLHttpRequest/access-control-basic-non-cors-safelisted-content-type.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-post-success-no-content-type.htm": [ + [ + "/XMLHttpRequest/access-control-basic-post-success-no-content-type.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-post-with-non-cors-safelisted-content-type.htm": [ + [ + "/XMLHttpRequest/access-control-basic-post-with-non-cors-safelisted-content-type.htm", + {} + ] + ], + "XMLHttpRequest/access-control-basic-preflight-denied.htm": [ + [ + "/XMLHttpRequest/access-control-basic-preflight-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-async-header-denied.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-async-header-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-async-method-denied.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-async-method-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-async-not-supported.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-async-not-supported.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-credential-async.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-credential-async.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-credential-sync.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-credential-sync.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-headers-async.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-headers-async.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-headers-sync.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-headers-sync.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-header-lowercase.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-header-lowercase.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-header-sorted.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-header-sorted.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-headers-origin.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-headers-origin.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-301.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-invalid-status-301.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-400.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-invalid-status-400.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-501.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-invalid-status-501.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-request-must-not-contain-cookie.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-request-must-not-contain-cookie.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-sync-header-denied.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-sync-header-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-sync-method-denied.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-sync-method-denied.htm", + {} + ] + ], + "XMLHttpRequest/access-control-preflight-sync-not-supported.htm": [ + [ + "/XMLHttpRequest/access-control-preflight-sync-not-supported.htm", + {} + ] + ], + "XMLHttpRequest/access-control-recursive-failed-request.htm": [ + [ + "/XMLHttpRequest/access-control-recursive-failed-request.htm", + {} + ] + ], + "XMLHttpRequest/access-control-response-with-body-sync.htm": [ + [ + "/XMLHttpRequest/access-control-response-with-body-sync.htm", + {} + ] + ], + "XMLHttpRequest/access-control-response-with-body.htm": [ + [ + "/XMLHttpRequest/access-control-response-with-body.htm", + {} + ] + ], + "XMLHttpRequest/access-control-response-with-exposed-headers.htm": [ + [ + "/XMLHttpRequest/access-control-response-with-exposed-headers.htm", + {} + ] + ], + "XMLHttpRequest/access-control-sandboxed-iframe-allow-origin-null.htm": [ + [ + "/XMLHttpRequest/access-control-sandboxed-iframe-allow-origin-null.htm", + {} + ] + ], + "XMLHttpRequest/access-control-sandboxed-iframe-allow.htm": [ + [ + "/XMLHttpRequest/access-control-sandboxed-iframe-allow.htm", + {} + ] + ], + "XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm": [ + [ + "/XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm", + {} + ] + ], + "XMLHttpRequest/access-control-sandboxed-iframe-denied.htm": [ + [ + "/XMLHttpRequest/access-control-sandboxed-iframe-denied.htm", + {} + ] + ], + "XMLHttpRequest/allow-lists-starting-with-comma.htm": [ + [ + "/XMLHttpRequest/allow-lists-starting-with-comma.htm", + {} + ] + ], "XMLHttpRequest/anonymous-mode-unsupported.htm": [ [ "/XMLHttpRequest/anonymous-mode-unsupported.htm", @@ -324330,6 +326791,24 @@ {} ] ], + "XMLHttpRequest/responseType-document-in-worker.html": [ + [ + "/XMLHttpRequest/responseType-document-in-worker.html", + {} + ] + ], + "XMLHttpRequest/responseXML-unavailable-in-worker.html": [ + [ + "/XMLHttpRequest/responseXML-unavailable-in-worker.html", + {} + ] + ], + "XMLHttpRequest/responsedocument-decoding.htm": [ + [ + "/XMLHttpRequest/responsedocument-decoding.htm", + {} + ] + ], "XMLHttpRequest/responsetext-decoding.htm": [ [ "/XMLHttpRequest/responsetext-decoding.htm", @@ -325066,15 +327545,33 @@ {} ] ], - "app-uri/appURI_test.html": [ + "audio-output/HTMLMediaElement-sinkId-idl.html": [ [ - "/app-uri/appURI_test.html", + "/audio-output/HTMLMediaElement-sinkId-idl.html", {} ] ], - "assumptions/html-elements.html": [ + "audio-output/setSinkId.https.html": [ [ - "/assumptions/html-elements.html", + "/audio-output/setSinkId.https.html", + {} + ] + ], + "background-fetch/content-security-policy.https.window.js": [ + [ + "/background-fetch/content-security-policy.https.window.html", + {} + ] + ], + "background-fetch/credentials-in-url.https.window.js": [ + [ + "/background-fetch/credentials-in-url.https.window.html", + {} + ] + ], + "background-fetch/dangling-markup.https.window.js": [ + [ + "/background-fetch/dangling-markup.https.window.html", {} ] ], @@ -325096,6 +327593,18 @@ {} ] ], + "background-fetch/mixed-content-and-allowed-schemes.https.window.js": [ + [ + "/background-fetch/mixed-content-and-allowed-schemes.https.window.html", + {} + ] + ], + "background-fetch/port-blocking.https.window.js": [ + [ + "/background-fetch/port-blocking.https.window.html", + {} + ] + ], "battery-status/battery-iframe.https.html": [ [ "/battery-status/battery-iframe.https.html", @@ -325126,6 +327635,96 @@ {} ] ], + "beacon/beacon-basic-blob.html": [ + [ + "/beacon/beacon-basic-blob.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-blobMax.html": [ + [ + "/beacon/beacon-basic-blobMax.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-buffersource.html": [ + [ + "/beacon/beacon-basic-buffersource.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-buffersourceMax.html": [ + [ + "/beacon/beacon-basic-buffersourceMax.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-formdata.html": [ + [ + "/beacon/beacon-basic-formdata.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-formdataMax.html": [ + [ + "/beacon/beacon-basic-formdataMax.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-string.html": [ + [ + "/beacon/beacon-basic-string.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-basic-stringMax.html": [ + [ + "/beacon/beacon-basic-stringMax.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-cors.sub.window.js": [ + [ + "/beacon/beacon-cors.sub.window.html", + {} + ] + ], + "beacon/beacon-error.window.js": [ + [ + "/beacon/beacon-error.window.html", + {} + ] + ], + "beacon/beacon-navigate.html": [ + [ + "/beacon/beacon-navigate.html", + { + "timeout": "long" + } + ] + ], + "beacon/beacon-redirect.window.js": [ + [ + "/beacon/beacon-redirect.window.html", + {} + ] + ], "beacon/headers/header-content-type.html": [ [ "/beacon/headers/header-content-type.html", @@ -325186,9 +327785,45 @@ {} ] ], - "clear-site-data/navigation.html": [ + "clear-site-data/navigation-insecure.html": [ [ - "/clear-site-data/navigation.html", + "/clear-site-data/navigation-insecure.html", + {} + ] + ], + "clear-site-data/navigation.https.html": [ + [ + "/clear-site-data/navigation.https.html", + {} + ] + ], + "clear-site-data/resource.html": [ + [ + "/clear-site-data/resource.html", + {} + ] + ], + "clear-site-data/storage.https.html": [ + [ + "/clear-site-data/storage.https.html", + {} + ] + ], + "clipboard-apis/async-interfaces.https.html": [ + [ + "/clipboard-apis/async-interfaces.https.html", + {} + ] + ], + "clipboard-apis/async-navigator-clipboard-basics.https.html": [ + [ + "/clipboard-apis/async-navigator-clipboard-basics.https.html", + {} + ] + ], + "compat/historical.html": [ + [ + "/compat/historical.html", {} ] ], @@ -325760,30 +328395,6 @@ {} ] ], - "content-security-policy/blink-contrib/object-src-applet-archive-codebase.sub.html": [ - [ - "/content-security-policy/blink-contrib/object-src-applet-archive-codebase.sub.html", - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-archive.sub.html": [ - [ - "/content-security-policy/blink-contrib/object-src-applet-archive.sub.html", - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-code-codebase.sub.html": [ - [ - "/content-security-policy/blink-contrib/object-src-applet-code-codebase.sub.html", - {} - ] - ], - "content-security-policy/blink-contrib/object-src-applet-code.sub.html": [ - [ - "/content-security-policy/blink-contrib/object-src-applet-code.sub.html", - {} - ] - ], "content-security-policy/blink-contrib/object-src-no-url-allowed.sub.html": [ [ "/content-security-policy/blink-contrib/object-src-no-url-allowed.sub.html", @@ -326444,6 +329055,18 @@ {} ] ], + "content-security-policy/inheritance/iframe.html": [ + [ + "/content-security-policy/inheritance/iframe.html", + {} + ] + ], + "content-security-policy/inheritance/window.html": [ + [ + "/content-security-policy/inheritance/window.html", + {} + ] + ], "content-security-policy/inside-worker/dedicated-inheritance.html": [ [ "/content-security-policy/inside-worker/dedicated-inheritance.html", @@ -326534,6 +329157,12 @@ {} ] ], + "content-security-policy/navigation/javascript-url-navigation-inherits-csp.html": [ + [ + "/content-security-policy/navigation/javascript-url-navigation-inherits-csp.html", + {} + ] + ], "content-security-policy/navigation/to-javascript-url-frame-src.html": [ [ "/content-security-policy/navigation/to-javascript-url-frame-src.html", @@ -326592,6 +329221,12 @@ {} ] ], + "content-security-policy/script-src/javascript-window-open-blocked.html": [ + [ + "/content-security-policy/script-src/javascript-window-open-blocked.html", + {} + ] + ], "content-security-policy/script-src/script-src-1_1.html": [ [ "/content-security-policy/script-src/script-src-1_1.html", @@ -326646,6 +329281,30 @@ {} ] ], + "content-security-policy/script-src/script-src-multiple-policies-multiple-hashing-algorithms.html": [ + [ + "/content-security-policy/script-src/script-src-multiple-policies-multiple-hashing-algorithms.html", + {} + ] + ], + "content-security-policy/script-src/script-src-multiple-policies-one-using-hashing-algorithms.html": [ + [ + "/content-security-policy/script-src/script-src-multiple-policies-one-using-hashing-algorithms.html", + {} + ] + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-external-hash-policy.html": [ + [ + "/content-security-policy/script-src/script-src-report-only-policy-works-with-external-hash-policy.html", + {} + ] + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-hash-policy.html": [ + [ + "/content-security-policy/script-src/script-src-report-only-policy-works-with-hash-policy.html", + {} + ] + ], "content-security-policy/script-src/script-src-sri_hash.sub.html": [ [ "/content-security-policy/script-src/script-src-sri_hash.sub.html", @@ -326748,6 +329407,12 @@ {} ] ], + "content-security-policy/script-src/script-src-strict_dynamic_worker-importScripts.https.html": [ + [ + "/content-security-policy/script-src/script-src-strict_dynamic_worker-importScripts.https.html", + {} + ] + ], "content-security-policy/script-src/script-src-strict_dynamic_worker.https.html": [ [ "/content-security-policy/script-src/script-src-strict_dynamic_worker.https.html", @@ -326958,6 +329623,12 @@ {} ] ], + "content-security-policy/style-src/style-src-multiple-policies-multiple-hashing-algorithms.html": [ + [ + "/content-security-policy/style-src/style-src-multiple-policies-multiple-hashing-algorithms.html", + {} + ] + ], "content-security-policy/style-src/style-src-none-blocked.html": [ [ "/content-security-policy/style-src/style-src-none-blocked.html", @@ -327012,6 +329683,24 @@ {} ] ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_allowed.html": [ + [ + "/content-security-policy/unsafe-hashed-attributes/script_event_handlers_allowed.html", + {} + ] + ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_matching_hash_no_unsafe_inline_attribute.html": [ + [ + "/content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_matching_hash_no_unsafe_inline_attribute.html", + {} + ] + ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_not_matching_hash.html": [ + [ + "/content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_not_matching_hash.html", + {} + ] + ], "content-security-policy/worker-src/dedicated-child.sub.html": [ [ "/content-security-policy/worker-src/dedicated-child.sub.html", @@ -327114,12 +329803,24 @@ {} ] ], + "cookies/secure/set-from-dom.sub.html": [ + [ + "/cookies/secure/set-from-dom.sub.html", + {} + ] + ], "cookies/secure/set-from-http.https.sub.html": [ [ "/cookies/secure/set-from-http.https.sub.html", {} ] ], + "cookies/secure/set-from-http.sub.html": [ + [ + "/cookies/secure/set-from-http.sub.html", + {} + ] + ], "cookies/secure/set-from-ws.https.sub.html": [ [ "/cookies/secure/set-from-ws.https.sub.html", @@ -327266,12 +329967,30 @@ {} ] ], + "css-cascade/inherit-initial.html": [ + [ + "/css-cascade/inherit-initial.html", + {} + ] + ], "css-font-loading/fontfacesetloadevent-constructor.html": [ [ "/css-font-loading/fontfacesetloadevent-constructor.html", {} ] ], + "css-fonts/variations/font-parse-numeric-stretch-style-weight.html": [ + [ + "/css-fonts/variations/font-parse-numeric-stretch-style-weight.html", + {} + ] + ], + "css-scoping/slotted-parsing.html": [ + [ + "/css-scoping/slotted-parsing.html", + {} + ] + ], "css-timing/cubic-bezier-timing-functions-output.html": [ [ "/css-timing/cubic-bezier-timing-functions-output.html", @@ -327314,12 +330033,6 @@ {} ] ], - "css-values/unset-value-storage.html": [ - [ - "/css-values/unset-value-storage.html", - {} - ] - ], "css/compositing-1/mix-blend-mode/mix-blend-mode-creates-stacking-context.html": [ [ "/css/compositing-1/mix-blend-mode/mix-blend-mode-creates-stacking-context.html", @@ -327368,6 +330081,12 @@ {} ] ], + "css/css-align-3/default-alignment/justify-items-legacy-001.html": [ + [ + "/css/css-align-3/default-alignment/justify-items-legacy-001.html", + {} + ] + ], "css/css-align-3/default-alignment/place-items-shorthand-001.html": [ [ "/css/css-align-3/default-alignment/place-items-shorthand-001.html", @@ -328036,6 +330755,42 @@ {} ] ], + "css/css-flexbox-1/percentage-heights-001.html": [ + [ + "/css/css-flexbox-1/percentage-heights-001.html", + {} + ] + ], + "css/css-flexbox-1/position-absolute-001.html": [ + [ + "/css/css-flexbox-1/position-absolute-001.html", + {} + ] + ], + "css/css-flexbox-1/position-absolute-002.html": [ + [ + "/css/css-flexbox-1/position-absolute-002.html", + {} + ] + ], + "css/css-flexbox-1/position-absolute-003.html": [ + [ + "/css/css-flexbox-1/position-absolute-003.html", + {} + ] + ], + "css/css-flexbox-1/position-absolute-004.html": [ + [ + "/css/css-flexbox-1/position-absolute-004.html", + {} + ] + ], + "css/css-fonts-3/test_datafont_same_origin.html": [ + [ + "/css/css-fonts-3/test_datafont_same_origin.html", + {} + ] + ], "css/css-fonts-3/test_font_family_parsing.html": [ [ "/css/css-fonts-3/test_font_family_parsing.html", @@ -328048,6 +330803,318 @@ {} ] ], + "css/css-grid-1/abspos/absolute-positioning-definite-sizes-001.html": [ + [ + "/css/css-grid-1/abspos/absolute-positioning-definite-sizes-001.html", + {} + ] + ], + "css/css-grid-1/abspos/absolute-positioning-grid-container-containing-block-001.html": [ + [ + "/css/css-grid-1/abspos/absolute-positioning-grid-container-containing-block-001.html", + {} + ] + ], + "css/css-grid-1/abspos/absolute-positioning-grid-container-parent-001.html": [ + [ + "/css/css-grid-1/abspos/absolute-positioning-grid-container-parent-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-content-alignment-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-content-alignment-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-content-alignment-rtl-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-content-alignment-rtl-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-gaps-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-gaps-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-gaps-rtl-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-gaps-rtl-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-implicit-grid-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-implicit-grid-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-implicit-grid-line-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-implicit-grid-line-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-padding-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-padding-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-unknown-named-grid-line-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-unknown-named-grid-line-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-positioned-items-within-grid-implicit-track-001.html": [ + [ + "/css/css-grid-1/abspos/grid-positioned-items-within-grid-implicit-track-001.html", + {} + ] + ], + "css/css-grid-1/abspos/grid-sizing-positioned-items-001.html": [ + [ + "/css/css-grid-1/abspos/grid-sizing-positioned-items-001.html", + {} + ] + ], + "css/css-grid-1/abspos/positioned-grid-items-should-not-create-implicit-tracks-001.html": [ + [ + "/css/css-grid-1/abspos/positioned-grid-items-should-not-create-implicit-tracks-001.html", + {} + ] + ], + "css/css-grid-1/abspos/positioned-grid-items-should-not-take-up-space-001.html": [ + [ + "/css/css-grid-1/abspos/positioned-grid-items-should-not-take-up-space-001.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-001.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-001.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-002.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-002.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-003.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-003.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-004.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-004.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-005.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-005.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-006.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-006.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-007.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-007.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-008.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-008.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-009.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-009.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-010.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-010.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-011.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-011.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-012.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-012.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-013.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-013.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-014.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-014.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-015.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-015.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-016.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-016.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-017.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-017.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-018.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-018.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-019.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-019.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-020.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-020.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-021.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-021.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-022.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-022.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-023.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-023.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-024.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-024.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-025.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-025.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-026.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-026.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-027.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-027.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-028.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-028.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-029.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-029.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-030.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-030.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-031.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-031.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-032.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-032.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-033.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-033.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-034.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-034.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-035.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-035.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-036.html": [ + [ + "/css/css-grid-1/alignment/grid-alignment-implies-size-change-036.html", + {} + ] + ], + "css/css-grid-1/alignment/grid-fit-content-tracks-dont-stretch-001.html": [ + [ + "/css/css-grid-1/alignment/grid-fit-content-tracks-dont-stretch-001.html", + {} + ] + ], "css/css-grid-1/alignment/grid-self-alignment-stretch-001.html": [ [ "/css/css-grid-1/alignment/grid-self-alignment-stretch-001.html", @@ -328372,6 +331439,12 @@ {} ] ], + "css/css-grid-1/grid-definition/grid-shorthand-001.html": [ + [ + "/css/css-grid-1/grid-definition/grid-shorthand-001.html", + {} + ] + ], "css/css-grid-1/grid-definition/grid-support-flexible-lengths-001.html": [ [ "/css/css-grid-1/grid-definition/grid-support-flexible-lengths-001.html", @@ -328432,33 +331505,33 @@ {} ] ], - "css/css-logical-properties-1/logicalprops-block-size-vlr.html": [ + "css/css-logical-1/logicalprops-block-size-vlr.html": [ [ - "/css/css-logical-properties-1/logicalprops-block-size-vlr.html", + "/css/css-logical-1/logicalprops-block-size-vlr.html", {} ] ], - "css/css-logical-properties-1/logicalprops-block-size.html": [ + "css/css-logical-1/logicalprops-block-size.html": [ [ - "/css/css-logical-properties-1/logicalprops-block-size.html", + "/css/css-logical-1/logicalprops-block-size.html", {} ] ], - "css/css-logical-properties-1/logicalprops-inline-size-vlr.html": [ + "css/css-logical-1/logicalprops-inline-size-vlr.html": [ [ - "/css/css-logical-properties-1/logicalprops-inline-size-vlr.html", + "/css/css-logical-1/logicalprops-inline-size-vlr.html", {} ] ], - "css/css-logical-properties-1/logicalprops-inline-size.html": [ + "css/css-logical-1/logicalprops-inline-size.html": [ [ - "/css/css-logical-properties-1/logicalprops-inline-size.html", + "/css/css-logical-1/logicalprops-inline-size.html", {} ] ], - "css/css-logical-properties-1/logicalprops-quirklength.html": [ + "css/css-logical-1/logicalprops-quirklength.html": [ [ - "/css/css-logical-properties-1/logicalprops-quirklength.html", + "/css/css-logical-1/logicalprops-quirklength.html", {} ] ], @@ -328468,6 +331541,18 @@ {} ] ], + "css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html": [ + [ + "/css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html", + {} + ] + ], + "css/css-position-3/position-sticky-offset-top-left.html": [ + [ + "/css/css-position-3/position-sticky-offset-top-left.html", + {} + ] + ], "css/css-position-3/position-sticky-parsing.html": [ [ "/css/css-position-3/position-sticky-parsing.html", @@ -328516,6 +331601,12 @@ {} ] ], + "css/css-shapes-1/basic-shape-circle-ellipse-serialization.html": [ + [ + "/css/css-shapes-1/basic-shape-circle-ellipse-serialization.html", + {} + ] + ], "css/css-shapes-1/shape-outside-invalid-001.html": [ [ "/css/css-shapes-1/shape-outside-invalid-001.html", @@ -329176,6 +332267,348 @@ {} ] ], + "css/css-tables-3/bounding-box-computation-1.html": [ + [ + "/css/css-tables-3/bounding-box-computation-1.html", + {} + ] + ], + "css/css-tables-3/bounding-box-computation-2.html": [ + [ + "/css/css-tables-3/bounding-box-computation-2.html", + {} + ] + ], + "css/css-tables-3/bounding-box-computation-3.html": [ + [ + "/css/css-tables-3/bounding-box-computation-3.html", + {} + ] + ], + "css/css-tables-3/caption-side-1.html": [ + [ + "/css/css-tables-3/caption-side-1.html", + {} + ] + ], + "css/css-tables-3/fixed-layout-1.html": [ + [ + "/css/css-tables-3/fixed-layout-1.html", + {} + ] + ], + "css/css-tables-3/fixed-layout-2.html": [ + [ + "/css/css-tables-3/fixed-layout-2.html", + {} + ] + ], + "css/css-tables-3/fixed-layout-calc-width-001.html": [ + [ + "/css/css-tables-3/fixed-layout-calc-width-001.html", + {} + ] + ], + "css/css-tables-3/fixed-layout-excess-width-distribution-001.html": [ + [ + "/css/css-tables-3/fixed-layout-excess-width-distribution-001.html", + {} + ] + ], + "css/css-tables-3/height-distribution/computing-row-measure-0.html": [ + [ + "/css/css-tables-3/height-distribution/computing-row-measure-0.html", + {} + ] + ], + "css/css-tables-3/height-distribution/computing-row-measure-1.html": [ + [ + "/css/css-tables-3/height-distribution/computing-row-measure-1.html", + {} + ] + ], + "css/css-tables-3/height-distribution/percentage-sizing-of-table-cell-children.html": [ + [ + "/css/css-tables-3/height-distribution/percentage-sizing-of-table-cell-children.html", + {} + ] + ], + "css/css-tables-3/html-to-css-mapping-1.html": [ + [ + "/css/css-tables-3/html-to-css-mapping-1.html", + {} + ] + ], + "css/css-tables-3/html-to-css-mapping-2.html": [ + [ + "/css/css-tables-3/html-to-css-mapping-2.html", + {} + ] + ], + "css/css-tables-3/html5-table-formatting-1.html": [ + [ + "/css/css-tables-3/html5-table-formatting-1.html", + {} + ] + ], + "css/css-tables-3/html5-table-formatting-2.html": [ + [ + "/css/css-tables-3/html5-table-formatting-2.html", + {} + ] + ], + "css/css-tables-3/html5-table-formatting-3.html": [ + [ + "/css/css-tables-3/html5-table-formatting-3.html", + {} + ] + ], + "css/css-tables-3/html5-table-formatting-fixed-layout-1.html": [ + [ + "/css/css-tables-3/html5-table-formatting-fixed-layout-1.html", + {} + ] + ], + "css/css-tables-3/table-model-fixup-2.html": [ + [ + "/css/css-tables-3/table-model-fixup-2.html", + {} + ] + ], + "css/css-tables-3/table-model-fixup.html": [ + [ + "/css/css-tables-3/table-model-fixup.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-col-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-col-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-col-002.html": [ + [ + "/css/css-tables-3/visibility-collapse-col-002.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-col-003.html": [ + [ + "/css/css-tables-3/visibility-collapse-col-003.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-col-004-dynamic.html": [ + [ + "/css/css-tables-3/visibility-collapse-col-004-dynamic.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-col-005.html": [ + [ + "/css/css-tables-3/visibility-collapse-col-005.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-colspan-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-colspan-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-colspan-002.html": [ + [ + "/css/css-tables-3/visibility-collapse-colspan-002.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-colspan-crash.html": [ + [ + "/css/css-tables-3/visibility-collapse-colspan-crash.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-non-rowcol-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-non-rowcol-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-row-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-row-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-row-002-dynamic.html": [ + [ + "/css/css-tables-3/visibility-collapse-row-002-dynamic.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-row-003-dynamic.html": [ + [ + "/css/css-tables-3/visibility-collapse-row-003-dynamic.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-row-group-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-row-group-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-row-group-002.html": [ + [ + "/css/css-tables-3/visibility-collapse-row-group-002.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowcol-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowcol-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowcol-002.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowcol-002.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-001.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-001.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-002-border-separate.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-002-border-separate.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-002.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-002.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-003-border-separate.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-003-border-separate.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-003.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-003.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-004-dynamic.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-004-dynamic.html", + {} + ] + ], + "css/css-tables-3/visibility-collapse-rowspan-crash.html": [ + [ + "/css/css-tables-3/visibility-collapse-rowspan-crash.html", + {} + ] + ], + "css/css-tables-3/visibility-hidden-col-001.html": [ + [ + "/css/css-tables-3/visibility-hidden-col-001.html", + {} + ] + ], + "css/css-tables-3/visibility-hidden-nested-001.html": [ + [ + "/css/css-tables-3/visibility-hidden-nested-001.html", + {} + ] + ], + "css/css-tables-3/visibility-hidden-nested-002.html": [ + [ + "/css/css-tables-3/visibility-hidden-nested-002.html", + {} + ] + ], + "css/css-tables-3/visibility-hidden-row-001.html": [ + [ + "/css/css-tables-3/visibility-hidden-row-001.html", + {} + ] + ], + "css/css-tables-3/visibility-hidden-row-002.html": [ + [ + "/css/css-tables-3/visibility-hidden-row-002.html", + {} + ] + ], + "css/css-tables-3/width-distribution/computing-column-measure-0.html": [ + [ + "/css/css-tables-3/width-distribution/computing-column-measure-0.html", + {} + ] + ], + "css/css-tables-3/width-distribution/computing-column-measure-1.html": [ + [ + "/css/css-tables-3/width-distribution/computing-column-measure-1.html", + {} + ] + ], + "css/css-tables-3/width-distribution/computing-table-width-0.html": [ + [ + "/css/css-tables-3/width-distribution/computing-table-width-0.html", + {} + ] + ], + "css/css-tables-3/width-distribution/computing-table-width-1.html": [ + [ + "/css/css-tables-3/width-distribution/computing-table-width-1.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-1.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-1.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-2.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-2.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-guess.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-min-content-guess.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-percent-guess.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-min-content-percent-guess.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.1.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.1.html", + {} + ] + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.html": [ + [ + "/css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.html", + {} + ] + ], "css/css-text-3/i18n/css3-text-line-break-baspglwj-001.html": [ [ "/css/css-text-3/i18n/css3-text-line-break-baspglwj-001.html", @@ -330046,6 +333479,24 @@ {} ] ], + "css/css-transforms-2/animation/rotate-interpolation.html": [ + [ + "/css/css-transforms-2/animation/rotate-interpolation.html", + {} + ] + ], + "css/css-transforms-2/animation/scale-interpolation.html": [ + [ + "/css/css-transforms-2/animation/scale-interpolation.html", + {} + ] + ], + "css/css-transforms-2/animation/translate-interpolation.html": [ + [ + "/css/css-transforms-2/animation/translate-interpolation.html", + {} + ] + ], "css/css-transforms-2/parsing/rotate-parsing-invalid.html": [ [ "/css/css-transforms-2/parsing/rotate-parsing-invalid.html", @@ -330082,6 +333533,12 @@ {} ] ], + "css/css-transforms-2/transforms-support-calc.html": [ + [ + "/css/css-transforms-2/transforms-support-calc.html", + {} + ] + ], "css/css-transitions-1/before-DOMContentLoaded-001.html": [ [ "/css/css-transitions-1/before-DOMContentLoaded-001.html", @@ -330316,12 +333773,30 @@ {} ] ], + "css/css-ui-3/text-overflow-023.html": [ + [ + "/css/css-ui-3/text-overflow-023.html", + {} + ] + ], + "css/css-values-3/absolute-length-units-001.html": [ + [ + "/css/css-values-3/absolute-length-units-001.html", + {} + ] + ], "css/css-values-3/calc-unit-analysis.html": [ [ "/css/css-values-3/calc-unit-analysis.html", {} ] ], + "css/css-values-3/unset-value-storage.html": [ + [ + "/css/css-values-3/unset-value-storage.html", + {} + ] + ], "css/css-values-3/viewport-relative-lengths-scaled-viewport.html": [ [ "/css/css-values-3/viewport-relative-lengths-scaled-viewport.html", @@ -330904,6 +334379,24 @@ {} ] ], + "css/css-writing-modes-3/wm-propagation-body-computed-root.html": [ + [ + "/css/css-writing-modes-3/wm-propagation-body-computed-root.html", + {} + ] + ], + "css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-lr.html": [ + [ + "/css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-lr.html", + {} + ] + ], + "css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-rl.html": [ + [ + "/css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-rl.html", + {} + ] + ], "css/css-writing-modes-3/writing-mode-parsing-001.html": [ [ "/css/css-writing-modes-3/writing-mode-parsing-001.html", @@ -331204,6 +334697,12 @@ {} ] ], + "css/geometry-1/DOMMatrix-attributes.html": [ + [ + "/css/geometry-1/DOMMatrix-attributes.html", + {} + ] + ], "css/geometry-1/DOMMatrix-css-string.worker.js": [ [ "/css/geometry-1/DOMMatrix-css-string.worker.html", @@ -331222,6 +334721,12 @@ {} ] ], + "css/geometry-1/DOMMatrix2DInit-validate-fixup.html": [ + [ + "/css/geometry-1/DOMMatrix2DInit-validate-fixup.html", + {} + ] + ], "css/geometry-1/DOMMatrixInit-validate-fixup.html": [ [ "/css/geometry-1/DOMMatrixInit-validate-fixup.html", @@ -331258,6 +334763,18 @@ {} ] ], + "css/geometry-1/DOMRect-002.html": [ + [ + "/css/geometry-1/DOMRect-002.html", + {} + ] + ], + "css/geometry-1/DOMRectList.html": [ + [ + "/css/geometry-1/DOMRectList.html", + {} + ] + ], "css/geometry-1/WebKitCSSMatrix.html": [ [ "/css/geometry-1/WebKitCSSMatrix.html", @@ -331288,6 +334805,12 @@ {} ] ], + "css/geometry-1/spec-examples.html": [ + [ + "/css/geometry-1/spec-examples.html", + {} + ] + ], "css/geometry-1/structured-serialization.html": [ [ "/css/geometry-1/structured-serialization.html", @@ -331300,6 +334823,36 @@ {} ] ], + "css/motion-1/animation/offset-anchor-interpolation.html": [ + [ + "/css/motion-1/animation/offset-anchor-interpolation.html", + {} + ] + ], + "css/motion-1/animation/offset-distance-interpolation.html": [ + [ + "/css/motion-1/animation/offset-distance-interpolation.html", + {} + ] + ], + "css/motion-1/animation/offset-position-interpolation.html": [ + [ + "/css/motion-1/animation/offset-position-interpolation.html", + {} + ] + ], + "css/motion-1/animation/offset-rotate-interpolation.html": [ + [ + "/css/motion-1/animation/offset-rotate-interpolation.html", + {} + ] + ], + "css/motion-1/offset-supports-calc.html": [ + [ + "/css/motion-1/offset-supports-calc.html", + {} + ] + ], "css/motion-1/parsing/offset-anchor-parsing-invalid.html": [ [ "/css/motion-1/parsing/offset-anchor-parsing-invalid.html", @@ -331396,6 +334949,12 @@ {} ] ], + "cssom-view/DOMRectList.html": [ + [ + "/cssom-view/DOMRectList.html", + {} + ] + ], "cssom-view/HTMLBody-ScrollArea_quirksmode.html": [ [ "/cssom-view/HTMLBody-ScrollArea_quirksmode.html", @@ -331432,6 +334991,12 @@ {} ] ], + "cssom-view/cssom-getClientRects-002.html": [ + [ + "/cssom-view/cssom-getClientRects-002.html", + {} + ] + ], "cssom-view/cssom-getClientRects.html": [ [ "/cssom-view/cssom-getClientRects.html", @@ -331468,6 +335033,18 @@ {} ] ], + "cssom-view/elementFromPoint-002.html": [ + [ + "/cssom-view/elementFromPoint-002.html", + {} + ] + ], + "cssom-view/elementFromPoint-003.html": [ + [ + "/cssom-view/elementFromPoint-003.html", + {} + ] + ], "cssom-view/elementFromPoint.html": [ [ "/cssom-view/elementFromPoint.html", @@ -331486,6 +335063,42 @@ {} ] ], + "cssom-view/elementsFromPoint-iframes.html": [ + [ + "/cssom-view/elementsFromPoint-iframes.html", + {} + ] + ], + "cssom-view/elementsFromPoint-invalid-cases.html": [ + [ + "/cssom-view/elementsFromPoint-invalid-cases.html", + {} + ] + ], + "cssom-view/elementsFromPoint-shadowroot.html": [ + [ + "/cssom-view/elementsFromPoint-shadowroot.html", + {} + ] + ], + "cssom-view/elementsFromPoint-simple.html": [ + [ + "/cssom-view/elementsFromPoint-simple.html", + {} + ] + ], + "cssom-view/elementsFromPoint-svg.html": [ + [ + "/cssom-view/elementsFromPoint-svg.html", + {} + ] + ], + "cssom-view/elementsFromPoint-table.html": [ + [ + "/cssom-view/elementsFromPoint-table.html", + {} + ] + ], "cssom-view/elementsFromPoint.html": [ [ "/cssom-view/elementsFromPoint.html", @@ -331504,6 +335117,12 @@ {} ] ], + "cssom-view/interfaces.html": [ + [ + "/cssom-view/interfaces.html", + {} + ] + ], "cssom-view/matchMedia.xht": [ [ "/cssom-view/matchMedia.xht", @@ -331582,15 +335201,15 @@ {} ] ], - "cssom-view/ttwf-js-cssomview-getclientrects-length.html": [ + "cssom-view/scrollintoview.html": [ [ - "/cssom-view/ttwf-js-cssomview-getclientrects-length.html", + "/cssom-view/scrollintoview.html", {} ] ], - "cssom-view/ttwf-scrollintoview.html": [ + "cssom-view/ttwf-js-cssomview-getclientrects-length.html": [ [ - "/cssom-view/ttwf-scrollintoview.html", + "/cssom-view/ttwf-js-cssomview-getclientrects-length.html", {} ] ], @@ -331672,9 +335291,9 @@ {} ] ], - "cssom/MediaList.xhtml": [ + "cssom/MediaList2.xhtml": [ [ - "/cssom/MediaList.xhtml", + "/cssom/MediaList2.xhtml", {} ] ], @@ -331732,6 +335351,12 @@ {} ] ], + "cssom/cssom-ruleTypeAndOrder.html": [ + [ + "/cssom/cssom-ruleTypeAndOrder.html", + {} + ] + ], "cssom/cssom-setProperty-shorthand.html": [ [ "/cssom/cssom-setProperty-shorthand.html", @@ -331780,12 +335405,6 @@ {} ] ], - "cssom/index-003.html": [ - [ - "/cssom/index-003.html", - {} - ] - ], "cssom/inline-style-001.html": [ [ "/cssom/inline-style-001.html", @@ -331990,6 +335609,12 @@ {} ] ], + "custom-elements/historical.html": [ + [ + "/custom-elements/historical.html", + {} + ] + ], "custom-elements/htmlconstructor/newtarget.html": [ [ "/custom-elements/htmlconstructor/newtarget.html", @@ -332218,6 +335843,16 @@ {} ] ], + "dom/abort/event.any.js": [ + [ + "/dom/abort/event.any.html", + {} + ], + [ + "/dom/abort/event.any.worker.html", + {} + ] + ], "dom/collections/HTMLCollection-as-proto-length-get-throws.html": [ [ "/dom/collections/HTMLCollection-as-proto-length-get-throws.html", @@ -332428,6 +336063,18 @@ {} ] ], + "dom/events/Event-timestamp-high-resolution.html": [ + [ + "/dom/events/Event-timestamp-high-resolution.html", + {} + ] + ], + "dom/events/Event-timestamp-safe-resolution.html": [ + [ + "/dom/events/Event-timestamp-safe-resolution.html", + {} + ] + ], "dom/events/Event-type-empty.html": [ [ "/dom/events/Event-type-empty.html", @@ -332476,6 +336123,16 @@ {} ] ], + "dom/events/EventTarget-constructible.any.js": [ + [ + "/dom/events/EventTarget-constructible.any.html", + {} + ], + [ + "/dom/events/EventTarget-constructible.any.worker.html", + {} + ] + ], "dom/events/EventTarget-dispatchEvent-returnvalue.html": [ [ "/dom/events/EventTarget-dispatchEvent-returnvalue.html", @@ -332694,12 +336351,6 @@ {} ] ], - "dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html": [ - [ - "/dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html", - {} - ] - ], "dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html": [ [ "/dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html", @@ -334076,6 +337727,12 @@ {} ] ], + "domparsing/innerhtml-mxss.sub.html": [ + [ + "/domparsing/innerhtml-mxss.sub.html", + {} + ] + ], "domparsing/insert-adjacent.html": [ [ "/domparsing/insert-adjacent.html", @@ -334136,9 +337793,9 @@ {} ] ], - "domxpath/interfaces.html": [ + "domxpath/interfaces.tentative.html": [ [ - "/domxpath/interfaces.html", + "/domxpath/interfaces.tentative.html", {} ] ], @@ -334244,6 +337901,12 @@ {} ] ], + "editing/run/insert-list-items-in-table-cell.html": [ + [ + "/editing/run/insert-list-items-in-table-cell.html", + {} + ] + ], "editing/run/inserthorizontalrule.html": [ [ "/editing/run/inserthorizontalrule.html", @@ -335034,6 +338697,12 @@ } ] ], + "encoding/replacement-encodings.html": [ + [ + "/encoding/replacement-encodings.html", + {} + ] + ], "encoding/single-byte-decoder.html": [ [ "/encoding/single-byte-decoder.html", @@ -335112,6 +338781,18 @@ {} ] ], + "encoding/unsupported-encodings.html": [ + [ + "/encoding/unsupported-encodings.html", + {} + ] + ], + "encoding/utf-32.html": [ + [ + "/encoding/utf-32.html", + {} + ] + ], "encrypted-media/clearkey-check-initdata-type.html": [ [ "/encrypted-media/clearkey-check-initdata-type.html", @@ -335770,12 +339451,24 @@ } ] ], + "encrypted-media/encrypted-media-default-feature-policy.https.sub.html": [ + [ + "/encrypted-media/encrypted-media-default-feature-policy.https.sub.html", + {} + ] + ], "encrypted-media/idlharness.html": [ [ "/encrypted-media/idlharness.html", {} ] ], + "entries-api/interfaces.html": [ + [ + "/entries-api/interfaces.html", + {} + ] + ], "eventsource/dedicated-worker/eventsource-close.htm": [ [ "/eventsource/dedicated-worker/eventsource-close.htm", @@ -335978,6 +339671,12 @@ {} ] ], + "eventsource/format-field-id-null.htm": [ + [ + "/eventsource/format-field-id-null.htm", + {} + ] + ], "eventsource/format-field-id.htm": [ [ "/eventsource/format-field-id.htm", @@ -336148,6 +339847,70 @@ {} ] ], + "feature-policy/payment-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + [ + "/feature-policy/payment-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html", + {} + ] + ], + "feature-policy/payment-allowed-by-feature-policy-attribute.https.sub.html": [ + [ + "/feature-policy/payment-allowed-by-feature-policy-attribute.https.sub.html", + {} + ] + ], + "feature-policy/payment-allowed-by-feature-policy.https.sub.html": [ + [ + "/feature-policy/payment-allowed-by-feature-policy.https.sub.html", + {} + ] + ], + "feature-policy/payment-default-feature-policy.https.sub.html": [ + [ + "/feature-policy/payment-default-feature-policy.https.sub.html", + {} + ] + ], + "feature-policy/payment-disabled-by-feature-policy.https.sub.html": [ + [ + "/feature-policy/payment-disabled-by-feature-policy.https.sub.html", + {} + ] + ], + "fetch/api/abort/cache.https.html": [ + [ + "/fetch/api/abort/cache.https.html", + {} + ] + ], + "fetch/api/abort/general-serviceworker.https.html": [ + [ + "/fetch/api/abort/general-serviceworker.https.html", + {} + ] + ], + "fetch/api/abort/general-sharedworker.html": [ + [ + "/fetch/api/abort/general-sharedworker.html", + {} + ] + ], + "fetch/api/abort/general.any.js": [ + [ + "/fetch/api/abort/general.any.html", + {} + ], + [ + "/fetch/api/abort/general.any.worker.html", + {} + ] + ], + "fetch/api/abort/serviceworker-intercepted.https.html": [ + [ + "/fetch/api/abort/serviceworker-intercepted.https.html", + {} + ] + ], "fetch/api/basic/accept-header.any.js": [ [ "/fetch/api/basic/accept-header.any.html", @@ -336430,6 +340193,16 @@ {} ] ], + "fetch/api/cors/cors-preflight-cache.any.js": [ + [ + "/fetch/api/cors/cors-preflight-cache.any.html", + {} + ], + [ + "/fetch/api/cors/cors-preflight-cache.any.worker.html", + {} + ] + ], "fetch/api/cors/cors-preflight-redirect.any.js": [ [ "/fetch/api/cors/cors-preflight-redirect.any.html", @@ -336910,6 +340683,18 @@ {} ] ], + "fetch/api/request/request-type-attribute-historical.html": [ + [ + "/fetch/api/request/request-type-attribute-historical.html", + {} + ] + ], + "fetch/api/request/url-encoding.html": [ + [ + "/fetch/api/request/url-encoding.html", + {} + ] + ], "fetch/api/response/multi-globals/url-parsing.html": [ [ "/fetch/api/response/multi-globals/url-parsing.html", @@ -337012,6 +340797,12 @@ {} ] ], + "fetch/api/response/response-stream-disturbed-6.html": [ + [ + "/fetch/api/response/response-stream-disturbed-6.html", + {} + ] + ], "fetch/api/response/response-trailer.html": [ [ "/fetch/api/response/response-trailer.html", @@ -337110,6 +340901,12 @@ {} ] ], + "fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html": [ + [ + "/fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html", + {} + ] + ], "fetch/security/dangling-markup-mitigation.tentative.html": [ [ "/fetch/security/dangling-markup-mitigation.tentative.html", @@ -337134,6 +340931,12 @@ {} ] ], + "fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html": [ + [ + "/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html", + {} + ] + ], "fullscreen/api/document-fullscreen-enabled.html": [ [ "/fullscreen/api/document-fullscreen-enabled.html", @@ -337176,9 +340979,9 @@ {} ] ], - "generic-sensor/idlharness.html": [ + "generic-sensor/idlharness.https.html": [ [ - "/generic-sensor/idlharness.html", + "/generic-sensor/idlharness.https.html", {} ] ], @@ -337286,9 +341089,21 @@ {} ] ], - "hr-time/window-worker-time-origin.html": [ + "hr-time/timeOrigin.html": [ [ - "/hr-time/window-worker-time-origin.html", + "/hr-time/timeOrigin.html", + {} + ] + ], + "hr-time/timing-attack.html": [ + [ + "/hr-time/timing-attack.html", + {} + ] + ], + "hr-time/window-worker-timeOrigin.window.js": [ + [ + "/hr-time/window-worker-timeOrigin.window.html", {} ] ], @@ -337434,6 +341249,42 @@ {} ] ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html", + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html", + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html", + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html", + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html", + {} + ] + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html": [ + [ + "/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html", + {} + ] + ], "html/browsers/browsing-the-web/navigating-across-documents/001.html": [ [ "/html/browsers/browsing-the-web/navigating-across-documents/001.html", @@ -337670,6 +341521,18 @@ } ] ], + "html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html": [ + [ + "/html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html", + {} + ] + ], + "html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html": [ + [ + "/html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html", + {} + ] + ], "html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html": [ [ "/html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html", @@ -338004,6 +341867,12 @@ {} ] ], + "html/browsers/history/the-history-interface/history_properties_only_fully_active.html": [ + [ + "/html/browsers/history/the-history-interface/history_properties_only_fully_active.html", + {} + ] + ], "html/browsers/history/the-history-interface/history_pushstate.html": [ [ "/html/browsers/history/the-history-interface/history_pushstate.html", @@ -338364,6 +342233,12 @@ {} ] ], + "html/browsers/offline/appcache/workers/appcache-worker.html": [ + [ + "/html/browsers/offline/appcache/workers/appcache-worker.html", + {} + ] + ], "html/browsers/offline/application-cache-api/api_status_idle.html": [ [ "/html/browsers/offline/application-cache-api/api_status_idle.html", @@ -340096,6 +343971,12 @@ {} ] ], + "html/dom/historical.html": [ + [ + "/html/dom/historical.html", + {} + ] + ], "html/dom/interfaces.html": [ [ "/html/dom/interfaces.html", @@ -340312,6 +344193,12 @@ {} ] ], + "html/editing/focus/tabindex-focus-flag.html": [ + [ + "/html/editing/focus/tabindex-focus-flag.html", + {} + ] + ], "html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html": [ [ "/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html", @@ -340470,6 +344357,12 @@ {} ] ], + "html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html": [ + [ + "/html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html", + {} + ] + ], "html/infrastructure/terminology/plugins/text-plain.html": [ [ "/html/infrastructure/terminology/plugins/text-plain.html", @@ -340852,12 +344745,6 @@ {} ] ], - "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html": [ - [ - "/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html", - {} - ] - ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/not-in-shadow-tree.html": [ [ "/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/not-in-shadow-tree.html", @@ -340867,6 +344754,14 @@ "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html": [ [ "/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html": [ + [ + "/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html", {} ] ], @@ -340906,6 +344801,30 @@ {} ] ], + "html/semantics/document-metadata/the-style-element/style_media_change.html": [ + [ + "/html/semantics/document-metadata/the-style-element/style_media_change.html", + {} + ] + ], + "html/semantics/document-metadata/the-style-element/style_non_matching_media.html": [ + [ + "/html/semantics/document-metadata/the-style-element/style_non_matching_media.html", + {} + ] + ], + "html/semantics/document-metadata/the-style-element/style_type.html": [ + [ + "/html/semantics/document-metadata/the-style-element/style_type.html", + {} + ] + ], + "html/semantics/document-metadata/the-style-element/style_type_change.html": [ + [ + "/html/semantics/document-metadata/the-style-element/style_type_change.html", + {} + ] + ], "html/semantics/document-metadata/the-title-element/title.text-01.html": [ [ "/html/semantics/document-metadata/the-title-element/title.text-01.html", @@ -342036,6 +345955,18 @@ {} ] ], + "html/semantics/embedded-content/media-elements/track/track-element/track-cue-order.html": [ + [ + "/html/semantics/embedded-content/media-elements/track/track-element/track-cue-order.html", + {} + ] + ], + "html/semantics/embedded-content/media-elements/track/track-element/track-data-url.html": [ + [ + "/html/semantics/embedded-content/media-elements/track/track-element/track-data-url.html", + {} + ] + ], "html/semantics/embedded-content/media-elements/user-interface/muted.html": [ [ "/html/semantics/embedded-content/media-elements/user-interface/muted.html", @@ -342920,12 +346851,54 @@ {} ] ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html", + {} + ] + ], "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation_by_user_activation_without_user_gesture.html": [ [ "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation_by_user_activation_without_user_gesture.html", {} ] ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-1.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-1.html", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-2.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-2.html", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_itself.html": [ + [ + "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_itself.html", + {} + ] + ], "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_popups_escaping-1.html": [ [ "/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_popups_escaping-1.html", @@ -342992,12 +346965,152 @@ {} ] ], + "html/semantics/embedded-content/the-iframe-element/sandbox_001.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_001.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_002.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_002.htm", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_005.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_005.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_011.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_011.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_012.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_012.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_013.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_013.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_014.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_014.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_015.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_015.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_016.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_016.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_017.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_017.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_018.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_018.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_019.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_019.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_023.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_023.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_024.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_024.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_025.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_025.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_026.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_026.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_027.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_027.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_028.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_028.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_029.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_029.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_030.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_030.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_031.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_031.htm", + {} + ] + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_032.htm": [ + [ + "/html/semantics/embedded-content/the-iframe-element/sandbox_032.htm", + {} + ] + ], "html/semantics/embedded-content/the-img-element/Image-constructor.html": [ [ "/html/semantics/embedded-content/the-img-element/Image-constructor.html", {} ] ], + "html/semantics/embedded-content/the-img-element/adoption.html": [ + [ + "/html/semantics/embedded-content/the-img-element/adoption.html", + {} + ] + ], "html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html": [ [ "/html/semantics/embedded-content/the-img-element/current-pixel-density/basic.html", @@ -343016,6 +347129,60 @@ {} ] ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode.html": [ + [ + "/html/semantics/embedded-content/the-img-element/decode/image-decode.html", + { + "timeout": "long" + } + ] + ], + "html/semantics/embedded-content/the-img-element/delay-load-event-detached.html": [ + [ + "/html/semantics/embedded-content/the-img-element/delay-load-event-detached.html", + {} + ] + ], "html/semantics/embedded-content/the-img-element/delay-load-event.html": [ [ "/html/semantics/embedded-content/the-img-element/delay-load-event.html", @@ -343040,6 +347207,12 @@ {} ] ], + "html/semantics/embedded-content/the-img-element/non-active-document.html": [ + [ + "/html/semantics/embedded-content/the-img-element/non-active-document.html", + {} + ] + ], "html/semantics/embedded-content/the-img-element/nonexistent-image.html": [ [ "/html/semantics/embedded-content/the-img-element/nonexistent-image.html", @@ -343282,6 +347455,12 @@ {} ] ], + "html/semantics/forms/form-control-infrastructure/association.window.js": [ + [ + "/html/semantics/forms/form-control-infrastructure/association.window.html", + {} + ] + ], "html/semantics/forms/form-control-infrastructure/form.html": [ [ "/html/semantics/forms/form-control-infrastructure/form.html", @@ -343306,6 +347485,12 @@ {} ] ], + "html/semantics/forms/form-control-infrastructure/form_owner_and_table_3.html": [ + [ + "/html/semantics/forms/form-control-infrastructure/form_owner_and_table_3.html", + {} + ] + ], "html/semantics/forms/form-submission-0/form-data-set-usv.html": [ [ "/html/semantics/forms/form-submission-0/form-data-set-usv.html", @@ -343318,6 +347503,12 @@ {} ] ], + "html/semantics/forms/form-submission-0/submission-checks.window.js": [ + [ + "/html/semantics/forms/form-submission-0/submission-checks.window.html", + {} + ] + ], "html/semantics/forms/form-submission-0/submit-entity-body.html": [ [ "/html/semantics/forms/form-submission-0/submit-entity-body.html", @@ -343426,6 +347617,12 @@ {} ] ], + "html/semantics/forms/the-button-element/button-checkvalidity.html": [ + [ + "/html/semantics/forms/the-button-element/button-checkvalidity.html", + {} + ] + ], "html/semantics/forms/the-button-element/button-click-submits.html": [ [ "/html/semantics/forms/the-button-element/button-click-submits.html", @@ -343438,12 +347635,24 @@ {} ] ], + "html/semantics/forms/the-button-element/button-labels.html": [ + [ + "/html/semantics/forms/the-button-element/button-labels.html", + {} + ] + ], "html/semantics/forms/the-button-element/button-menu-historical.html": [ [ "/html/semantics/forms/the-button-element/button-menu-historical.html", {} ] ], + "html/semantics/forms/the-button-element/button-setcustomvalidity.html": [ + [ + "/html/semantics/forms/the-button-element/button-setcustomvalidity.html", + {} + ] + ], "html/semantics/forms/the-button-element/button-type.html": [ [ "/html/semantics/forms/the-button-element/button-type.html", @@ -343456,6 +347665,24 @@ {} ] ], + "html/semantics/forms/the-button-element/button-validationmessage.html": [ + [ + "/html/semantics/forms/the-button-element/button-validationmessage.html", + {} + ] + ], + "html/semantics/forms/the-button-element/button-validity.html": [ + [ + "/html/semantics/forms/the-button-element/button-validity.html", + {} + ] + ], + "html/semantics/forms/the-button-element/button-willvalidate.html": [ + [ + "/html/semantics/forms/the-button-element/button-willvalidate.html", + {} + ] + ], "html/semantics/forms/the-datalist-element/datalistoptions.html": [ [ "/html/semantics/forms/the-datalist-element/datalistoptions.html", @@ -343480,6 +347707,36 @@ {} ] ], + "html/semantics/forms/the-fieldset-element/fieldset-checkvalidity.html": [ + [ + "/html/semantics/forms/the-fieldset-element/fieldset-checkvalidity.html", + {} + ] + ], + "html/semantics/forms/the-fieldset-element/fieldset-setcustomvalidity.html": [ + [ + "/html/semantics/forms/the-fieldset-element/fieldset-setcustomvalidity.html", + {} + ] + ], + "html/semantics/forms/the-fieldset-element/fieldset-validationmessage.html": [ + [ + "/html/semantics/forms/the-fieldset-element/fieldset-validationmessage.html", + {} + ] + ], + "html/semantics/forms/the-fieldset-element/fieldset-validity.html": [ + [ + "/html/semantics/forms/the-fieldset-element/fieldset-validity.html", + {} + ] + ], + "html/semantics/forms/the-fieldset-element/fieldset-willvalidate.html": [ + [ + "/html/semantics/forms/the-fieldset-element/fieldset-willvalidate.html", + {} + ] + ], "html/semantics/forms/the-form-element/form-action-reflection-with-base-url.html": [ [ "/html/semantics/forms/the-form-element/form-action-reflection-with-base-url.html", @@ -343504,12 +347761,24 @@ {} ] ], + "html/semantics/forms/the-form-element/form-action.html": [ + [ + "/html/semantics/forms/the-form-element/form-action.html", + {} + ] + ], "html/semantics/forms/the-form-element/form-autocomplete.html": [ [ "/html/semantics/forms/the-form-element/form-autocomplete.html", {} ] ], + "html/semantics/forms/the-form-element/form-checkvalidity.html": [ + [ + "/html/semantics/forms/the-form-element/form-checkvalidity.html", + {} + ] + ], "html/semantics/forms/the-form-element/form-elements-filter.html": [ [ "/html/semantics/forms/the-form-element/form-elements-filter.html", @@ -343552,6 +347821,12 @@ {} ] ], + "html/semantics/forms/the-form-element/form-length.html": [ + [ + "/html/semantics/forms/the-form-element/form-length.html", + {} + ] + ], "html/semantics/forms/the-form-element/form-nameditem.html": [ [ "/html/semantics/forms/the-form-element/form-nameditem.html", @@ -343636,6 +347911,42 @@ {} ] ], + "html/semantics/forms/the-input-element/input-checkvalidity.html": [ + [ + "/html/semantics/forms/the-input-element/input-checkvalidity.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-height.html": [ + [ + "/html/semantics/forms/the-input-element/input-height.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-labels.html": [ + [ + "/html/semantics/forms/the-input-element/input-labels.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-setcustomvalidity.html": [ + [ + "/html/semantics/forms/the-input-element/input-setcustomvalidity.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-stepdown.html": [ + [ + "/html/semantics/forms/the-input-element/input-stepdown.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-stepup.html": [ + [ + "/html/semantics/forms/the-input-element/input-stepup.html", + {} + ] + ], "html/semantics/forms/the-input-element/input-type-button.html": [ [ "/html/semantics/forms/the-input-element/input-type-button.html", @@ -343648,6 +347959,48 @@ {} ] ], + "html/semantics/forms/the-input-element/input-validationmessage.html": [ + [ + "/html/semantics/forms/the-input-element/input-validationmessage.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-validity.html": [ + [ + "/html/semantics/forms/the-input-element/input-validity.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-value-invalidstateerr.html": [ + [ + "/html/semantics/forms/the-input-element/input-value-invalidstateerr.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-valueasdate-invalidstateerr.html": [ + [ + "/html/semantics/forms/the-input-element/input-valueasdate-invalidstateerr.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-valueasnumber-invalidstateerr.html": [ + [ + "/html/semantics/forms/the-input-element/input-valueasnumber-invalidstateerr.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-width.html": [ + [ + "/html/semantics/forms/the-input-element/input-width.html", + {} + ] + ], + "html/semantics/forms/the-input-element/input-willvalidate.html": [ + [ + "/html/semantics/forms/the-input-element/input-willvalidate.html", + {} + ] + ], "html/semantics/forms/the-input-element/maxlength.html": [ [ "/html/semantics/forms/the-input-element/maxlength.html", @@ -343894,6 +348247,12 @@ {} ] ], + "html/semantics/forms/the-progress-element/progress.window.js": [ + [ + "/html/semantics/forms/the-progress-element/progress.window.html", + {} + ] + ], "html/semantics/forms/the-select-element/common-HTMLOptionsCollection-add.html": [ [ "/html/semantics/forms/the-select-element/common-HTMLOptionsCollection-add.html", @@ -343972,6 +348331,12 @@ {} ] ], + "html/semantics/forms/the-textarea-element/value-defaultValue-textContent-xhtml.xhtml": [ + [ + "/html/semantics/forms/the-textarea-element/value-defaultValue-textContent-xhtml.xhtml", + {} + ] + ], "html/semantics/forms/the-textarea-element/value-defaultValue-textContent.html": [ [ "/html/semantics/forms/the-textarea-element/value-defaultValue-textContent.html", @@ -344086,6 +348451,18 @@ {} ] ], + "html/semantics/interactive-elements/the-dialog-element/dialog-autofocus-multiple-times.html": [ + [ + "/html/semantics/interactive-elements/the-dialog-element/dialog-autofocus-multiple-times.html", + {} + ] + ], + "html/semantics/interactive-elements/the-dialog-element/dialog-autofocus.html": [ + [ + "/html/semantics/interactive-elements/the-dialog-element/dialog-autofocus.html", + {} + ] + ], "html/semantics/interactive-elements/the-dialog-element/dialog-close.html": [ [ "/html/semantics/interactive-elements/the-dialog-element/dialog-close.html", @@ -344116,6 +348493,18 @@ {} ] ], + "html/semantics/links/following-hyperlinks/activation-behavior.window.js": [ + [ + "/html/semantics/links/following-hyperlinks/activation-behavior.window.html", + {} + ] + ], + "html/semantics/links/following-hyperlinks/active-document.window.js": [ + [ + "/html/semantics/links/following-hyperlinks/active-document.window.html", + {} + ] + ], "html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_attribute-getter-setter.html": [ [ "/html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_attribute-getter-setter.html", @@ -344206,6 +348595,894 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/execution-timing/001.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/001.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/002.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/002.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/003.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/003.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/004.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/004.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/005.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/005.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/006.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/006.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/007.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/007.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/008.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/008.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/009.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/009.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/010.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/010.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/011.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/011.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/012.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/012.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/013.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/013.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/014.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/014.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/015.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/015.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/015a.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/015a.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/016.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/016.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/017.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/017.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/018.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/018.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/019.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/019.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/020.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/020.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/021.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/021.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/022.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/022.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/023.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/023.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/024.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/024.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/025.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/025.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/026.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/026.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/027.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/027.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/028.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/028.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/029.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/029.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/030.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/030.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/031.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/031.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/032.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/032.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/033.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/033.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/034.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/034.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/035.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/035.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/036.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/036.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/037.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/037.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/038.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/038.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/039.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/039.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/040.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/040.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/041.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/041.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/042.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/042.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/043.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/043.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/044.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/044.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/045.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/045.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/046.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/046.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/047.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/047.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/048.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/048.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/049.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/049.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/050.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/050.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/051.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/051.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/052.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/052.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/053.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/053.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/054.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/054.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/055.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/055.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/056.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/056.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/057.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/057.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/058.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/058.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/059.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/059.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/060.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/060.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/061.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/061.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/062.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/062.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/063.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/063.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/064.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/064.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/065.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/065.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/066.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/066.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/067.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/067.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/068.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/068.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/069.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/069.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/070.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/070.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/071.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/071.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/072.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/072.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/073.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/073.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/074.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/074.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/075.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/075.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/076.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/076.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/077.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/077.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/078.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/078.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/079.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/079.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/080.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/080.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/081.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/081.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/082.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/082.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/083.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/083.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/084.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/084.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/085.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/085.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/086.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/086.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/087.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/087.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/088.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/088.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/089.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/089.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/090.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/090.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/091.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/091.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/092.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/092.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/094.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/094.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/095.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/095.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/096.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/096.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/097.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/097.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/099.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/099.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/101.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/101.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/103.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/103.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/104.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/104.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/105.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/105.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/106-import.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/106-import.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/106-noimport.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/106-noimport.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/107-import.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/107-import.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/107-noimport.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/107-noimport.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/108.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/108.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/109.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/109.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/110.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/110.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/111.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/111.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/112.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/112.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/113.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/113.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/114.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/114.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/115.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/115.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/116.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/116.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/117.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/117.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/118.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/118.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/119.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/119.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/120.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/120.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/121.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/121.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/122.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/122.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/123.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/123.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/124.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/124.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/125.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/125.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/126.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/126.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/127.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/127.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/128.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/128.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/129.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/129.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/130.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/130.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/131.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/131.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/132.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/132.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/133.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/133.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/134.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/134.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/135.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/135.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/136.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/136.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/137.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/137.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/138.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/138.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/139.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/139.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/140.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/140.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/141.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/141.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/142.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/142.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/143.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/143.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/144.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/144.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/145.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/145.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/146.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/146.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/147.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/147.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/148.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/148.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/execution-timing/149.html": [ + [ + "/html/semantics/scripting-1/the-script-element/execution-timing/149.html", + {} + ] + ], "html/semantics/scripting-1/the-script-element/fetch-src/alpha/base.html": [ [ "/html/semantics/scripting-1/the-script-element/fetch-src/alpha/base.html", @@ -344236,9 +349513,39 @@ {} ] ], - "html/semantics/scripting-1/the-script-element/load-event.html": [ + "html/semantics/scripting-1/the-script-element/load-error-events-1.html": [ [ - "/html/semantics/scripting-1/the-script-element/load-event.html", + "/html/semantics/scripting-1/the-script-element/load-error-events-1.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/load-error-events-2.html": [ + [ + "/html/semantics/scripting-1/the-script-element/load-error-events-2.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/load-error-events-3.html": [ + [ + "/html/semantics/scripting-1/the-script-element/load-error-events-3.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/charset-01.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/charset-01.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/charset-02.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/charset-02.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/charset-03.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/charset-03.html", {} ] ], @@ -344254,6 +349561,12 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/credentials.sub.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/credentials.sub.html", + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/crossorigin.html": [ [ "/html/semantics/scripting-1/the-script-element/module/crossorigin.html", @@ -344266,6 +349579,78 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/custom-element-exception.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/custom-element-exception.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports-error.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports-error.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/inline-event-handler.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/inline-event-handler.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-classic.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-classic.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-module.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-module.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-classic.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-classic.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-module.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-module.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-classic.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-classic.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-module.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-module.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-classic.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-classic.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-module.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-module.html", + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/error-and-slow-dependency.html": [ [ "/html/semantics/scripting-1/the-script-element/module/error-and-slow-dependency.html", @@ -344352,6 +349737,42 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/instantiation-error-4.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/instantiation-error-5.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/instantiation-error-6.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/instantiation-error-7.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-8.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/instantiation-error-8.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/integrity.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/integrity.html", + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/late-namespace-request.html": [ [ "/html/semantics/scripting-1/the-script-element/module/late-namespace-request.html", @@ -344364,6 +349785,24 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/module/load-error-events-inline.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/load-error-events-inline.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/load-error-events.html": [ + [ + "/html/semantics/scripting-1/the-script-element/module/load-error-events.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml": [ + [ + "/html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml", + {} + ] + ], "html/semantics/scripting-1/the-script-element/module/module-vs-script-1.html": [ [ "/html/semantics/scripting-1/the-script-element/module/module-vs-script-1.html", @@ -344490,24 +349929,6 @@ {} ] ], - "html/semantics/scripting-1/the-script-element/script-language-type.html": [ - [ - "/html/semantics/scripting-1/the-script-element/script-language-type.html", - {} - ] - ], - "html/semantics/scripting-1/the-script-element/script-languages-01.html": [ - [ - "/html/semantics/scripting-1/the-script-element/script-languages-01.html", - {} - ] - ], - "html/semantics/scripting-1/the-script-element/script-languages-02.html": [ - [ - "/html/semantics/scripting-1/the-script-element/script-languages-02.html", - {} - ] - ], "html/semantics/scripting-1/the-script-element/script-noembed-noframes-iframe.xhtml": [ [ "/html/semantics/scripting-1/the-script-element/script-noembed-noframes-iframe.xhtml", @@ -344562,6 +349983,24 @@ {} ] ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-empty.html": [ + [ + "/html/semantics/scripting-1/the-script-element/script-type-and-language-empty.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-js.html": [ + [ + "/html/semantics/scripting-1/the-script-element/script-type-and-language-js.html", + {} + ] + ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-with-params.html": [ + [ + "/html/semantics/scripting-1/the-script-element/script-type-and-language-with-params.html", + {} + ] + ], "html/semantics/scripting-1/the-script-element/scripting-enabled.html": [ [ "/html/semantics/scripting-1/the-script-element/scripting-enabled.html", @@ -344652,6 +350091,12 @@ {} ] ], + "html/semantics/scripting-1/the-template-element/template-element/template-content-hierarcy.html": [ + [ + "/html/semantics/scripting-1/the-template-element/template-element/template-content-hierarcy.html", + {} + ] + ], "html/semantics/scripting-1/the-template-element/template-element/template-content-node-document.html": [ [ "/html/semantics/scripting-1/the-template-element/template-element/template-content-node-document.html", @@ -344682,6 +350127,12 @@ {} ] ], + "html/semantics/selectors/pseudo-classes/checked-type-change.html": [ + [ + "/html/semantics/selectors/pseudo-classes/checked-type-change.html", + {} + ] + ], "html/semantics/selectors/pseudo-classes/checked.html": [ [ "/html/semantics/selectors/pseudo-classes/checked.html", @@ -344736,12 +350187,24 @@ {} ] ], + "html/semantics/selectors/pseudo-classes/indeterminate-type-change.html": [ + [ + "/html/semantics/selectors/pseudo-classes/indeterminate-type-change.html", + {} + ] + ], "html/semantics/selectors/pseudo-classes/indeterminate.html": [ [ "/html/semantics/selectors/pseudo-classes/indeterminate.html", {} ] ], + "html/semantics/selectors/pseudo-classes/inrange-outofrange-type-change.html": [ + [ + "/html/semantics/selectors/pseudo-classes/inrange-outofrange-type-change.html", + {} + ] + ], "html/semantics/selectors/pseudo-classes/inrange-outofrange.html": [ [ "/html/semantics/selectors/pseudo-classes/inrange-outofrange.html", @@ -344754,12 +350217,30 @@ {} ] ], + "html/semantics/selectors/pseudo-classes/placeholder-shown-type-change.html": [ + [ + "/html/semantics/selectors/pseudo-classes/placeholder-shown-type-change.html", + {} + ] + ], + "html/semantics/selectors/pseudo-classes/readwrite-readonly-type-change.html": [ + [ + "/html/semantics/selectors/pseudo-classes/readwrite-readonly-type-change.html", + {} + ] + ], "html/semantics/selectors/pseudo-classes/readwrite-readonly.html": [ [ "/html/semantics/selectors/pseudo-classes/readwrite-readonly.html", {} ] ], + "html/semantics/selectors/pseudo-classes/required-optional-hidden.html": [ + [ + "/html/semantics/selectors/pseudo-classes/required-optional-hidden.html", + {} + ] + ], "html/semantics/selectors/pseudo-classes/required-optional.html": [ [ "/html/semantics/selectors/pseudo-classes/required-optional.html", @@ -344793,7 +350274,9 @@ "html/semantics/tabular-data/processing-model-1/span-limits.html": [ [ "/html/semantics/tabular-data/processing-model-1/span-limits.html", - {} + { + "timeout": "long" + } ] ], "html/semantics/tabular-data/the-caption-element/caption_001.html": [ @@ -344940,6 +350423,12 @@ {} ] ], + "html/semantics/text-level-semantics/the-a-element/a-download-click-404.html": [ + [ + "/html/semantics/text-level-semantics/the-a-element/a-download-click-404.html", + {} + ] + ], "html/semantics/text-level-semantics/the-a-element/a-download-click.html": [ [ "/html/semantics/text-level-semantics/the-a-element/a-download-click.html", @@ -346444,78 +351933,6 @@ {} ] ], - "html/webappapis/idle-callbacks/basic.html": [ - [ - "/html/webappapis/idle-callbacks/basic.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-exception.html": [ - [ - "/html/webappapis/idle-callbacks/callback-exception.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-idle-periods.html": [ - [ - "/html/webappapis/idle-callbacks/callback-idle-periods.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-iframe.html": [ - [ - "/html/webappapis/idle-callbacks/callback-iframe.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-invoked.html": [ - [ - "/html/webappapis/idle-callbacks/callback-invoked.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-multiple-calls.html": [ - [ - "/html/webappapis/idle-callbacks/callback-multiple-calls.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-removed-frame.html": [ - [ - "/html/webappapis/idle-callbacks/callback-removed-frame.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-suspended.html": [ - [ - "/html/webappapis/idle-callbacks/callback-suspended.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-timeout-with-raf.html": [ - [ - "/html/webappapis/idle-callbacks/callback-timeout-with-raf.html", - {} - ] - ], - "html/webappapis/idle-callbacks/callback-timeout.html": [ - [ - "/html/webappapis/idle-callbacks/callback-timeout.html", - {} - ] - ], - "html/webappapis/idle-callbacks/cancel-invoked.html": [ - [ - "/html/webappapis/idle-callbacks/cancel-invoked.html", - {} - ] - ], - "html/webappapis/idle-callbacks/idlharness.html": [ - [ - "/html/webappapis/idle-callbacks/idlharness.html", - {} - ] - ], "html/webappapis/scripting/event-loops/microtask_after_raf.html": [ [ "/html/webappapis/scripting/event-loops/microtask_after_raf.html", @@ -346984,45 +352401,9 @@ {} ] ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content.html": [ + "html/webappapis/system-state-and-capabilities/the-navigator-object/historical.window.js": [ [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content.html", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/001.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/001.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/002.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/002.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/003.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/003.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/004.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/004.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/005.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/005.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/006.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/content/006.xhtml", + "/html/webappapis/system-state-and-capabilities/the-navigator-object/historical.window.html", {} ] ], @@ -347060,42 +352441,6 @@ {} ] ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/001.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/001.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/002.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/002.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/003.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/003.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/004.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/004.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/005.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/005.xhtml", - {} - ] - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/006.xhtml": [ - [ - "/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/006.xhtml", - {} - ] - ], "html/webappapis/the-windoworworkerglobalscope-mixin/Worker_Self_Origin.html": [ [ "/html/webappapis/the-windoworworkerglobalscope-mixin/Worker_Self_Origin.html", @@ -347138,28 +352483,20 @@ {} ] ], - "image-decodes/image-decode-iframe.html": [ + "http/refresh/navigate.window.js": [ [ - "/image-decodes/image-decode-iframe.html", - { - "timeout": "long" - } + "/http/refresh/navigate.window.html", + {} ] ], - "image-decodes/image-decode-path-changes.html": [ + "http/refresh/subresource.any.js": [ [ - "/image-decodes/image-decode-path-changes.html", - { - "timeout": "long" - } - ] - ], - "image-decodes/image-decode.html": [ + "/http/refresh/subresource.any.html", + {} + ], [ - "/image-decodes/image-decode.html", - { - "timeout": "long" - } + "/http/refresh/subresource.any.worker.html", + {} ] ], "imagebitmap-renderingcontext/bitmaprenderer-as-imagesource.html": [ @@ -347198,9 +352535,15 @@ {} ] ], - "infrastructure/failing-test.html": [ + "infrastructure/assumptions/html-elements.html": [ [ - "/infrastructure/failing-test.html", + "/infrastructure/assumptions/html-elements.html", + {} + ] + ], + "infrastructure/expected-fail/failing-test.html": [ + [ + "/infrastructure/expected-fail/failing-test.html", {} ] ], @@ -347222,6 +352565,150 @@ {} ] ], + "input-events/input-events-exec-command.html": [ + [ + "/input-events/input-events-exec-command.html", + {} + ] + ], + "intersection-observer/bounding-box.html": [ + [ + "/intersection-observer/bounding-box.html", + {} + ] + ], + "intersection-observer/client-rect.html": [ + [ + "/intersection-observer/client-rect.html", + {} + ] + ], + "intersection-observer/containing-block.html": [ + [ + "/intersection-observer/containing-block.html", + {} + ] + ], + "intersection-observer/cross-origin-iframe.html": [ + [ + "/intersection-observer/cross-origin-iframe.html", + {} + ] + ], + "intersection-observer/disconnect.html": [ + [ + "/intersection-observer/disconnect.html", + {} + ] + ], + "intersection-observer/display-none.html": [ + [ + "/intersection-observer/display-none.html", + {} + ] + ], + "intersection-observer/edge-inclusive-intersection.html": [ + [ + "/intersection-observer/edge-inclusive-intersection.html", + {} + ] + ], + "intersection-observer/iframe-no-root.html": [ + [ + "/intersection-observer/iframe-no-root.html", + {} + ] + ], + "intersection-observer/multiple-targets.html": [ + [ + "/intersection-observer/multiple-targets.html", + {} + ] + ], + "intersection-observer/multiple-thresholds.html": [ + [ + "/intersection-observer/multiple-thresholds.html", + {} + ] + ], + "intersection-observer/observer-attributes.html": [ + [ + "/intersection-observer/observer-attributes.html", + {} + ] + ], + "intersection-observer/observer-exceptions.html": [ + [ + "/intersection-observer/observer-exceptions.html", + {} + ] + ], + "intersection-observer/observer-without-js-reference.html": [ + [ + "/intersection-observer/observer-without-js-reference.html", + {} + ] + ], + "intersection-observer/remove-element.html": [ + [ + "/intersection-observer/remove-element.html", + {} + ] + ], + "intersection-observer/root-margin.html": [ + [ + "/intersection-observer/root-margin.html", + {} + ] + ], + "intersection-observer/same-document-no-root.html": [ + [ + "/intersection-observer/same-document-no-root.html", + {} + ] + ], + "intersection-observer/same-document-root.html": [ + [ + "/intersection-observer/same-document-root.html", + {} + ] + ], + "intersection-observer/same-document-zero-size-target.html": [ + [ + "/intersection-observer/same-document-zero-size-target.html", + {} + ] + ], + "intersection-observer/shadow-content.html": [ + [ + "/intersection-observer/shadow-content.html", + {} + ] + ], + "intersection-observer/timestamp.html": [ + [ + "/intersection-observer/timestamp.html", + {} + ] + ], + "intersection-observer/unclipped-root.html": [ + [ + "/intersection-observer/unclipped-root.html", + {} + ] + ], + "intersection-observer/zero-area-element-hidden.html": [ + [ + "/intersection-observer/zero-area-element-hidden.html", + {} + ] + ], + "intersection-observer/zero-area-element-visible.html": [ + [ + "/intersection-observer/zero-area-element-visible.html", + {} + ] + ], "js/behaviours/SetPrototypeOf-window.html": [ [ "/js/behaviours/SetPrototypeOf-window.html", @@ -347918,6 +353405,24 @@ {} ] ], + "mediacapture-fromelement/capture.html": [ + [ + "/mediacapture-fromelement/capture.html", + {} + ] + ], + "mediacapture-fromelement/creation.html": [ + [ + "/mediacapture-fromelement/creation.html", + {} + ] + ], + "mediacapture-fromelement/ended.html": [ + [ + "/mediacapture-fromelement/ended.html", + {} + ] + ], "mediacapture-fromelement/idlharness.html": [ [ "/mediacapture-fromelement/idlharness.html", @@ -348032,6 +353537,12 @@ {} ] ], + "mediacapture-streams/MediaStream-default-feature-policy.https.sub.html": [ + [ + "/mediacapture-streams/MediaStream-default-feature-policy.https.sub.html", + {} + ] + ], "mediacapture-streams/MediaStream-finished-add.https.html": [ [ "/mediacapture-streams/MediaStream-finished-add.https.html", @@ -348074,6 +353585,12 @@ {} ] ], + "mediacapture-streams/MediaStreamTrack-getSettings.https.html": [ + [ + "/mediacapture-streams/MediaStreamTrack-getSettings.https.html", + {} + ] + ], "mediacapture-streams/MediaStreamTrack-id.https.html": [ [ "/mediacapture-streams/MediaStreamTrack-id.https.html", @@ -348092,6 +353609,12 @@ {} ] ], + "mediacapture-streams/historical.html": [ + [ + "/mediacapture-streams/historical.html", + {} + ] + ], "mediasession/idlharness.html": [ [ "/mediasession/idlharness.html", @@ -358796,1214 +364319,12 @@ {} ] ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_checkvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_checkvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_labels.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_labels.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_setcustomvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_setcustomvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_validationmessage.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_validationmessage.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_validity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_validity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_willvalidate.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/button_willvalidate.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_checkvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/fieldset_checkvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_setcustomvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/fieldset_setcustomvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validationmessage.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validationmessage.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_willvalidate.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/fieldset_willvalidate.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_action.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/form_action.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_checkvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/form_checkvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_length.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/form_length.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_submit.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/form_submit.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_checkvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_checkvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_height.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_height.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_labels.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_labels.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_setcustomvalidity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_setcustomvalidity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_stepdown.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_stepdown.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_stepup.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_stepup.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_validationmessage.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_validationmessage.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_validity.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_validity.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_value_invalidstateerr.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_value_invalidstateerr.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_valueasdate_invalidstateerr.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_valueasdate_invalidstateerr.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_valueasnumber_invalidstateerr.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_valueasnumber_invalidstateerr.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_width.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_width.html", - {} - ] - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_willvalidate.html": [ - [ - "/old-tests/submission/Infraware/Forms/contents/Forms/input_willvalidate.html", - {} - ] - ], "old-tests/submission/Microsoft/history/history_000.htm": [ [ "/old-tests/submission/Microsoft/history/history_000.htm", {} ] ], - "old-tests/submission/Microsoft/sandbox/sandbox_001.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_001.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_002.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_002.htm", - { - "timeout": "long" - } - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_005.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_005.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_011.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_011.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_012.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_012.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_013.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_013.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_014.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_014.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_015.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_015.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_016.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_016.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_017.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_017.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_018.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_018.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_019.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_019.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_023.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_023.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_024.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_024.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_025.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_025.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_026.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_026.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_027.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_027.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_028.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_028.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_029.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_029.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_030.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_030.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_031.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_031.htm", - {} - ] - ], - "old-tests/submission/Microsoft/sandbox/sandbox_032.htm": [ - [ - "/old-tests/submission/Microsoft/sandbox/sandbox_032.htm", - {} - ] - ], - "old-tests/submission/Microsoft/structuredclone/structuredclone_0.html": [ - [ - "/old-tests/submission/Microsoft/structuredclone/structuredclone_0.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/001.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/001.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/002.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/002.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/003.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/003.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/004.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/004.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/005.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/005.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/006.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/006.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/007.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/007.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/008.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/008.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/009.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/009.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/010.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/010.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/011.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/011.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/012.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/012.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/013.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/013.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/014.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/014.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/015.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/015.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/015a.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/015a.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/016.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/016.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/017.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/017.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/018.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/018.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/019.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/019.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/020.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/020.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/021.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/021.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/022.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/022.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/023.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/023.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/024.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/024.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/025.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/025.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/026.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/026.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/027.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/027.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/028.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/028.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/029.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/029.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/030.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/030.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/031.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/031.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/032.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/032.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/033.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/033.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/034.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/034.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/035.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/035.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/036.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/036.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/037.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/037.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/038.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/038.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/039.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/039.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/040.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/040.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/041.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/041.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/042.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/042.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/043.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/043.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/044.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/044.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/045.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/045.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/046.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/046.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/047.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/047.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/048.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/048.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/049.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/049.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/050.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/050.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/051.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/051.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/052.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/052.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/053.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/053.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/054.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/054.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/055.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/055.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/056.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/056.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/057.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/057.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/058.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/058.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/059.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/059.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/060.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/060.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/061.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/061.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/062.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/062.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/063.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/063.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/064.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/064.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/065.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/065.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/066.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/066.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/067.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/067.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/068.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/068.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/069.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/069.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/070.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/070.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/071.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/071.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/072.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/072.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/073.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/073.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/074.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/074.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/075.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/075.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/076.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/076.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/077.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/077.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/078.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/078.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/079.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/079.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/080.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/080.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/081.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/081.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/082.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/082.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/083.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/083.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/084.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/084.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/085.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/085.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/086.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/086.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/087.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/087.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/088.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/088.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/089.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/089.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/090.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/090.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/091.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/091.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/092.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/092.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/094.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/094.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/095.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/095.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/096.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/096.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/097.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/097.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/099.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/099.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/100.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/100.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/101.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/101.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/103.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/103.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/104.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/104.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/105.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/105.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/106-import.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/106-import.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/106-noimport.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/106-noimport.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/107-import.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/107-import.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/107-noimport.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/107-noimport.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/108.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/108.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/109.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/109.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/110.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/110.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/111.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/111.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/112.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/112.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/113.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/113.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/114.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/114.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/115.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/115.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/116.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/116.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/117.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/117.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/118.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/118.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/119.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/119.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/120.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/120.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/121.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/121.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/122.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/122.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/123.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/123.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/124.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/124.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/125.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/125.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/126.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/126.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/127.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/127.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/128.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/128.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/129.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/129.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/130.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/130.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/131.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/131.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/132.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/132.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/133.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/133.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/134.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/134.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/135.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/135.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/136.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/136.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/137.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/137.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/138.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/138.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/139.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/139.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/140.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/140.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/141.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/141.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/142.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/142.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/143.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/143.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/144.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/144.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/145.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/145.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/146.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/146.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/147.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/147.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/148.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/148.html", - {} - ] - ], - "old-tests/submission/Opera/script_scheduling/149.html": [ - [ - "/old-tests/submission/Opera/script_scheduling/149.html", - {} - ] - ], "orientation-event/devicemotionevent-init.html": [ [ "/orientation-event/devicemotionevent-init.html", @@ -360028,6 +364349,18 @@ {} ] ], + "orientation-sensor/OrientationSensor.https.html": [ + [ + "/orientation-sensor/OrientationSensor.https.html", + {} + ] + ], + "orientation-sensor/OrientationSensor_insecure_context.html": [ + [ + "/orientation-sensor/OrientationSensor_insecure_context.html", + {} + ] + ], "orientation-sensor/idlharness.https.html": [ [ "/orientation-sensor/idlharness.https.html", @@ -360040,6 +364373,18 @@ {} ] ], + "page-visibility/iframe-unload.html": [ + [ + "/page-visibility/iframe-unload.html", + {} + ] + ], + "page-visibility/onvisibilitychange.html": [ + [ + "/page-visibility/onvisibilitychange.html", + {} + ] + ], "page-visibility/prerender_call.html": [ [ "/page-visibility/prerender_call.html", @@ -360076,6 +364421,94 @@ {} ] ], + "paint-timing/basetest.html": [ + [ + "/paint-timing/basetest.html", + {} + ] + ], + "paint-timing/first-contentful-bg-image.html": [ + [ + "/paint-timing/first-contentful-bg-image.html", + {} + ] + ], + "paint-timing/first-contentful-canvas.html": [ + [ + "/paint-timing/first-contentful-canvas.html", + {} + ] + ], + "paint-timing/first-contentful-image.html": [ + [ + "/paint-timing/first-contentful-image.html", + {} + ] + ], + "paint-timing/first-contentful-paint.html": [ + [ + "/paint-timing/first-contentful-paint.html", + {} + ] + ], + "paint-timing/first-contentful-svg.html": [ + [ + "/paint-timing/first-contentful-svg.html", + {} + ] + ], + "paint-timing/first-paint-bg-color.html": [ + [ + "/paint-timing/first-paint-bg-color.html", + {} + ] + ], + "paint-timing/first-paint-only.html": [ + [ + "/paint-timing/first-paint-only.html", + {} + ] + ], + "paint-timing/paint-visited.html": [ + [ + "/paint-timing/paint-visited.html", + {} + ] + ], + "payment-handler/interfaces.https.any.js": [ + [ + "/payment-handler/interfaces.https.any.html", + {} + ], + [ + "/payment-handler/interfaces.https.any.worker.html", + {} + ] + ], + "payment-method-basic-card/payment-request-canmakepayment-method.https.html": [ + [ + "/payment-method-basic-card/payment-request-canmakepayment-method.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/constructor.http.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/constructor.http.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/constructor.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/constructor.https.html", + {} + ] + ], + "payment-request/PaymentRequestUpdateEvent/updatewith-method.https.html": [ + [ + "/payment-request/PaymentRequestUpdateEvent/updatewith-method.https.html", + {} + ] + ], "payment-request/allowpaymentrequest/active-document-cross-origin.https.sub.html": [ [ "/payment-request/allowpaymentrequest/active-document-cross-origin.https.sub.html", @@ -360154,10 +364587,18 @@ {} ] ], + "payment-request/payment-request-canmakepayment-method.https.html": [ + [ + "/payment-request/payment-request-canmakepayment-method.https.html", + {} + ] + ], "payment-request/payment-request-constructor-crash.https.html": [ [ "/payment-request/payment-request-constructor-crash.https.html", - {} + { + "timeout": "long" + } ] ], "payment-request/payment-request-constructor.https.html": [ @@ -360166,15 +364607,21 @@ {} ] ], - "payment-request/payment-request-id.https.html": [ + "payment-request/payment-request-ctor-currency-code-checks.https.html": [ [ - "/payment-request/payment-request-id.https.html", + "/payment-request/payment-request-ctor-currency-code-checks.https.html", {} ] ], - "payment-request/payment-request-in-iframe.html": [ + "payment-request/payment-request-ctor-pmi-handling.https.html": [ [ - "/payment-request/payment-request-in-iframe.html", + "/payment-request/payment-request-ctor-pmi-handling.https.html", + {} + ] + ], + "payment-request/payment-request-id-attribute.https.html": [ + [ + "/payment-request/payment-request-id-attribute.https.html", {} ] ], @@ -360190,27 +364637,33 @@ {} ] ], + "payment-request/payment-request-shippingAddress-attribute.https.html": [ + [ + "/payment-request/payment-request-shippingAddress-attribute.https.html", + {} + ] + ], + "payment-request/payment-request-shippingOption-attribute.https.html": [ + [ + "/payment-request/payment-request-shippingOption-attribute.https.html", + {} + ] + ], + "payment-request/payment-request-shippingType-attribute.https.html": [ + [ + "/payment-request/payment-request-shippingType-attribute.https.html", + {} + ] + ], "payment-request/payment-request-show-method.https.html": [ [ "/payment-request/payment-request-show-method.https.html", {} ] ], - "payment-request/payment-request-update-event-constructor.http.html": [ + "payment-request/rejects_if_not_active.https.html": [ [ - "/payment-request/payment-request-update-event-constructor.http.html", - {} - ] - ], - "payment-request/payment-request-update-event-constructor.https.html": [ - [ - "/payment-request/payment-request-update-event-constructor.https.html", - {} - ] - ], - "payment-request/payment-request-update-event-updatewith-method.https.html": [ - [ - "/payment-request/payment-request-update-event-updatewith-method.https.html", + "/payment-request/rejects_if_not_active.https.html", {} ] ], @@ -360230,6 +364683,16 @@ {} ] ], + "performance-timeline/po-callback-mutate.any.js": [ + [ + "/performance-timeline/po-callback-mutate.any.html", + {} + ], + [ + "/performance-timeline/po-callback-mutate.any.worker.html", + {} + ] + ], "performance-timeline/po-disconnect.any.js": [ [ "/performance-timeline/po-disconnect.any.html", @@ -360240,6 +364703,16 @@ {} ] ], + "performance-timeline/po-entries-sort.any.js": [ + [ + "/performance-timeline/po-entries-sort.any.html", + {} + ], + [ + "/performance-timeline/po-entries-sort.any.worker.html", + {} + ] + ], "performance-timeline/po-getentries.any.js": [ [ "/performance-timeline/po-getentries.any.html", @@ -360288,6 +364761,12 @@ {} ] ], + "performance-timeline/worker-with-performance-observer.html": [ + [ + "/performance-timeline/worker-with-performance-observer.html", + {} + ] + ], "pointerevents/extension/idlharness.html": [ [ "/pointerevents/extension/idlharness.html", @@ -360360,6 +364839,12 @@ {} ] ], + "preload/dynamic-adding-preload-nonce.html": [ + [ + "/preload/dynamic-adding-preload-nonce.html", + {} + ] + ], "preload/dynamic-adding-preload.html": [ [ "/preload/dynamic-adding-preload.html", @@ -360372,12 +364857,24 @@ {} ] ], + "preload/link-header-on-subresource.html": [ + [ + "/preload/link-header-on-subresource.html", + {} + ] + ], "preload/link-header-preload-delay-onload.html": [ [ "/preload/link-header-preload-delay-onload.html", {} ] ], + "preload/link-header-preload-nonce.html": [ + [ + "/preload/link-header-preload-nonce.html", + {} + ] + ], "preload/link-header-preload.html": [ [ "/preload/link-header-preload.html", @@ -360558,6 +365055,12 @@ {} ] ], + "quirks-mode/classname-query-after-sibling-adoption.html": [ + [ + "/quirks-mode/classname-query-after-sibling-adoption.html", + {} + ] + ], "quirks-mode/hashless-hex-color.html": [ [ "/quirks-mode/hashless-hex-color.html", @@ -360644,6 +365147,12 @@ {} ] ], + "referrer-policy/generic/link-rel-prefetch.html": [ + [ + "/referrer-policy/generic/link-rel-prefetch.html", + {} + ] + ], "referrer-policy/generic/sandboxed-iframe-with-opaque-origin.html": [ [ "/referrer-policy/generic/sandboxed-iframe-with-opaque-origin.html", @@ -368666,6 +373175,108 @@ {} ] ], + "requestidlecallback/basic.html": [ + [ + "/requestidlecallback/basic.html", + {} + ] + ], + "requestidlecallback/callback-exception.html": [ + [ + "/requestidlecallback/callback-exception.html", + {} + ] + ], + "requestidlecallback/callback-idle-periods.html": [ + [ + "/requestidlecallback/callback-idle-periods.html", + {} + ] + ], + "requestidlecallback/callback-iframe.html": [ + [ + "/requestidlecallback/callback-iframe.html", + {} + ] + ], + "requestidlecallback/callback-invoked.html": [ + [ + "/requestidlecallback/callback-invoked.html", + {} + ] + ], + "requestidlecallback/callback-multiple-calls.html": [ + [ + "/requestidlecallback/callback-multiple-calls.html", + {} + ] + ], + "requestidlecallback/callback-removed-frame.html": [ + [ + "/requestidlecallback/callback-removed-frame.html", + {} + ] + ], + "requestidlecallback/callback-suspended.html": [ + [ + "/requestidlecallback/callback-suspended.html", + {} + ] + ], + "requestidlecallback/callback-timeout-with-raf.html": [ + [ + "/requestidlecallback/callback-timeout-with-raf.html", + {} + ] + ], + "requestidlecallback/callback-timeout.html": [ + [ + "/requestidlecallback/callback-timeout.html", + {} + ] + ], + "requestidlecallback/callback-xhr-sync.html": [ + [ + "/requestidlecallback/callback-xhr-sync.html", + {} + ] + ], + "requestidlecallback/cancel-invoked.html": [ + [ + "/requestidlecallback/cancel-invoked.html", + {} + ] + ], + "requestidlecallback/idlharness.html": [ + [ + "/requestidlecallback/idlharness.html", + {} + ] + ], + "resize-observer/eventloop.html": [ + [ + "/resize-observer/eventloop.html", + {} + ] + ], + "resize-observer/notify.html": [ + [ + "/resize-observer/notify.html", + {} + ] + ], + "resize-observer/observe.html": [ + [ + "/resize-observer/observe.html", + {} + ] + ], + "resize-observer/svg.html": [ + [ + "/resize-observer/svg.html", + {} + ] + ], "resource-timing/idlharness.html": [ [ "/resource-timing/idlharness.html", @@ -368750,6 +373361,14 @@ {} ] ], + "resource-timing/single-entry-per-resource.html": [ + [ + "/resource-timing/single-entry-per-resource.html", + { + "timeout": "long" + } + ] + ], "resource-timing/test_resource_timing.html": [ [ "/resource-timing/test_resource_timing.html", @@ -369086,6 +373705,12 @@ } ] ], + "selection/addRange.htm": [ + [ + "/selection/addRange.htm", + {} + ] + ], "selection/collapse-00.html": [ [ "/selection/collapse-00.html", @@ -369118,6 +373743,12 @@ } ] ], + "selection/collapse.htm": [ + [ + "/selection/collapse.htm", + {} + ] + ], "selection/collapseToStartEnd.html": [ [ "/selection/collapseToStartEnd.html", @@ -369574,6 +374205,12 @@ {} ] ], + "service-workers/service-worker/claim-shared-worker-fetch.https.html": [ + [ + "/service-workers/service-worker/claim-shared-worker-fetch.https.html", + {} + ] + ], "service-workers/service-worker/claim-using-registration.https.html": [ [ "/service-workers/service-worker/claim-using-registration.https.html", @@ -369586,6 +374223,12 @@ {} ] ], + "service-workers/service-worker/claim-worker-fetch.https.html": [ + [ + "/service-workers/service-worker/claim-worker-fetch.https.html", + {} + ] + ], "service-workers/service-worker/client-id.https.html": [ [ "/service-workers/service-worker/client-id.https.html", @@ -369732,6 +374375,12 @@ } ] ], + "service-workers/service-worker/fetch-event-referrer-policy.https.html": [ + [ + "/service-workers/service-worker/fetch-event-referrer-policy.https.html", + {} + ] + ], "service-workers/service-worker/fetch-event-respond-with-argument.https.html": [ [ "/service-workers/service-worker/fetch-event-respond-with-argument.https.html", @@ -369936,6 +374585,18 @@ {} ] ], + "service-workers/service-worker/immutable-prototype-serviceworker.https.html": [ + [ + "/service-workers/service-worker/immutable-prototype-serviceworker.https.html", + {} + ] + ], + "service-workers/service-worker/import-scripts-redirect.https.html": [ + [ + "/service-workers/service-worker/import-scripts-redirect.https.html", + {} + ] + ], "service-workers/service-worker/import-scripts-resource-map.https.html": [ [ "/service-workers/service-worker/import-scripts-resource-map.https.html", @@ -369966,9 +374627,15 @@ {} ] ], - "service-workers/service-worker/interfaces.https.html": [ + "service-workers/service-worker/interfaces-sw.https.html": [ [ - "/service-workers/service-worker/interfaces.https.html", + "/service-workers/service-worker/interfaces-sw.https.html", + {} + ] + ], + "service-workers/service-worker/interfaces-window.https.html": [ + [ + "/service-workers/service-worker/interfaces-window.https.html", {} ] ], @@ -369990,6 +374657,48 @@ {} ] ], + "service-workers/service-worker/link-element-register-basic.https.html": [ + [ + "/service-workers/service-worker/link-element-register-basic.https.html", + {} + ] + ], + "service-workers/service-worker/link-element-register-mime-types.https.html": [ + [ + "/service-workers/service-worker/link-element-register-mime-types.https.html", + {} + ] + ], + "service-workers/service-worker/link-element-register-scope.https.html": [ + [ + "/service-workers/service-worker/link-element-register-scope.https.html", + {} + ] + ], + "service-workers/service-worker/link-element-register-script-url.https.html": [ + [ + "/service-workers/service-worker/link-element-register-script-url.https.html", + {} + ] + ], + "service-workers/service-worker/link-element-register-script.https.html": [ + [ + "/service-workers/service-worker/link-element-register-script.https.html", + {} + ] + ], + "service-workers/service-worker/link-element-register-security-error.https.html": [ + [ + "/service-workers/service-worker/link-element-register-security-error.https.html", + {} + ] + ], + "service-workers/service-worker/mime-sniffing.https.html": [ + [ + "/service-workers/service-worker/mime-sniffing.https.html", + {} + ] + ], "service-workers/service-worker/multi-globals/url-parsing.https.html": [ [ "/service-workers/service-worker/multi-globals/url-parsing.https.html", @@ -370172,12 +374881,6 @@ {} ] ], - "service-workers/service-worker/register-link-element.https.html": [ - [ - "/service-workers/service-worker/register-link-element.https.html", - {} - ] - ], "service-workers/service-worker/register-link-header.https.html": [ [ "/service-workers/service-worker/register-link-header.https.html", @@ -370196,6 +374899,12 @@ {} ] ], + "service-workers/service-worker/registration-basic.https.html": [ + [ + "/service-workers/service-worker/registration-basic.https.html", + {} + ] + ], "service-workers/service-worker/registration-end-to-end.https.html": [ [ "/service-workers/service-worker/registration-end-to-end.https.html", @@ -370214,15 +374923,45 @@ {} ] ], + "service-workers/service-worker/registration-mime-types.https.html": [ + [ + "/service-workers/service-worker/registration-mime-types.https.html", + {} + ] + ], + "service-workers/service-worker/registration-scope.https.html": [ + [ + "/service-workers/service-worker/registration-scope.https.html", + {} + ] + ], + "service-workers/service-worker/registration-script-url.https.html": [ + [ + "/service-workers/service-worker/registration-script-url.https.html", + {} + ] + ], + "service-workers/service-worker/registration-script.https.html": [ + [ + "/service-workers/service-worker/registration-script.https.html", + {} + ] + ], + "service-workers/service-worker/registration-security-error.https.html": [ + [ + "/service-workers/service-worker/registration-security-error.https.html", + {} + ] + ], "service-workers/service-worker/registration-service-worker-attributes.https.html": [ [ "/service-workers/service-worker/registration-service-worker-attributes.https.html", {} ] ], - "service-workers/service-worker/registration.https.html": [ + "service-workers/service-worker/registration-updateviacache.https.html": [ [ - "/service-workers/service-worker/registration.https.html", + "/service-workers/service-worker/registration-updateviacache.https.html", {} ] ], @@ -370370,6 +375109,12 @@ {} ] ], + "service-workers/service-worker/update-bytecheck.https.html": [ + [ + "/service-workers/service-worker/update-bytecheck.https.html", + {} + ] + ], "service-workers/service-worker/update-recovery.https.html": [ [ "/service-workers/service-worker/update-recovery.https.html", @@ -370514,12 +375259,24 @@ {} ] ], + "shadow-dom/event-post-dispatch.html": [ + [ + "/shadow-dom/event-post-dispatch.html", + {} + ] + ], "shadow-dom/event-with-related-target.html": [ [ "/shadow-dom/event-with-related-target.html", {} ] ], + "shadow-dom/historical.html": [ + [ + "/shadow-dom/historical.html", + {} + ] + ], "shadow-dom/leaktests/get-elements.html": [ [ "/shadow-dom/leaktests/get-elements.html", @@ -370544,6 +375301,12 @@ {} ] ], + "shadow-dom/slotchange-customelements.html": [ + [ + "/shadow-dom/slotchange-customelements.html", + {} + ] + ], "shadow-dom/slotchange-event.html": [ [ "/shadow-dom/slotchange-event.html", @@ -370904,6 +375667,24 @@ {} ] ], + "speech-api/SpeechSynthesis-speak-ownership.html": [ + [ + "/speech-api/SpeechSynthesis-speak-ownership.html", + {} + ] + ], + "speech-api/SpeechSynthesis-speak-twice.html": [ + [ + "/speech-api/SpeechSynthesis-speak-twice.html", + {} + ] + ], + "speech-api/historical.html": [ + [ + "/speech-api/historical.html", + {} + ] + ], "staticrange/idlharness.html": [ [ "/staticrange/idlharness.html", @@ -370928,9 +375709,9 @@ {} ] ], - "storage/interfaces.worker.js": [ + "storage/interfaces.https.worker.js": [ [ - "/storage/interfaces.worker.html", + "/storage/interfaces.https.worker.html", {} ] ], @@ -371246,6 +376027,54 @@ {} ] ], + "streams/readable-byte-streams/brand-checks.dedicatedworker.html": [ + [ + "/streams/readable-byte-streams/brand-checks.dedicatedworker.html", + {} + ] + ], + "streams/readable-byte-streams/brand-checks.html": [ + [ + "/streams/readable-byte-streams/brand-checks.html", + {} + ] + ], + "streams/readable-byte-streams/brand-checks.serviceworker.https.html": [ + [ + "/streams/readable-byte-streams/brand-checks.serviceworker.https.html", + {} + ] + ], + "streams/readable-byte-streams/brand-checks.sharedworker.html": [ + [ + "/streams/readable-byte-streams/brand-checks.sharedworker.html", + {} + ] + ], + "streams/readable-byte-streams/detached-buffers.dedicatedworker.html": [ + [ + "/streams/readable-byte-streams/detached-buffers.dedicatedworker.html", + {} + ] + ], + "streams/readable-byte-streams/detached-buffers.html": [ + [ + "/streams/readable-byte-streams/detached-buffers.html", + {} + ] + ], + "streams/readable-byte-streams/detached-buffers.serviceworker.https.html": [ + [ + "/streams/readable-byte-streams/detached-buffers.serviceworker.https.html", + {} + ] + ], + "streams/readable-byte-streams/detached-buffers.sharedworker.html": [ + [ + "/streams/readable-byte-streams/detached-buffers.sharedworker.html", + {} + ] + ], "streams/readable-byte-streams/general.dedicatedworker.html": [ [ "/streams/readable-byte-streams/general.dedicatedworker.html", @@ -371270,6 +376099,30 @@ {} ] ], + "streams/readable-byte-streams/properties.dedicatedworker.html": [ + [ + "/streams/readable-byte-streams/properties.dedicatedworker.html", + {} + ] + ], + "streams/readable-byte-streams/properties.html": [ + [ + "/streams/readable-byte-streams/properties.html", + {} + ] + ], + "streams/readable-byte-streams/properties.serviceworker.https.html": [ + [ + "/streams/readable-byte-streams/properties.serviceworker.https.html", + {} + ] + ], + "streams/readable-byte-streams/properties.sharedworker.html": [ + [ + "/streams/readable-byte-streams/properties.sharedworker.html", + {} + ] + ], "streams/readable-streams/bad-strategies.dedicatedworker.html": [ [ "/streams/readable-streams/bad-strategies.dedicatedworker.html", @@ -371486,30 +376339,6 @@ {} ] ], - "streams/readable-streams/pipe-through.dedicatedworker.html": [ - [ - "/streams/readable-streams/pipe-through.dedicatedworker.html", - {} - ] - ], - "streams/readable-streams/pipe-through.html": [ - [ - "/streams/readable-streams/pipe-through.html", - {} - ] - ], - "streams/readable-streams/pipe-through.serviceworker.https.html": [ - [ - "/streams/readable-streams/pipe-through.serviceworker.https.html", - {} - ] - ], - "streams/readable-streams/pipe-through.sharedworker.html": [ - [ - "/streams/readable-streams/pipe-through.sharedworker.html", - {} - ] - ], "streams/readable-streams/tee.dedicatedworker.html": [ [ "/streams/readable-streams/tee.dedicatedworker.html", @@ -371918,6 +376747,24 @@ {} ] ], + "subresource-integrity/subresource-css-ed25519.tentative.html": [ + [ + "/subresource-integrity/subresource-css-ed25519.tentative.html", + {} + ] + ], + "subresource-integrity/subresource-ed25519-with-csp.tentative.html": [ + [ + "/subresource-integrity/subresource-ed25519-with-csp.tentative.html", + {} + ] + ], + "subresource-integrity/subresource-ed25519.tentative.html": [ + [ + "/subresource-integrity/subresource-ed25519.tentative.html", + {} + ] + ], "subresource-integrity/subresource-integrity.sub.html": [ [ "/subresource-integrity/subresource-integrity.sub.html", @@ -371992,6 +376839,90 @@ {} ] ], + "trusted-types/TrustedHTML.tentative.html": [ + [ + "/trusted-types/TrustedHTML.tentative.html", + {} + ] + ], + "trusted-types/TrustedScriptURL.tentative.html": [ + [ + "/trusted-types/TrustedScriptURL.tentative.html", + {} + ] + ], + "trusted-types/TrustedURL.tentative.html": [ + [ + "/trusted-types/TrustedURL.tentative.html", + {} + ] + ], + "trusted-types/block-string-assignment-to-innerHTML.tentative.html": [ + [ + "/trusted-types/block-string-assignment-to-innerHTML.tentative.html", + {} + ] + ], + "trusted-types/block-string-assignment-to-insertAdjacentHTML.tentative.html": [ + [ + "/trusted-types/block-string-assignment-to-insertAdjacentHTML.tentative.html", + {} + ] + ], + "trusted-types/block-string-assignment-to-location-href.tentative.html": [ + [ + "/trusted-types/block-string-assignment-to-location-href.tentative.html", + {} + ] + ], + "trusted-types/block-string-assignment-to-outerHTML.tentative.html": [ + [ + "/trusted-types/block-string-assignment-to-outerHTML.tentative.html", + {} + ] + ], + "trusted-types/block-string-assignment-to-script-src.tentative.html": [ + [ + "/trusted-types/block-string-assignment-to-script-src.tentative.html", + {} + ] + ], + "trusted-types/document-write.tentative.html": [ + [ + "/trusted-types/document-write.tentative.html", + {} + ] + ], + "trusted-types/innerHTML.tentative.html": [ + [ + "/trusted-types/innerHTML.tentative.html", + {} + ] + ], + "trusted-types/insertAdjacentHTML.tentative.html": [ + [ + "/trusted-types/insertAdjacentHTML.tentative.html", + {} + ] + ], + "trusted-types/location-href.tentative.html": [ + [ + "/trusted-types/location-href.tentative.html", + {} + ] + ], + "trusted-types/outerHTML.tentative.html": [ + [ + "/trusted-types/outerHTML.tentative.html", + {} + ] + ], + "trusted-types/script-src.tentative.html": [ + [ + "/trusted-types/script-src.tentative.html", + {} + ] + ], "uievents/constructors/inputevent-constructor.html": [ [ "/uievents/constructors/inputevent-constructor.html", @@ -372004,6 +376935,14 @@ {} ] ], + "uievents/interfaces.html": [ + [ + "/uievents/interfaces.html", + { + "timeout": "long" + } + ] + ], "uievents/legacy-domevents-tests/approved/ProcessingInstruction.DOMCharacterDataModified.html": [ [ "/uievents/legacy-domevents-tests/approved/ProcessingInstruction.DOMCharacterDataModified.html", @@ -372040,6 +376979,12 @@ {} ] ], + "uievents/legacy/Event-subclasses-init.html": [ + [ + "/uievents/legacy/Event-subclasses-init.html", + {} + ] + ], "uievents/order-of-events/focus-events/focus-automated-blink-webkit.html": [ [ "/uievents/order-of-events/focus-events/focus-automated-blink-webkit.html", @@ -372466,6 +377411,18 @@ {} ] ], + "wasm/create_multiple_memory.worker.js": [ + [ + "/wasm/create_multiple_memory.worker.html", + {} + ] + ], + "wasm/many-memories.window.js": [ + [ + "/wasm/many-memories.window.html", + {} + ] + ], "wasm/wasm_indexeddb_test.html": [ [ "/wasm/wasm_indexeddb_test.html", @@ -372484,9 +377441,9 @@ {} ] ], - "wasm/wasm_service_worker_test.html": [ + "wasm/wasm_service_worker_test.https.html": [ [ - "/wasm/wasm_service_worker_test.html", + "/wasm/wasm_service_worker_test.https.html", {} ] ], @@ -372514,24 +377471,6 @@ {} ] ], - "web-animations/animation-model/animation-types/spacing-keyframes-filters.html": [ - [ - "/web-animations/animation-model/animation-types/spacing-keyframes-filters.html", - {} - ] - ], - "web-animations/animation-model/animation-types/spacing-keyframes-shapes.html": [ - [ - "/web-animations/animation-model/animation-types/spacing-keyframes-shapes.html", - {} - ] - ], - "web-animations/animation-model/animation-types/spacing-keyframes-transform.html": [ - [ - "/web-animations/animation-model/animation-types/spacing-keyframes-transform.html", - {} - ] - ], "web-animations/animation-model/combining-effects/effect-composition.html": [ [ "/web-animations/animation-model/combining-effects/effect-composition.html", @@ -372562,9 +377501,9 @@ {} ] ], - "web-animations/animation-model/keyframe-effects/spacing-keyframes.html": [ + "web-animations/interfaces/Animatable/animate-no-browsing-context.html": [ [ - "/web-animations/animation-model/keyframe-effects/spacing-keyframes.html", + "/web-animations/interfaces/Animatable/animate-no-browsing-context.html", {} ] ], @@ -372802,24 +377741,12 @@ {} ] ], - "web-animations/interfaces/KeyframeEffect/spacing.html": [ - [ - "/web-animations/interfaces/KeyframeEffect/spacing.html", - {} - ] - ], "web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html": [ [ "/web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html", {} ] ], - "web-animations/interfaces/KeyframeEffectReadOnly/spacing.html": [ - [ - "/web-animations/interfaces/KeyframeEffectReadOnly/spacing.html", - {} - ] - ], "web-animations/timing-model/animation-effects/active-time.html": [ [ "/web-animations/timing-model/animation-effects/active-time.html", @@ -372922,6 +377849,60 @@ {} ] ], + "web-nfc/nfc_insecure_context.html": [ + [ + "/web-nfc/nfc_insecure_context.html", + {} + ] + ], + "web-nfc/nfc_push.https.html": [ + [ + "/web-nfc/nfc_push.https.html", + {} + ] + ], + "web-nfc/nfc_watch.https.html": [ + [ + "/web-nfc/nfc_watch.https.html", + {} + ] + ], + "web-share/idlharness.https.html": [ + [ + "/web-share/idlharness.https.html", + {} + ] + ], + "web-share/share-empty.https.html": [ + [ + "/web-share/share-empty.https.html", + {} + ] + ], + "web-share/share-securecontext.http.html": [ + [ + "/web-share/share-securecontext.http.html", + {} + ] + ], + "web-share/share-url-invalid.https.html": [ + [ + "/web-share/share-url-invalid.https.html", + {} + ] + ], + "web-share/share-without-user-gesture.https.html": [ + [ + "/web-share/share-without-user-gesture.https.html", + {} + ] + ], + "webaudio/historical.html": [ + [ + "/webaudio/historical.html", + {} + ] + ], "webaudio/the-audio-api/the-audiobuffer-interface/idl-test.html": [ [ "/webaudio/the-audio-api/the-audiobuffer-interface/idl-test.html", @@ -373066,9 +378047,15 @@ {} ] ], - "webdriver/interface.html": [ + "webdriver/interface/interface.html": [ [ - "/webdriver/interface.html", + "/webdriver/interface/interface.html", + {} + ] + ], + "webdriver/tests/interface.html": [ + [ + "/webdriver/tests/interface.html", {} ] ], @@ -377758,12 +382745,56 @@ {} ] ], + "webrtc/RTCConfiguration-bundlePolicy.html": [ + [ + "/webrtc/RTCConfiguration-bundlePolicy.html", + {} + ] + ], "webrtc/RTCConfiguration-iceCandidatePoolSize.html": [ [ "/webrtc/RTCConfiguration-iceCandidatePoolSize.html", {} ] ], + "webrtc/RTCConfiguration-iceServers.html": [ + [ + "/webrtc/RTCConfiguration-iceServers.html", + {} + ] + ], + "webrtc/RTCConfiguration-iceTransportPolicy.html": [ + [ + "/webrtc/RTCConfiguration-iceTransportPolicy.html", + {} + ] + ], + "webrtc/RTCConfiguration-rtcpMuxPolicy.html": [ + [ + "/webrtc/RTCConfiguration-rtcpMuxPolicy.html", + {} + ] + ], + "webrtc/RTCDTMFSender-insertDTMF.https.html": [ + [ + "/webrtc/RTCDTMFSender-insertDTMF.https.html", + {} + ] + ], + "webrtc/RTCDTMFSender-ontonechange-long.https.html": [ + [ + "/webrtc/RTCDTMFSender-ontonechange-long.https.html", + { + "timeout": "long" + } + ] + ], + "webrtc/RTCDTMFSender-ontonechange.https.html": [ + [ + "/webrtc/RTCDTMFSender-ontonechange.https.html", + {} + ] + ], "webrtc/RTCDataChannel-bufferedAmount.html": [ [ "/webrtc/RTCDataChannel-bufferedAmount.html", @@ -377788,18 +382819,36 @@ {} ] ], + "webrtc/RTCDtlsTransport-getRemoteCertificates.html": [ + [ + "/webrtc/RTCDtlsTransport-getRemoteCertificates.html", + {} + ] + ], "webrtc/RTCIceCandidate-constructor.html": [ [ "/webrtc/RTCIceCandidate-constructor.html", {} ] ], + "webrtc/RTCIceTransport.html": [ + [ + "/webrtc/RTCIceTransport.html", + {} + ] + ], "webrtc/RTCPeerConnection-addIceCandidate.html": [ [ "/webrtc/RTCPeerConnection-addIceCandidate.html", {} ] ], + "webrtc/RTCPeerConnection-addTrack.https.html": [ + [ + "/webrtc/RTCPeerConnection-addTrack.https.html", + {} + ] + ], "webrtc/RTCPeerConnection-addTransceiver.html": [ [ "/webrtc/RTCPeerConnection-addTransceiver.html", @@ -377848,6 +382897,24 @@ {} ] ], + "webrtc/RTCPeerConnection-getDefaultIceServers.html": [ + [ + "/webrtc/RTCPeerConnection-getDefaultIceServers.html", + {} + ] + ], + "webrtc/RTCPeerConnection-getIdentityAssertion.html": [ + [ + "/webrtc/RTCPeerConnection-getIdentityAssertion.html", + {} + ] + ], + "webrtc/RTCPeerConnection-getStats.https.html": [ + [ + "/webrtc/RTCPeerConnection-getStats.https.html", + {} + ] + ], "webrtc/RTCPeerConnection-getTransceivers.html": [ [ "/webrtc/RTCPeerConnection-getTransceivers.html", @@ -377884,9 +382951,51 @@ {} ] ], - "webrtc/RTCPeerConnection-removeTrack.html": [ + "webrtc/RTCPeerConnection-ontrack.https.html": [ [ - "/webrtc/RTCPeerConnection-removeTrack.html", + "/webrtc/RTCPeerConnection-ontrack.https.html", + {} + ] + ], + "webrtc/RTCPeerConnection-peerIdentity.html": [ + [ + "/webrtc/RTCPeerConnection-peerIdentity.html", + {} + ] + ], + "webrtc/RTCPeerConnection-removeTrack.https.html": [ + [ + "/webrtc/RTCPeerConnection-removeTrack.https.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setDescription-transceiver.html": [ + [ + "/webrtc/RTCPeerConnection-setDescription-transceiver.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setLocalDescription-answer.html": [ + [ + "/webrtc/RTCPeerConnection-setLocalDescription-answer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setLocalDescription-offer.html": [ + [ + "/webrtc/RTCPeerConnection-setLocalDescription-offer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setLocalDescription-pranswer.html": [ + [ + "/webrtc/RTCPeerConnection-setLocalDescription-pranswer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setLocalDescription-rollback.html": [ + [ + "/webrtc/RTCPeerConnection-setLocalDescription-rollback.html", {} ] ], @@ -377896,6 +383005,30 @@ {} ] ], + "webrtc/RTCPeerConnection-setRemoteDescription-answer.html": [ + [ + "/webrtc/RTCPeerConnection-setRemoteDescription-answer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setRemoteDescription-offer.html": [ + [ + "/webrtc/RTCPeerConnection-setRemoteDescription-offer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setRemoteDescription-pranswer.html": [ + [ + "/webrtc/RTCPeerConnection-setRemoteDescription-pranswer.html", + {} + ] + ], + "webrtc/RTCPeerConnection-setRemoteDescription-rollback.html": [ + [ + "/webrtc/RTCPeerConnection-setRemoteDescription-rollback.html", + {} + ] + ], "webrtc/RTCPeerConnection-setRemoteDescription.html": [ [ "/webrtc/RTCPeerConnection-setRemoteDescription.html", @@ -377908,18 +383041,120 @@ {} ] ], + "webrtc/RTCRtpParameters-codecs.html": [ + [ + "/webrtc/RTCRtpParameters-codecs.html", + {} + ] + ], + "webrtc/RTCRtpParameters-degradationPreference.html": [ + [ + "/webrtc/RTCRtpParameters-degradationPreference.html", + {} + ] + ], + "webrtc/RTCRtpParameters-encodings.html": [ + [ + "/webrtc/RTCRtpParameters-encodings.html", + {} + ] + ], + "webrtc/RTCRtpParameters-headerExtensions.html": [ + [ + "/webrtc/RTCRtpParameters-headerExtensions.html", + {} + ] + ], + "webrtc/RTCRtpParameters-rtcp.html": [ + [ + "/webrtc/RTCRtpParameters-rtcp.html", + {} + ] + ], + "webrtc/RTCRtpParameters-transactionId.html": [ + [ + "/webrtc/RTCRtpParameters-transactionId.html", + {} + ] + ], + "webrtc/RTCRtpReceiver-getCapabilities.html": [ + [ + "/webrtc/RTCRtpReceiver-getCapabilities.html", + {} + ] + ], + "webrtc/RTCRtpReceiver-getContributingSources.https.html": [ + [ + "/webrtc/RTCRtpReceiver-getContributingSources.https.html", + {} + ] + ], + "webrtc/RTCRtpReceiver-getParameters.html": [ + [ + "/webrtc/RTCRtpReceiver-getParameters.html", + {} + ] + ], + "webrtc/RTCRtpReceiver-getStats.html": [ + [ + "/webrtc/RTCRtpReceiver-getStats.html", + {} + ] + ], + "webrtc/RTCRtpReceiver-getSynchronizationSources.https.html": [ + [ + "/webrtc/RTCRtpReceiver-getSynchronizationSources.https.html", + {} + ] + ], + "webrtc/RTCRtpSender-getCapabilities.html": [ + [ + "/webrtc/RTCRtpSender-getCapabilities.html", + {} + ] + ], + "webrtc/RTCRtpSender-getStats.html": [ + [ + "/webrtc/RTCRtpSender-getStats.html", + {} + ] + ], "webrtc/RTCRtpSender-replaceTrack.html": [ [ "/webrtc/RTCRtpSender-replaceTrack.html", {} ] ], + "webrtc/RTCRtpSender-setParameters.html": [ + [ + "/webrtc/RTCRtpSender-setParameters.html", + {} + ] + ], + "webrtc/RTCRtpTransceiver-setCodecPreferences.html": [ + [ + "/webrtc/RTCRtpTransceiver-setCodecPreferences.html", + {} + ] + ], + "webrtc/RTCRtpTransceiver-setDirection.html": [ + [ + "/webrtc/RTCRtpTransceiver-setDirection.html", + {} + ] + ], "webrtc/RTCSctpTransport-constructor.html": [ [ "/webrtc/RTCSctpTransport-constructor.html", {} ] ], + "webrtc/RTCTrackEvent-constructor.html": [ + [ + "/webrtc/RTCTrackEvent-constructor.html", + {} + ] + ], "webrtc/datachannel-emptystring.html": [ [ "/webrtc/datachannel-emptystring.html", @@ -377938,6 +383173,12 @@ {} ] ], + "webrtc/historical.html": [ + [ + "/webrtc/historical.html", + {} + ] + ], "webrtc/interfaces.html": [ [ "/webrtc/interfaces.html", @@ -379918,6 +385159,12 @@ } ] ], + "webstorage/storage_session_window_noopener.html": [ + [ + "/webstorage/storage_session_window_noopener.html", + {} + ] + ], "webstorage/storage_session_window_open.html": [ [ "/webstorage/storage_session_window_open.html", @@ -379954,6 +385201,12 @@ {} ] ], + "webusb/usb-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + [ + "/webusb/usb-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html", + {} + ] + ], "webusb/usb-allowed-by-feature-policy-attribute.https.sub.html": [ [ "/webusb/usb-allowed-by-feature-policy-attribute.https.sub.html", @@ -379978,12 +385231,96 @@ {} ] ], + "webusb/usbConnectionEvent.https.html": [ + [ + "/webusb/usbConnectionEvent.https.html", + {} + ] + ], + "webusb/usbDevice-iframe.https.html": [ + [ + "/webusb/usbDevice-iframe.https.html", + {} + ] + ], + "webusb/usbDevice.https.html": [ + [ + "/webusb/usbDevice.https.html", + {} + ] + ], + "webusb/usbInTransferResult.https.html": [ + [ + "/webusb/usbInTransferResult.https.html", + {} + ] + ], + "webusb/usbIsochronousInTransferPacket.https.html": [ + [ + "/webusb/usbIsochronousInTransferPacket.https.html", + {} + ] + ], + "webusb/usbIsochronousInTransferResult.https.html": [ + [ + "/webusb/usbIsochronousInTransferResult.https.html", + {} + ] + ], + "webusb/usbIsochronousOutTransferPacket.https.html": [ + [ + "/webusb/usbIsochronousOutTransferPacket.https.html", + {} + ] + ], + "webusb/usbIsochronousOutTransferResult.https.html": [ + [ + "/webusb/usbIsochronousOutTransferResult.https.html", + {} + ] + ], + "webusb/usbOutTransferResult.https.html": [ + [ + "/webusb/usbOutTransferResult.https.html", + {} + ] + ], "webvr/idlharness.html": [ [ "/webvr/idlharness.html", {} ] ], + "webvr/webvr-disabled-by-feature-policy.https.sub.html": [ + [ + "/webvr/webvr-disabled-by-feature-policy.https.sub.html", + {} + ] + ], + "webvr/webvr-enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + [ + "/webvr/webvr-enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html", + {} + ] + ], + "webvr/webvr-enabled-by-feature-policy-attribute.https.sub.html": [ + [ + "/webvr/webvr-enabled-by-feature-policy-attribute.https.sub.html", + {} + ] + ], + "webvr/webvr-enabled-by-feature-policy.https.sub.html": [ + [ + "/webvr/webvr-enabled-by-feature-policy.https.sub.html", + {} + ] + ], + "webvr/webvr-enabled-on-self-origin-by-feature-policy.https.sub.html": [ + [ + "/webvr/webvr-enabled-on-self-origin-by-feature-policy.https.sub.html", + {} + ] + ], "webvtt/api/VTTCue/align.html": [ [ "/webvtt/api/VTTCue/align.html", @@ -380062,6 +385399,12 @@ {} ] ], + "webvtt/api/VTTRegion/id.html": [ + [ + "/webvtt/api/VTTRegion/id.html", + {} + ] + ], "webvtt/api/VTTRegion/lines.html": [ [ "/webvtt/api/VTTRegion/lines.html", @@ -380104,6 +385447,12 @@ {} ] ], + "webvtt/api/historical.html": [ + [ + "/webvtt/api/historical.html", + {} + ] + ], "webvtt/api/interfaces.html": [ [ "/webvtt/api/interfaces.html", @@ -380122,6 +385471,12 @@ {} ] ], + "webvtt/parsing/cue-text-parsing/tests/text.html": [ + [ + "/webvtt/parsing/cue-text-parsing/tests/text.html", + {} + ] + ], "webvtt/parsing/cue-text-parsing/tests/timestamps.html": [ [ "/webvtt/parsing/cue-text-parsing/tests/timestamps.html", @@ -380428,6 +385783,12 @@ {} ] ], + "workers/WorkerLocation-origin.sub.window.js": [ + [ + "/workers/WorkerLocation-origin.sub.window.html", + {} + ] + ], "workers/WorkerLocation.htm": [ [ "/workers/WorkerLocation.htm", @@ -381430,6 +386791,24 @@ {} ] ], + "workers/worker-performance.worker.js": [ + [ + "/workers/worker-performance.worker.html", + {} + ] + ], + "worklets/animation-worklet-import.html": [ + [ + "/worklets/animation-worklet-import.html", + {} + ] + ], + "worklets/paint-worklet-import.html": [ + [ + "/worklets/paint-worklet-import.html", + {} + ] + ], "x-frame-options/deny.sub.html": [ [ "/x-frame-options/deny.sub.html", @@ -401744,65 +407123,251 @@ ] }, "wdspec": { - "webdriver/actions/conftest.py": [ - [ - "/webdriver/actions/conftest.py", - {} - ] - ], - "webdriver/actions/key.py": [ - [ - "/webdriver/actions/key.py", - {} - ] - ], - "webdriver/actions/mouse.py": [ - [ - "/webdriver/actions/mouse.py", - {} - ] - ], - "webdriver/actions/sequence.py": [ - [ - "/webdriver/actions/sequence.py", - {} - ] - ], - "webdriver/actions/special_keys.py": [ - [ - "/webdriver/actions/special_keys.py", - { - "timeout": "long" - } - ] - ], - "webdriver/conftest.py": [ - [ - "/webdriver/conftest.py", - {} - ] - ], - "webdriver/contexts.py": [ - [ - "/webdriver/contexts.py", - {} - ] - ], "webdriver/elements/active.py": [ [ "/webdriver/elements/active.py", {} ] ], - "webdriver/get_title.py": [ + "webdriver/tests/actions/conftest.py": [ [ - "/webdriver/get_title.py", + "/webdriver/tests/actions/conftest.py", {} ] ], - "webdriver/navigation.py": [ + "webdriver/tests/actions/key.py": [ [ - "/webdriver/navigation.py", + "/webdriver/tests/actions/key.py", + {} + ] + ], + "webdriver/tests/actions/mouse.py": [ + [ + "/webdriver/tests/actions/mouse.py", + {} + ] + ], + "webdriver/tests/actions/sequence.py": [ + [ + "/webdriver/tests/actions/sequence.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/actions/special_keys.py": [ + [ + "/webdriver/tests/actions/special_keys.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/conftest.py": [ + [ + "/webdriver/tests/conftest.py", + {} + ] + ], + "webdriver/tests/contexts/maximize_window.py": [ + [ + "/webdriver/tests/contexts/maximize_window.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/contexts/resizing_and_positioning.py": [ + [ + "/webdriver/tests/contexts/resizing_and_positioning.py", + {} + ] + ], + "webdriver/tests/cookies/cookies.py": [ + [ + "/webdriver/tests/cookies/cookies.py", + {} + ] + ], + "webdriver/tests/element_click/select.py": [ + [ + "/webdriver/tests/element_click/select.py", + {} + ] + ], + "webdriver/tests/fullscreen_window.py": [ + [ + "/webdriver/tests/fullscreen_window.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/get_window_rect.py": [ + [ + "/webdriver/tests/get_window_rect.py", + {} + ] + ], + "webdriver/tests/interaction/send_keys_content_editable.py": [ + [ + "/webdriver/tests/interaction/send_keys_content_editable.py", + {} + ] + ], + "webdriver/tests/minimize_window.py": [ + [ + "/webdriver/tests/minimize_window.py", + {} + ] + ], + "webdriver/tests/navigation/current_url.py": [ + [ + "/webdriver/tests/navigation/current_url.py", + {} + ] + ], + "webdriver/tests/navigation/get_title.py": [ + [ + "/webdriver/tests/navigation/get_title.py", + {} + ] + ], + "webdriver/tests/retrieval/find_element.py": [ + [ + "/webdriver/tests/retrieval/find_element.py", + {} + ] + ], + "webdriver/tests/retrieval/find_element_from_element.py": [ + [ + "/webdriver/tests/retrieval/find_element_from_element.py", + {} + ] + ], + "webdriver/tests/retrieval/find_element_from_elements.py": [ + [ + "/webdriver/tests/retrieval/find_element_from_elements.py", + {} + ] + ], + "webdriver/tests/retrieval/find_elements.py": [ + [ + "/webdriver/tests/retrieval/find_elements.py", + {} + ] + ], + "webdriver/tests/sessions/get_timeouts.py": [ + [ + "/webdriver/tests/sessions/get_timeouts.py", + {} + ] + ], + "webdriver/tests/sessions/new_session/conftest.py": [ + [ + "/webdriver/tests/sessions/new_session/conftest.py", + {} + ] + ], + "webdriver/tests/sessions/new_session/create.py": [ + [ + "/webdriver/tests/sessions/new_session/create.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/sessions/new_session/default_values.py": [ + [ + "/webdriver/tests/sessions/new_session/default_values.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/sessions/new_session/invalid_capabilities.py": [ + [ + "/webdriver/tests/sessions/new_session/invalid_capabilities.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/sessions/new_session/merge.py": [ + [ + "/webdriver/tests/sessions/new_session/merge.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/sessions/new_session/response.py": [ + [ + "/webdriver/tests/sessions/new_session/response.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/set_window_rect.py": [ + [ + "/webdriver/tests/set_window_rect.py", + { + "timeout": "long" + } + ] + ], + "webdriver/tests/state/get_element_attribute.py": [ + [ + "/webdriver/tests/state/get_element_attribute.py", + {} + ] + ], + "webdriver/tests/state/get_element_property.py": [ + [ + "/webdriver/tests/state/get_element_property.py", + {} + ] + ], + "webdriver/tests/state/get_element_tag_name.py": [ + [ + "/webdriver/tests/state/get_element_tag_name.py", + {} + ] + ], + "webdriver/tests/state/is_element_selected.py": [ + [ + "/webdriver/tests/state/is_element_selected.py", + {} + ] + ], + "webdriver/tests/state/text/get_text.py": [ + [ + "/webdriver/tests/state/text/get_text.py", + {} + ] + ], + "webdriver/tests/status.py": [ + [ + "/webdriver/tests/status.py", + {} + ] + ], + "webdriver/tests/user_prompts/accept_alert.py": [ + [ + "/webdriver/tests/user_prompts/accept_alert.py", + {} + ] + ], + "webdriver/tests/user_prompts/dismiss_alert.py": [ + [ + "/webdriver/tests/user_prompts/dismiss_alert.py", + {} + ] + ], + "webdriver/tests/user_prompts/get_alert_text.py": [ + [ + "/webdriver/tests/user_prompts/get_alert_text.py", {} ] ] @@ -401814,7 +407379,7 @@ "support" ], "./.gitignore": [ - "db3d1dc9d2e7ff65681a28e4dfcaeaaa8290afac", + "c8dab707b3810b2e1c7d2bb03dde0d302f7647ce", "support" ], "./.gitmodules": [ @@ -401822,7 +407387,7 @@ "support" ], "./.travis.yml": [ - "130d5c86ee06fc2bff6779ec8db90a86db7f0547", + "1e5af7c585f3789659d7a614cfbed060f763f3ad", "support" ], "./CONTRIBUTING.md": [ @@ -401838,51 +407403,19 @@ "support" ], "./README.md": [ - "3858f125599899a11b0949715318e43135711609", + "fa83617dc51fcc6f69732e43be203bc94de05ec1", "support" ], "./check_stability.ini": [ - "4ee10945191db8ce3e1d8bfae86bc3f0ad40868f", - "support" - ], - "./check_stability.py": [ - "164119b28e9dee2e29eff569dc3a59ec94a04a59", - "support" - ], - "./ci_built_diff.sh": [ - "1488986c7b100ff2b65b0abb3555806084f0a2bb", - "support" - ], - "./ci_lint.sh": [ - "8f26616f562c85c9a5bbd757590bf3a70faa44b8", - "support" - ], - "./ci_stability.sh": [ - "2d54d770ed8439a93e98961b3105b3248684744d", - "support" - ], - "./ci_unittest.sh": [ - "c3a982f623844d363af376e1add4c4616294f657", + "f8af4287f3b0f6925a2a6c5c75b3788e24de1680", "support" ], "./config.default.json": [ - "26f2c0e4aced7e1787adacb36e11c3cbf44bbd48", - "support" - ], - "./lint": [ - "ab5e8d20914f329be7e14690a21af641dd33f752", + "403d365196f6fe2c631d27fe6042e3114d204016", "support" ], "./lint.whitelist": [ - "59074d9f9b155631ac1bf03a9b4b40175ca8b538", - "support" - ], - "./manifest": [ - "a6fa6f29100b87d7bfb47672d91002d880e14c1e", - "support" - ], - "./serve": [ - "aa28dcfdd87f967544e051978bbccf9f3ce9c097", + "19621e7cafd9e6a43f3e54d8dd49c487b836c5b7", "support" ], "./serve.py": [ @@ -401894,15 +407427,31 @@ "support" ], "./update-built-tests.sh": [ - "99b5beb84b30521fa4c4a8a061acc309ee3d0d4a", + "d0184e7d0761064d0acaae095a50c0b1dfd9c3b6", "support" ], - "./wptrun": [ - "43c9d3fce7085be3c51a34cced8a69706c125219", + "./wpt": [ + "4312550682b01b597b993e75d0c521e9a26b09d9", + "support" + ], + "./wpt.py": [ + "d73918dcbe679eb70beff902500df84d56ddc74b", + "support" + ], + ".well-known/README.md": [ + "04a3fdbfc71c56c334f20d931dc7b427af2cce30", + "support" + ], + ".well-known/idp-proxy/README.md": [ + "ff5a09cfac1bf14fee4c6c057bac351e3229706a", + "support" + ], + ".well-known/idp-proxy/mock-idp.js": [ + "c6687ea38b936e06efda7e48c443250c289f3c62", "support" ], "2dcontext/2x2.png": [ - "c67d3f646e86413722833d2308a9bfc793a916bf", + "007be94902fda049d59255d281de42ab28cf109d", "support" ], "2dcontext/2x4.png": [ @@ -402594,7 +408143,7 @@ "support" ], "2dcontext/conformance-requirements/2d.missingargs.html": [ - "02cc4f67ed14d1e35eb97402879991001ba08a33", + "4bd35deb225149592999a5f9db32d5c5a3228a6b", "testharness" ], "2dcontext/conformance-requirements/2d.type.delete.html": [ @@ -402602,7 +408151,7 @@ "testharness" ], "2dcontext/conformance-requirements/2d.voidreturn.html": [ - "5333c70e61a2f762242f9bc085b453fbe16a6d48", + "63d998f1a4997ffedffd97b6f11ce3b8fd650666", "testharness" ], "2dcontext/drawing-images-to-the-canvas/.gitkeep": [ @@ -402753,221 +408302,17 @@ "4674a8a0b00f134aec38b80915cb16568c123218", "testharness" ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1.html": [ - "45cc6f5a95362cd6f8f101692afbfe25572ebc52", - "reftest" + "2dcontext/drawing-images-to-the-canvas/drawimage_canvas.html": [ + "3b15af010f2ce13316fed6fcab9d85e05484b60d", + "testharness" ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10.html": [ - "d6bde3c8a7cb6255b7e52065cef381eb63045972", - "reftest" + "2dcontext/drawing-images-to-the-canvas/drawimage_html_image.html": [ + "ec86f8f5c84628cd5f3b8673de8dde34dc372fd9", + "testharness" ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_10_ref.html": [ - "fc6d733f48745d483b6703ba59b32fc29ad8012f", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11.html": [ - "10c87532f043983ac8312be3a874d819f8e1e33c", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_11_ref.html": [ - "c8c570c550aac764217ccc0f9a683ffdc798cf3b", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12.html": [ - "2072da2d7ebe715814bcd36472095e701bff8f12", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_12_ref.html": [ - "948c7a4095a3f1da82812aa26ee32eee033c517a", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_1_ref.html": [ - "06a8ac92ae2e06670652b280eec5a8d91c7c9804", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2.html": [ - "7a79dc3b97ec80068e2f7437c1bcfc612d09fe72", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_2_ref.html": [ - "49b6f0e32f8ca6021e4d76f48c7bf9c2d9135303", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3.html": [ - "ad3af2745bdca16f90bb5a8bdfcdd6fd2b3306b4", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_3_ref.html": [ - "505f8af29ffffde788a4a9be8b7099f96b78c6b5", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4.html": [ - "05e96c0f9f62a2743b029119b348ed3e58279256", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_4_ref.html": [ - "56bf9b6acb0da3cab55367ec0f1b15655cb2be20", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5.html": [ - "58823be95d7cb39eca4b7683b9a3a9103a4c4f25", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_5_ref.html": [ - "4515e1303a684a0c83613f759cceccde4ef1ebf3", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6.html": [ - "fd09a7a1c596f9fa7ef12568d06bab2db45c4921", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_6_ref.html": [ - "948c7a4095a3f1da82812aa26ee32eee033c517a", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7.html": [ - "ae32d6351ecb6e3df1bf073b31561422e1743a10", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_7_ref.html": [ - "e1dbfa8e6bdd816be642e8b7ebf5537fa331dd59", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8.html": [ - "da697640dc83e4f7b7d0f020004e5adaff20c11d", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8_ref.html": [ - "a8245d6015224b501d26a6b84622f25e2d97f91f", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9.html": [ - "a7c9d8bd351c54a8b509c9935736fcefe4eb5476", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_canvas_9_ref.html": [ - "635d7901d4bc9a48828c5f65bbc7414eb6efa7fc", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1.html": [ - "8cff9e2344fbbe84b2ce315f260e69c6ad92dd51", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10.html": [ - "ca239d9a40410e4331863f2d11daabae3e590af3", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_10_ref.html": [ - "9a70c803aaf5bd8a843b18d6d16779575d4dc6f8", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11.html": [ - "04415ce09b3b52561f5d179e7a6a8050199189c9", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_11_ref.html": [ - "b51c787c97490eed29787cadf62b0c5e5cbd9180", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12.html": [ - "efee9a63933437315c9adec573113d8dee786659", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_12_ref.html": [ - "5529c622869289c1a64987216b525766003d5f8c", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13.html": [ - "50eb35b3f6f75bec5002df0893c37c00c005a8df", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_13_ref.html": [ - "30150e3530438d42704fda8b3623286658f6c724", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14.html": [ - "fa83293cfbdbb67a9d5d27a20ac19ff5d9c46d07", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_14_ref.html": [ - "0feedb34e5ade7a4e58cb4eb92e2b958a06929fe", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15.html": [ - "b37463cc33b46e9aba5bbe73244fd422ef38406e", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_15_ref.html": [ - "d6817ddb2ac78b524f7cc80ebd4f348aded4d89f", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_1_ref.html": [ - "9a70c803aaf5bd8a843b18d6d16779575d4dc6f8", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2.html": [ - "b03f11e43e455e2d1f453ecc2a4de00e00005ebc", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_2_ref.html": [ - "a95c84aace62371b4a58c381acaab51499cdeedb", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3.html": [ - "134fa026f56880acb111a8e91efe3a8bcc03bb6b", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_3_ref.html": [ - "59d699ac4347a4af4246c0333e14a91a201da15c", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4.html": [ - "5d7254f7bbc8c6feffb2a4fcfeecb06fe6ed3d6c", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_4_ref.html": [ - "6204815172949961351ea34906f99d05063bc78f", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5.html": [ - "6a02b961aa4a5eb013366cd85dbea06fd2c08da0", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_5_ref.html": [ - "5554083bf4b74facca2670cd28d1a57449931334", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6.html": [ - "ce7cbe3b76274177301acca263f7cdd6c4033aa1", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_6_ref.html": [ - "359acc11d83341062450e86162d831a9fc1ae158", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7.html": [ - "f5469ba799e0845bc59766d76713ee052f3e6966", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_7_ref.html": [ - "53efd12eca32f7898ddeabdca9b2e61f952b296d", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8.html": [ - "37958b2fb55bd90567c7c0b64b599165b20992b9", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_8_ref.html": [ - "89f6e5589e3619835d67e8d919ab6a507fb3bbb5", - "support" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9.html": [ - "25812771d9663a529f802ed3fbdaaf68c130341f", - "reftest" - ], - "2dcontext/drawing-images-to-the-canvas/drawimage_html_image_9_ref.html": [ - "5e4587978bcf32905a2676da269a5a09d7938718", - "support" + "2dcontext/drawing-images-to-the-canvas/drawimage_svg_image_1.html": [ + "d86bbcbac918dc468c484e46cc03e6125122d1ef", + "testharness" ], "2dcontext/drawing-model/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", @@ -404566,7 +409911,15 @@ "support" ], "2dcontext/imagebitmap/createImageBitmap-drawImage.html": [ - "78a4df712927cfdf78c27490e3186e77da403511", + "56ebe218b07fe534ded2c5734c0ecbd1b4c30d49", + "testharness" + ], + "2dcontext/imagebitmap/createImageBitmap-invalid-args.html": [ + "e839d537057d03f55108b871d2d32272cac7bc7f", + "testharness" + ], + "2dcontext/imagebitmap/createImageBitmap-sizeOverflow.html": [ + "977be16edd03dcfa70f3c6f987bad1455e44b93f", "testharness" ], "2dcontext/line-styles/.gitkeep": [ @@ -405889,6 +411242,10 @@ "89b84bac918d08d7d304213771a05097ee4fcee3", "testharness" ], + "2dcontext/text-styles/2d.text.font.parse.tiny.html": [ + "40109440e410076e11789c45e534099c230dba07", + "testharness" + ], "2dcontext/text-styles/2d.text.measure.width.space.html": [ "95d92a11068904059e0bbd21a774e9166f6079a7", "testharness" @@ -406018,7 +411375,7 @@ "support" ], "2dcontext/tools/current-work-canvas.xhtml": [ - "891246c4dfe34f9b43b5e642b058072c4d664817", + "c712cdec9ced8da63eb6b8dfce17906a4210883e", "support" ], "2dcontext/tools/gentest.py": [ @@ -406026,19 +411383,19 @@ "support" ], "2dcontext/tools/gentestutils.py": [ - "f613a789c0e231a3600070583661ba3b1842fed3", + "d7862903e270295fd11e2d98c5c4dbcde4ae0717", "support" ], "2dcontext/tools/name2dir.yaml": [ - "1333578a501fec686bc7ed22edf4cc8e7203ae13", + "3a852f1cc85eae2a17e67d56ce0c9bb5e4e69b41", "support" ], "2dcontext/tools/spec.yaml": [ - "4405a99f9fa29069670a1fb8aaef5e1c89ac33d0", + "4692cedcc0d1d5af9ac917fa19d3979e2129a933", "support" ], "2dcontext/tools/specextract.py": [ - "c6c58223012640480eb1e7d0b9ce4c343cafdb7c", + "5c656f7f4859ec0eb0559b1b1dfe6e085032d7c8", "support" ], "2dcontext/tools/templates.yaml": [ @@ -406046,15 +411403,15 @@ "support" ], "2dcontext/tools/tests.yaml": [ - "ce69d48960f561a0bf43b7346d7e387e2ac9e110", + "7a0d644759c65dc61373eaef42d7c9581683f660", "support" ], "2dcontext/tools/tests2d.yaml": [ - "ec014d7d44955c771414aa70748cabdcf48b3a2b", + "99a4d558b9ad07ae18fa71a6276d0b08db0f49e1", "support" ], "2dcontext/tools/tests2dtext.yaml": [ - "67b14fc993eb652d87c7a282dd6582d459e7f800", + "7ae8c51177c71b7b0e2394406e88f0096853b244", "support" ], "2dcontext/transformations/.gitkeep": [ @@ -406114,7 +411471,7 @@ "testharness" ], "2dcontext/transformations/2d.transformation.setTransform.multiple.html": [ - "5bf26a6a0b7a35d0127d04949616cb9f9034f218", + "6dfc04af35454f22aa8cf41289a974b34b430373", "testharness" ], "2dcontext/transformations/2d.transformation.setTransform.nonfinite.html": [ @@ -406214,7 +411571,7 @@ "testharness" ], "FileAPI/OWNERS": [ - "5e749f9ec12704ea48e99cf4c31e703e5325d419", + "f1d0cf569f445712d986e9a85f3cbc717137d7fe", "support" ], "FileAPI/blob/Blob-XHR-revoke.html": [ @@ -406278,7 +411635,7 @@ "manual" ], "FileAPI/idlharness.html": [ - "80280c78fd64daf52b994e96418b989aa61f2fd4", + "0eb0d3b2f6c394a6b30f71102bd002ae6e339283", "testharness" ], "FileAPI/idlharness.idl": [ @@ -406286,7 +411643,7 @@ "support" ], "FileAPI/idlharness.worker.js": [ - "3cb4879c7504d1152cd7c032f24b2a56c0670646", + "b1a1f7256b08c42c278ffe972b9ed3f51d17389b", "testharness" ], "FileAPI/progress-manual.html": [ @@ -406462,7 +411819,7 @@ "testharness" ], "IndexedDB/idb-binary-key-detached.htm": [ - "e7ed8b831bce3a06d21d629cd0112480dfc0f6a5", + "ff7f932150cca2156afd7eda9d97e49566942803", "testharness" ], "IndexedDB/idb-binary-key-roundtrip.htm": [ @@ -407582,15 +412939,15 @@ "testharness" ], "IndexedDB/interfaces.html": [ - "df929a719e8f3f8af4151b221c47f6f4c4f4039b", + "d2ff3cf10fbaf798d3bf5868699979829703d859", "testharness" ], "IndexedDB/interfaces.idl": [ - "0386e2b5923f9532549bfeeabc37dcc3528e3c78", + "f367517cad717e2066ad8179df9ba5aa3b402c97", "support" ], "IndexedDB/interfaces.worker.js": [ - "7edbb0cce85708e4b578ceae18a833fd623cd976", + "fdacaee0ed6b2a97b579495f5944df04e70b7deb", "testharness" ], "IndexedDB/interleaved-cursors.html": [ @@ -407634,7 +412991,7 @@ "testharness" ], "IndexedDB/keypath-exceptions.htm": [ - "24d150a9bddd39dd51821e01ddac4f45bdd04e91", + "5992b8baa05e57279efd2ba4098529676314a9f4", "testharness" ], "IndexedDB/keypath-special-identifiers.htm": [ @@ -407653,10 +413010,6 @@ "ef0680b2623521388e23654b5428cbfb553b4ee8", "testharness" ], - "IndexedDB/large-nested-cloning.html": [ - "831510a9d36a19081cf037940b19092e37303e19", - "testharness" - ], "IndexedDB/large-requests-abort.html": [ "7b8b1ccb8b7f9d737b648ceade5192a57c4ad690", "testharness" @@ -407669,6 +413022,22 @@ "d08882dc03b23cedaf1369c76937c95fec69df1e", "testharness" ], + "IndexedDB/nested-cloning-common.js": [ + "6e96fe11781f75b6beca649e9264c5e990ea7ffc", + "support" + ], + "IndexedDB/nested-cloning-large-multiple.html": [ + "6e16a5af0faab1406b6a2ae18397178b24440796", + "testharness" + ], + "IndexedDB/nested-cloning-large.html": [ + "5981f9fd67f8487e27494aea57cf3dae9eacb3e6", + "testharness" + ], + "IndexedDB/nested-cloning-small.html": [ + "9b9c7e27e3b80fc49c06406e05c251d2c66dacb0", + "testharness" + ], "IndexedDB/objectstore_keyorder.htm": [ "dda6c0ad4832b2a48980efdcb0efdae995c43fdd", "testharness" @@ -407882,7 +413251,7 @@ "testharness" ], "WebCryptoAPI/digest/digest.js": [ - "762440c527d20877cfaf5b0c900d8078e662c6bc", + "e68b81bd47af7373a63466ebe2fd13050d5d246d", "support" ], "WebCryptoAPI/digest/digest.worker.js": [ @@ -408286,31 +413655,27 @@ "support" ], "WebIDL/current-realm.html": [ - "167c7c1f53ae2bf457f6b3f917f0ef988c585c7c", + "3d9564314c7ce59ce6a29dfa94c35e496e214bf5", "testharness" ], - "WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.html": [ - "9ae0ceb48cac77c8470b114576ab17c2e7c1a88c", + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constants.any.js": [ + "34432979f039c4e1ba4eb90d4f2acc96d1d441d8", "testharness" ], - "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html": [ - "24f79517a695477aa4af4b1005ff24977fe44b72", + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.js": [ + "7fc6412ffa2a2586e5ea2dca7f5cdafba38c7585", "testharness" ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.html": [ - "480d5c2f21d8f18e5231e8293cf44d1050b9106a", + "WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.js": [ + "d297d4c52ecf1667cb79ddb076260f9005ee5df4", "testharness" ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.js": [ - "3d637243f719e2df7ecc9af4e44522e746f38ab7", - "support" - ], - "WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.js": [ - "b986594f41fc9df68ee2d3a3aaccae51bf7dd3e9", + "WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js": [ + "f20cbaff1efb774748241b90778a0964f5671fee", "testharness" ], "WebIDL/ecmascript-binding/es-exceptions/exceptions.html": [ - "15537c428eeb22a3addb13497ff02181666a1de1", + "fc4d6cf93ff64192ee325d7309ac267cf8ff5d6c", "testharness" ], "WebIDL/ecmascript-binding/has-instance.html": [ @@ -408329,6 +413694,10 @@ "4eac8c853a0627577d2bd96ed76c45bd187a5734", "testharness" ], + "WebIDL/ecmascript-binding/legacy-platform-object.html": [ + "24807487f4acea28e3b1315e0876d99a79fb592d", + "testharness" + ], "WebIDL/ecmascript-binding/put-forwards.html": [ "95fcfc28dae32ab9aadf21d2512a519d6a9fd5ab", "testharness" @@ -408337,6 +413706,10 @@ "8038a4e188651f4ccd24a3c3bcd3af773c55bc97", "testharness" ], + "WebIDL/interfaces.html": [ + "699d2feb7ed9f91ae04957131fcb23cebc19b621", + "testharness" + ], "WebIDL/invalid/idl/enum.widl": [ "cebcfcecfe4b09a4d3ea15e766e9b13044dfe0b8", "support" @@ -408849,12 +414222,204 @@ "07fc81c4d96ced6791efde32982fe3edff515cfe", "testharness" ], + "XMLHttpRequest/access-control-and-redirects-async-same-origin.htm": [ + "48f2e103991c8c308054fd873be8b561b412b9c7", + "testharness" + ], + "XMLHttpRequest/access-control-and-redirects-async.htm": [ + "46b2fb128461a926e0cfaf214b6df52197b45bf8", + "testharness" + ], + "XMLHttpRequest/access-control-and-redirects.htm": [ + "ff051032814b1242f527970edc58675e3e14fb98", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm": [ + "6693ba20a5241c7ab0261669cf24082a0a7c4e2f", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-access-control-origin-header.htm": [ + "88aa693115ee05b05adea5273bdfab501b167a60", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-async.htm": [ + "eb115b994e3d5de90ccf54a904266c347959f35b", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method-async.htm": [ + "280a31d318826ecf1405de6faa735495f2b40f9c", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-non-cors-safelisted-method.htm": [ + "bab7383cd05a3cb4d4e6a8e5287bc8e5810baad9", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-header.htm": [ + "567806f8997dc26cc5a9334aaa7dfe6c222404a5", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-invalidation-by-method.htm": [ + "782aca237c5d30a3a6ba2ee9be4824e01446e411", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache-timeout.htm": [ + "84567f027ffcff9f5a1ed9c17b984f5835d5882b", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-preflight-cache.htm": [ + "b2412a98e2a7a9ec4872bd8f42fc111b33a5ce7d", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow-star.htm": [ + "694f8b8d67002e7b27d98ea2eb32f27fee311cad", + "testharness" + ], + "XMLHttpRequest/access-control-basic-allow.htm": [ + "8c2f2df46c8086f657806f763e68d775e1294bd0", + "testharness" + ], + "XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm": [ + "29b6638f3de85cc39b77b86353dc49865e1fdc39", + "testharness" + ], + "XMLHttpRequest/access-control-basic-cors-safelisted-response-headers.htm": [ + "43748883f8bf38fe34e0c0f568dec6e1cc7c9b28", + "testharness" + ], + "XMLHttpRequest/access-control-basic-denied.htm": [ + "890170b5b2857a6e837ea3ed0dc4692e206a864a", + "testharness" + ], + "XMLHttpRequest/access-control-basic-get-fail-non-simple.htm": [ + "4641b3a58df7f1eeea460e995692418cfd63f507", + "testharness" + ], + "XMLHttpRequest/access-control-basic-non-cors-safelisted-content-type.htm": [ + "b6e15129e3e0917bb35f5b021ba7849b924d6945", + "testharness" + ], + "XMLHttpRequest/access-control-basic-post-success-no-content-type.htm": [ + "4e7a3f374bf054f9f49ed487c8f417374514293c", + "testharness" + ], + "XMLHttpRequest/access-control-basic-post-with-non-cors-safelisted-content-type.htm": [ + "d7877dca1a16e5c3f52881558f9951e4a5f78ba8", + "testharness" + ], + "XMLHttpRequest/access-control-basic-preflight-denied.htm": [ + "36a1951a7b814d7594e7474646ee9d03108208c6", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-async-header-denied.htm": [ + "f69a2fdd41df78f29187bfa848e88c5c39b60736", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-async-method-denied.htm": [ + "29bb39b957742d739bb0d54464b48a53533206fe", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-async-not-supported.htm": [ + "7520098b97455ca0795304751cef93197be469f6", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-credential-async.htm": [ + "ae93b44faf45f95927a1ee82052a414273333e61", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-credential-sync.htm": [ + "fa393dd9f33c2c7f151f00f034ae0f23a5bbf74a", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-headers-async.htm": [ + "bd10420c088f4e871d1377bf1b7e45d30c1458c9", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-headers-sync.htm": [ + "8dcf3427076b048f2a38890a15427d703c36728f", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-header-lowercase.htm": [ + "1f3beb7047a0f4828d44f67664a977469af75263", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-header-sorted.htm": [ + "45f904c2322ee7b14cc78075f99243bbad7ecd96", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-headers-origin.htm": [ + "7928f916ba92a1c7c13bb2c099ec08fc5f14429e", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-301.htm": [ + "e59e2de75149869531b056b53501b92302fdee04", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-400.htm": [ + "48fbbfd1a516469058e7559969eb1f36f02c3f14", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-invalid-status-501.htm": [ + "a59b9c8f77991992faade11e955061078b9d9623", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-request-must-not-contain-cookie.htm": [ + "78f95f6f962f1696a1ff37a6a3216fba4e741f56", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-sync-header-denied.htm": [ + "98e89f8ddccbba846b6f21f1d77b6a64554bcb52", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-sync-method-denied.htm": [ + "536deb1a3322c4ef45e259849e659d1fa4bea7c7", + "testharness" + ], + "XMLHttpRequest/access-control-preflight-sync-not-supported.htm": [ + "997d43197782650b479ccdef1cc43d8bde7e31e4", + "testharness" + ], + "XMLHttpRequest/access-control-recursive-failed-request.htm": [ + "03650f5362e483a6e29a05554723385ab601495f", + "testharness" + ], + "XMLHttpRequest/access-control-response-with-body-sync.htm": [ + "ae7e24c4b3b3295caa7e76555ac8a21d9062556a", + "testharness" + ], + "XMLHttpRequest/access-control-response-with-body.htm": [ + "e5b2ae207a2ae58bd20a4d6903991cff5e27b5a7", + "testharness" + ], + "XMLHttpRequest/access-control-response-with-exposed-headers.htm": [ + "9c4a5cf99e43f1315dfd73f543450e4056dcef36", + "testharness" + ], + "XMLHttpRequest/access-control-sandboxed-iframe-allow-origin-null.htm": [ + "2b507239c3e3fa6602068d6d92897c5d042a7a0d", + "testharness" + ], + "XMLHttpRequest/access-control-sandboxed-iframe-allow.htm": [ + "b1140eacc383af590578319b25ee803ba50c3fee", + "testharness" + ], + "XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm": [ + "a476086f22c912c13d4ac175af95c80f8e226c25", + "testharness" + ], + "XMLHttpRequest/access-control-sandboxed-iframe-denied.htm": [ + "32fcbfa28e93aad6e0040b5b1c9478ce76e7e06e", + "testharness" + ], + "XMLHttpRequest/allow-lists-starting-with-comma.htm": [ + "34a8d82f397f35902c73d9ced2f3cf900d04ae53", + "testharness" + ], "XMLHttpRequest/anonymous-mode-unsupported.htm": [ "54a03fefabfad02e09baa4e9d37e19b6403dad9b", "testharness" ], "XMLHttpRequest/data-uri.htm": [ - "46ebfd602e8d6821cb2e22181625609242d8459e", + "d42eb014a32cf82d7eba31ad9b80f51bff43eeea", "testharness" ], "XMLHttpRequest/event-abort.htm": [ @@ -408906,7 +414471,7 @@ "testharness" ], "XMLHttpRequest/event-upload-progress-crossorigin.htm": [ - "329b648fb3dc0169c5bf185ad9bb88245e7f889d", + "7a18f690ea1c7679d52ff0fd39ea931650d6b9c5", "testharness" ], "XMLHttpRequest/event-upload-progress.htm": [ @@ -409130,7 +414695,7 @@ "testharness" ], "XMLHttpRequest/open-url-worker-origin.htm": [ - "f105c0e4b249f82545f2763c4b1a23a3a217e3a7", + "1e377fb04baa8c55c2d656b572f285cfe71cbc7c", "testharness" ], "XMLHttpRequest/open-url-worker-simple.htm": [ @@ -409142,7 +414707,7 @@ "testharness" ], "XMLHttpRequest/overridemimetype-blob.html": [ - "e1b9cd224a563b32715a7d738e0070adca360be4", + "462d95dec7146c2a7beba5d8b2285fd2b8460002", "testharness" ], "XMLHttpRequest/overridemimetype-done-state.htm": [ @@ -409189,6 +414754,98 @@ "4769a0c31c00777fb37e1af76209e68040918b64", "support" ], + "XMLHttpRequest/resources/access-control-allow-lists.py": [ + "941a26e0b85d608bb2617362df74263564b5981d", + "support" + ], + "XMLHttpRequest/resources/access-control-allow-with-body.py": [ + "fbd35be708e601c7c3fb625ce28b9f43de784e13", + "support" + ], + "XMLHttpRequest/resources/access-control-auth-basic.py": [ + "08d5c99e4c576557cab5ddc56fda038aab767dee", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-allow-no-credentials.py": [ + "593fc8c4d78f0213017c0fb2fa78ac46274eb6ea", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-allow-star.py": [ + "d9aa8e1eaf8e73256edabafec32960bba8499f40", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-allow.py": [ + "b7351f59af91646549075b6b732eeb6c750e3faf", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-cors-safelisted-request-headers.py": [ + "19a0b1d88765fa152c17c7f684651be8c4bae3da", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-denied.py": [ + "35e7b6c552caf55e8ea7d34ec51d354c8eb2bc6e", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-options-not-supported.py": [ + "ee16a30ec1252bd66ef899f7c7bc8d3d0fb76562", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py": [ + "5b043f99d8f9d3f1c253324447df2d0586bf735a", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache-timeout.py": [ + "4e205534cff698089c017cd3f959f74862f3870a", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-preflight-cache.py": [ + "32e713011ca3c4235f8ef77c4ec49c08c6a49469", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-put-allow.py": [ + "eda02da8e1d89f28ff0e07442539b7eca4ca556f", + "support" + ], + "XMLHttpRequest/resources/access-control-basic-whitelist-response-headers.py": [ + "c530b8431372e0511c91b150c5f1015d504ae374", + "support" + ], + "XMLHttpRequest/resources/access-control-cookie.py": [ + "0551a6a4284fcae2ed5314d5d02767a4da1ad981", + "support" + ], + "XMLHttpRequest/resources/access-control-origin-header.py": [ + "529883eed380c4505c1ddbc87ae5885254756626", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-denied.py": [ + "b41ba9f1e3fcad508d575331e0f3f43bc75c07b9", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-request-header-lowercase.py": [ + "3f39f2f6bdda8c167df09525b8d23d04c16b2462", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-request-header-sorted.py": [ + "357dbf2f01ab59c8689af632c1116d2053f3829d", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-request-headers-origin.py": [ + "abc6b25627e019ae67b90beebad42164143321d0", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-request-invalid-status.py": [ + "c572b1e3d79f66df0a40766e6e4c3cc785458d0e", + "support" + ], + "XMLHttpRequest/resources/access-control-preflight-request-must-not-contain-cookie.py": [ + "1343bfee18c64bfbb625591bc65117e5b692c487", + "support" + ], + "XMLHttpRequest/resources/access-control-sandboxed-iframe.html": [ + "3aa5a903afc03e167a88322db44c29b287509f47", + "support" + ], "XMLHttpRequest/resources/auth1/auth.py": [ "cbe9305740f7e0a9e8c7be9dbfcb606f8abb2758", "support" @@ -409318,7 +414975,7 @@ "support" ], "XMLHttpRequest/resources/inspect-headers.py": [ - "c1bad8ca957dca4cc0a95909ba072f23d03eabd2", + "aab673bbdc7411c40ef2d7350486e779f3703e89", "support" ], "XMLHttpRequest/resources/invalid-utf8-html.py": [ @@ -409329,6 +414986,10 @@ "9af7a5f9be37e7ebbbea4c683bfb2d9415229ece", "support" ], + "XMLHttpRequest/resources/no-custom-header-on-preflight.py": [ + "76437951442df8d19438573add8bf2b2a0be4b18", + "support" + ], "XMLHttpRequest/resources/nocors/folder.txt": [ "92400e232461d345128d2d7303eb5f5bba12763f", "support" @@ -409337,6 +414998,14 @@ "cc9f324cf5b044646edfc6aa9e98cdc2a40e41b9", "support" ], + "XMLHttpRequest/resources/pass.txt": [ + "27d2303f215d7d1a8f12f0b80b9b56a2cdf6c9a7", + "support" + ], + "XMLHttpRequest/resources/redirect-cors.py": [ + "a04af2badb3f212a9ef48e3cde491f199a85b6bc", + "support" + ], "XMLHttpRequest/resources/redirect.py": [ "988961f44badedfcea4e1660339ea921178b7a42", "support" @@ -409345,6 +415014,18 @@ "7e84cbcb29783dd435c9be6ad960731d5d92706c", "support" ], + "XMLHttpRequest/resources/reset-token.py": [ + "ba56e4c405f81ea5ca396417ae7cd48f2029f7cb", + "support" + ], + "XMLHttpRequest/resources/responseType-document-in-worker.js": [ + "6f1477cf04fd21df905b4d14e00a67b29c98d961", + "support" + ], + "XMLHttpRequest/resources/responseXML-unavailable-in-worker.js": [ + "8ede1fa55ed1831f90022f2efb2b6e64b1cf4aea", + "support" + ], "XMLHttpRequest/resources/send-after-setting-document-domain-window-1.htm": [ "a4bd8b70cc61f9d403b529c079d47691a27abb8a", "support" @@ -409381,6 +415062,10 @@ "11a068dcf9fa14b05a24f15c0609143ba705e112", "support" ], + "XMLHttpRequest/resources/win-1252-html.py": [ + "c062b6b3440e7398a05d0c1db7a5e12d3aa7e58c", + "support" + ], "XMLHttpRequest/resources/win-1252-xml.py": [ "e4b0b7ebd6543479a74bdf76592b027b9383e0c9", "support" @@ -409477,8 +415162,20 @@ "fb0018f3cc052de846232231771ea8436ec4c8c0", "testharness" ], + "XMLHttpRequest/responseType-document-in-worker.html": [ + "4eceb42987047585ac193254951f900b5960975d", + "testharness" + ], + "XMLHttpRequest/responseXML-unavailable-in-worker.html": [ + "6111310764e8aac694655f173aef9653325ef7e8", + "testharness" + ], + "XMLHttpRequest/responsedocument-decoding.htm": [ + "5435b4fe9a2fe3e85766aca35f4f42a14486164b", + "testharness" + ], "XMLHttpRequest/responsetext-decoding.htm": [ - "fe5a326a1c2a18f1c16ae08c5edcf6c2be585468", + "538d6d5121157e04c44fd947140f2c913dc3b65e", "testharness" ], "XMLHttpRequest/responsetype.html": [ @@ -409598,7 +415295,7 @@ "testharness" ], "XMLHttpRequest/send-content-type-string.htm": [ - "98c309853c6ab4e453cc5b9a2ec771ab5aa75284", + "1f90fd9a583794013b505524c9d6d1bad3e4db9c", "testharness" ], "XMLHttpRequest/send-data-arraybuffer.htm": [ @@ -409806,7 +415503,7 @@ "testharness" ], "XMLHttpRequest/setrequestheader-content-type.htm": [ - "1b9023583c5d404cd036da58a076391568b42e71", + "388341fe59bbc12228bad7a605a26cab014220ad", "testharness" ], "XMLHttpRequest/setrequestheader-header-allowed.htm": [ @@ -409946,7 +415643,7 @@ "testharness" ], "accelerometer/Accelerometer.https.html": [ - "cb802e1f9df53ef6e8e3a34daf54f9e02b019383", + "cdf386711da6ef6a795bcf179e7c7ce373751f56", "testharness" ], "accelerometer/Accelerometer_insecure_context.html": [ @@ -409958,19 +415655,15 @@ "manual" ], "accelerometer/OWNERS": [ - "36770a71443523aa2f91f9958ba24066f0b4dcec", + "b119dbb984792f33c6e7463f3105d37c3c3b7ad8", "support" ], "accelerometer/idlharness.https.html": [ - "eedb225d9e8a05d528e62cc2d689dbfe36858052", + "a4b5c164268d6742e7da504d15d6b9eeb4cfc6ce", "testharness" ], - "accelerometer/support-iframe.html": [ - "5782b270802060f88a1842c2393fb7d18c8c75a8", - "support" - ], "ambient-light/AmbientLightSensor.https.html": [ - "3bc1a9bbc660ec9ee83f65914c35a52201eccb4b", + "86a1f84e2e034d58b2a7f6fc01880028b444c7cd", "testharness" ], "ambient-light/AmbientLightSensor_insecure_context.html": [ @@ -409982,17 +415675,13 @@ "manual" ], "ambient-light/OWNERS": [ - "72539a05ddcce7467524b36255696565a2c484e8", + "267fa5a34646c535ff4e4772543bc2c5d8aecc30", "support" ], "ambient-light/idlharness.https.html": [ - "0c0f48d162d3ef69b8fe1486a99cc315fab5ab31", + "f48a58b450fa15e820bef6d9c6f5dac834d8d6fb", "testharness" ], - "ambient-light/support-iframe.html": [ - "62024c4c0cff6fb5a21a6db62cd9756de0a2f479", - "support" - ], "annotation-model/.editorconfig": [ "18e9e31b4beb20bcfa5ad281584d816204a3f531", "support" @@ -411177,6 +416866,10 @@ "c578cc1a560dde5f9b7f478ed23570822e10fa26", "support" ], + "annotation-protocol/OWNERS": [ + "16577d2283b826f0541dbc795177c7aac7e1b228", + "support" + ], "annotation-protocol/README.md": [ "54f819a4ce6362242423199196c07ac965f99f9b", "support" @@ -411997,118 +417690,34 @@ "b9ba0287c92e5dbda1dc207ab45e9c90e8618878", "reftest" ], - "app-uri/OWNERS": [ - "e28f77cc2634a830fd6e144e22d9d217e5949b37", - "support" - ], - "app-uri/README.md": [ - "4436e7aeff0faf41a37b0e9d09651f8ee8eacd80", - "support" - ], - "app-uri/appURI_test.html": [ - "543d4c7d28f16424eb84666fa6ff6646c2f665f4", + "audio-output/HTMLMediaElement-sinkId-idl.html": [ + "8f37d8d2fc1cb9b5ad0d85234f733f534f4f0db8", "testharness" ], - "app-uri/resources/ExamPLE/mmY/index.html": [ - "27d2303f215d7d1a8f12f0b80b9b56a2cdf6c9a7", - "support" + "audio-output/setSinkId-manual.https.html": [ + "6743b9f6843a1c6134ac9cc627375b0368986e55", + "manual" ], - "app-uri/resources/ExamPLE/mmY/sth.txt": [ - "b7634884952a8c2af526d0adbbd4319fe782f141", - "support" - ], - "app-uri/resources/ExamPLE/{mY}/z...z/index.html": [ - "27d2303f215d7d1a8f12f0b80b9b56a2cdf6c9a7", - "support" - ], - "app-uri/resources/ImaGes/{{a}}/Test_1/$a/sth34!.png": [ - "ec7895dcf3afeb4ff750802b8711c41ad1c9a87d", - "support" - ], - "app-uri/resources/ImaGes/~t/{!a}/corrupted_file.png": [ - "29dac334ddd67f7622fd69116faa8f7accd7e6c6", - "support" - ], - "app-uri/resources/ImaGes/~t/{!a}/~sth.png": [ - "ec7895dcf3afeb4ff750802b8711c41ad1c9a87d", - "support" - ], - "app-uri/resources/icons/w3c-128.png": [ - "668553c70b6df1f5abf5d03b974aa2c7dadd5738", - "support" - ], - "app-uri/resources/icons/w3c-16.png": [ - "5413eb642995b8c7ff8977e6548a7895fdd27366", - "support" - ], - "app-uri/resources/icons/w3c-48.png": [ - "53c2735980b4d1b4ea30f47d79ac353df0242028", - "support" - ], - "assumptions/OWNERS": [ - "946f23f945163bf9f9da080291b21473f6e1cbd0", - "support" - ], - "assumptions/ahem-ref.html": [ - "f38cdd07d07558540e19c2b2ec063dbc54f8be7f", - "support" - ], - "assumptions/ahem.html": [ - "e097b6e6eb9ecf107cea94b3984661cc62c7ac67", - "reftest" - ], - "assumptions/canvas-background-ref.html": [ - "0868a5443b1aacb8fd95327bc7c71d071158b0f1", - "support" - ], - "assumptions/canvas-background.html": [ - "2f1a763d3e15a27a9220b1f084847f33092003d0", - "reftest" - ], - "assumptions/html-elements.html": [ - "dacd5dc7e1d723046d5e9eea0a0eb8046d501fca", + "audio-output/setSinkId.https.html": [ + "556ab735b0461aab4dbbb02d277da6ea07106469", "testharness" ], - "assumptions/initial-color-ref.html": [ - "23bd9bc50c23f6bdbe2c63bbd652a28e1a222586", - "support" - ], - "assumptions/initial-color.html": [ - "14b5a61881546831e2b2733ae9592b2f932f86c4", - "reftest" - ], - "assumptions/medium-font-size-ref.html": [ - "49f1b97b20c6ef7b0452e078fcfc56d8f3c14f77", - "support" - ], - "assumptions/medium-font-size.html": [ - "011f54dc11a955ac173621651c67b2282d046dd9", - "reftest" - ], - "assumptions/min-font-size-ref.html": [ - "5a0be668075cd811b2dc28267210c4cfdd692397", - "support" - ], - "assumptions/min-font-size.html": [ - "df47a9a9342da260175776c3406856be096d0012", - "reftest" - ], - "assumptions/tools/ahem-generate-table.py": [ - "ed433a26632138f063bbb6093b7f1850e0769c36", - "support" - ], - "assumptions/tools/build.sh": [ - "e7549e915a809b48cac816dacdd7a9bbf476b596", - "support" - ], - "auxclick/OWNERS": [ - "314d421a5544db277664bb55bd04b87e9ed2fdba", - "support" - ], "background-fetch/OWNERS": [ "0c4e22b970a92b2d77b0f50cc27c2d46aad0b43b", "support" ], + "background-fetch/content-security-policy.https.window.js": [ + "1675b0665319efe5ce8423230f839b20e3b6a63b", + "testharness" + ], + "background-fetch/credentials-in-url.https.window.js": [ + "6fa8d069c6f17da908078ac1a3770b2bd730426c", + "testharness" + ], + "background-fetch/dangling-markup.https.window.js": [ + "fd9efe16c485c6fa6cc4b587b492eb24bf9ccac2", + "testharness" + ], "background-fetch/interfaces-worker.https.html": [ "3bdcb55c864d99da109cdc0abe56c06aaf3e3d1e", "testharness" @@ -412118,13 +417727,29 @@ "testharness" ], "background-fetch/interfaces.idl": [ - "cb1f28998d888157cfde900072ab8220f9709837", + "f2c8fc84af7bf785ba42f1398181e2ab08c3826a", "support" ], "background-fetch/interfaces.worker.js": [ - "0c959d5fa41c3db70c326b83e064b8261a6f90b4", + "5027979889540dc52a763f3877f4a739a633aa0a", "testharness" ], + "background-fetch/mixed-content-and-allowed-schemes.https.window.js": [ + "13873d861416a40d831026a88f864f13a9447c7f", + "testharness" + ], + "background-fetch/port-blocking.https.window.js": [ + "6e06b6e9b9cd8713ff5a8ca405c1b54fe15c559c", + "testharness" + ], + "background-fetch/resources/sw.js": [ + "9b4fbabe0209a5367186e8c5717be88f32530027", + "support" + ], + "background-fetch/resources/utils.js": [ + "1109faf95d0b0d09f2eb9a486638d68af55cb52c", + "support" + ], "battery-status/OWNERS": [ "c08081d13e4029cf4fffb48c15d323d8b15a581b", "support" @@ -412150,7 +417775,7 @@ "testharness" ], "battery-status/battery-interface-idlharness.https.html": [ - "7f1578703d6f2a7d417b4d6569febb9f9836ea0e", + "6782a2da1811570e601d44422c385bc33f97cd70", "testharness" ], "battery-status/battery-plugging-in-manual.https.html": [ @@ -412177,8 +417802,60 @@ "61b61d09a21daee964e0ebd26f7bdfdd1964c8ae", "support" ], + "beacon/beacon-basic-blob.html": [ + "60262cdcf9a58117db70f2afdeed195c820b04c7", + "testharness" + ], + "beacon/beacon-basic-blobMax.html": [ + "fc22daa6ecfd30f94452f32250876709ceb0de64", + "testharness" + ], + "beacon/beacon-basic-buffersource.html": [ + "d5b79f5174e0d7d086e72cf8c2ae5b2ccbdc9dcb", + "testharness" + ], + "beacon/beacon-basic-buffersourceMax.html": [ + "1705d1ce9ca7e8ada8e143c404546b2b29f581fd", + "testharness" + ], + "beacon/beacon-basic-formdata.html": [ + "6157608b53dfe533307141d531fcfd9ac6acca9f", + "testharness" + ], + "beacon/beacon-basic-formdataMax.html": [ + "cd00ed52c24c8e7106d662594f5fafa0d48b37d4", + "testharness" + ], + "beacon/beacon-basic-string.html": [ + "d1bbdd45e304aee9e5a2ac462ca5fb95397e0c0c", + "testharness" + ], + "beacon/beacon-basic-stringMax.html": [ + "a02beda7ba6c743a1e104068ff9259c5c8741096", + "testharness" + ], + "beacon/beacon-common.sub.js": [ + "75bee9ae7588c181a9a4f3eb9bced109a0190bfc", + "support" + ], + "beacon/beacon-cors.sub.window.js": [ + "1821072ced64052cea6d2fc3ccb73cfe23a4235e", + "testharness" + ], + "beacon/beacon-error.window.js": [ + "3e78d3aba0964c79965c83727bb2a73381382a2e", + "testharness" + ], + "beacon/beacon-navigate.html": [ + "88999e7d123854f9e40411365b58da15d7d651a0", + "testharness" + ], + "beacon/beacon-redirect.window.js": [ + "8c75ccdace165cfc3697797b571c3d5ca79ac6a4", + "testharness" + ], "beacon/headers/header-content-type.html": [ - "5753ef82d17941aaf0c929da8952f88aa4186f02", + "86ea95acb53498323dde13266834bb4bd2f3ad35", "testharness" ], "beacon/headers/header-referrer-no-referrer-when-downgrade.https.html": [ @@ -412217,6 +417894,14 @@ "8185d2b31fbf67a573444d3c8f828f96422526f5", "support" ], + "beacon/navigate.iFrame.sub.html": [ + "03a7f2477d3efef7572b1c45a6ed113350aec948", + "support" + ], + "beacon/resources/beacon.py": [ + "12c892f085e2498f4c4abfda2409c61b0243a27f", + "support" + ], "beacon/resources/content-type.py": [ "0734a043b92b0a2646d643f14c0e7e0e33043b1d", "support" @@ -412233,22 +417918,70 @@ "5d4d8278b1f24798765974c35777f70fcbfc9cfa", "testharness" ], - "clear-site-data/navigation.html": [ - "daf340429ca71997c7d9c6021354522f0285c4d1", + "clear-site-data/navigation-insecure.html": [ + "97c069cf7c938e1ebdba3f243ad48369a7fb5542", + "testharness" + ], + "clear-site-data/navigation.https.html": [ + "462ebc571ae718c9b34ed78e8798c9edfec18e8d", + "testharness" + ], + "clear-site-data/resource.html": [ + "d60a41f939a4e69e162ba760f86f63bfaeef0360", + "testharness" + ], + "clear-site-data/storage.https.html": [ + "2b14613ad14aa9925b7882a972efd44c2ccc29e7", "testharness" ], "clear-site-data/support/echo-clear-site-data.py": [ - "d8768caed378b9a3eadeb7a566bcd099f6c2e9de", + "6d6822db671d4591d9c9d8aecfc9d6d2dcf2f308", "support" ], - "clear-site-data/support/test_utils.js": [ - "6980ed5592440f13bccbd83afdf6c6aa0b55e2f2", + "clear-site-data/support/page_with_resource.sub.html": [ + "246451c21ea53f7ac0868a5d8772aa4527dd5664", "support" ], - "clipboard/OWNERS": [ + "clear-site-data/support/send_report.html": [ + "352a8a947bfa42fd59a93181f8aedb64ee6e37ae", + "support" + ], + "clear-site-data/support/service_worker.js": [ + "eb87eb25d4b84ae78c57a7bd3cd3d43b4df99881", + "support" + ], + "clear-site-data/support/test_utils.sub.js": [ + "10f5f9d409ef513edb129e0e8522aa5f74d51ce8", + "support" + ], + "clipboard-apis/OWNERS": [ "bae753666bda85e9805a5e2fad80ba71459b8aba", "support" ], + "clipboard-apis/async-interfaces.https.html": [ + "68a1ea255a72e54e6a2147797d4213914a79aece", + "testharness" + ], + "clipboard-apis/async-navigator-clipboard-basics.https.html": [ + "59f25a9968d47079857989146e26562c3784be34", + "testharness" + ], + "clipboard-apis/async-write-dttext-read-dttext-manual.https.html": [ + "7b2a4d7f1e1e918f8a96694f6619875b746d0255", + "manual" + ], + "clipboard-apis/async-write-dttext-read-text-manual.https.html": [ + "d0fbfc54f1d1a68aaf5a2b96e25101dfe9aec883", + "manual" + ], + "clipboard-apis/async-write-text-read-dttext-manual.https.html": [ + "4b0df740f9f8fa6f3831b1255dde491b83e3ef6c", + "manual" + ], + "clipboard-apis/async-write-text-read-text-manual.https.html": [ + "e69933ca4cdc42105d469b7ffb105aa60a8e0875", + "manual" + ], "common/OWNERS": [ "13fbb201f77b9929d7f5693b70855c9b68abc70b", "support" @@ -412257,10 +417990,18 @@ "0516e849d40a16e82e1bb800372df28ed802aa8d", "support" ], + "common/PrefixedLocalStorage.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/PrefixedPostMessage.js": [ "2a2e37640bd0089be111d96eeed0b311753e0234", "support" ], + "common/PrefixedPostMessage.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/blank.html": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -412269,24 +418010,48 @@ "785ccd1f9e4b4eee437eeff66305b2b4041266dd", "support" ], + "common/canvas-frame.css.headers": [ + "1060d9437c410f4ee2a97f315d5dcc06640cfcb1", + "support" + ], "common/canvas-index.css": [ "13571798b21b833a302201801c6c768a589833a8", "support" ], + "common/canvas-index.css.headers": [ + "1060d9437c410f4ee2a97f315d5dcc06640cfcb1", + "support" + ], "common/canvas-spec.css": [ "f8338e4b6f3e725651820431adee039310a42432", "support" ], + "common/canvas-spec.css.headers": [ + "1060d9437c410f4ee2a97f315d5dcc06640cfcb1", + "support" + ], "common/canvas-tests.css": [ "5aeba7a0e72feba74a6cb4d707161131102792a0", "support" ], + "common/canvas-tests.css.headers": [ + "1060d9437c410f4ee2a97f315d5dcc06640cfcb1", + "support" + ], "common/canvas-tests.js": [ "329e3ae1cfde2ee0525302e6a3260faed3885f28", "support" ], + "common/canvas-tests.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/css-paint-tests.js": [ - "0e88a610e5ad9ff1deb04adec35b73caadbff201", + "81e8d7dc10c489d1d3ef2666a437b5e3972b9643", + "support" + ], + "common/css-paint-tests.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", "support" ], "common/css-red.txt": [ @@ -412317,6 +418082,10 @@ "4175d0fff3555e25a646b0673a082fefdc113fe0", "support" ], + "common/get-host-info.sub.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/large.py": [ "19d0b8d5fec34f080c37f1b1b837ea0c2401ad82", "support" @@ -412325,12 +418094,24 @@ "a575b8135e6ddb1501fc2a082d7544ee86011b7d", "support" ], + "common/media.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/object-association.js": [ "c6955b7bbf00d73ec5959678391aa59d36da8321", "support" ], + "common/object-association.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/performance-timeline-utils.js": [ - "0616ad8871126af7a74ff6937f3f7c623adcbd3e", + "cf06f5a0e00f29d862753144634b4e1d0f074fb8", + "support" + ], + "common/performance-timeline-utils.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", "support" ], "common/redirect-opt-in.py": [ @@ -412345,14 +418126,26 @@ "613bcbbcdfeadf3f460d9c0a3fc96049d0e54783", "support" ], + "common/reftest-wait.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/stringifiers.js": [ "4c6d28a4b6d982edeb5232fa624936254f2df5f0", "support" ], + "common/stringifiers.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/test-setting-immutable-prototype.js": [ "2cafc5c2b867e0fd6f738b1fbeaa503761c400b7", "support" ], + "common/test-setting-immutable-prototype.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], "common/text-plain.txt": [ "38df1ae8fa75f343d9c584ee7b68cbd12948ba68", "support" @@ -412361,10 +418154,42 @@ "1d8598ff2c801c54c0f9be1c688b753bb6291c94", "support" ], - "common/vendor-prefix.js": [ - "b80ec842b65a3423dd789a2226f2ba3caf598049", + "common/utils.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", "support" ], + "common/vendor-prefix.js.headers": [ + "e3593850f8098d3f3ff82c042deab15f51c66a52", + "support" + ], + "compat/OWNERS": [ + "e714708a95e56bc556b64d991cb72f0ccace4f92", + "support" + ], + "compat/green-ref.html": [ + "4b23ea52d785a6dd19785bd4278bf700eb5547f8", + "support" + ], + "compat/historical.html": [ + "2d71e7532fc32af61d2410927b6405a9e79279a4", + "testharness" + ], + "compat/webkit-linear-gradient-line-bottom.html": [ + "af59a0aa3b8a195ba7ef401b582be9384a23a388", + "reftest" + ], + "compat/webkit-linear-gradient-line-left.html": [ + "f131166051da9a82ede93f076f15832f61f39234", + "reftest" + ], + "compat/webkit-linear-gradient-line-right.html": [ + "2d87c4a09d77f3171fa91bbf8f2f0b1a412b7d94", + "reftest" + ], + "compat/webkit-linear-gradient-line-top.html": [ + "be7fb91dc6459617c20232cd5333e9b3340f3341", + "reftest" + ], "compat/webkit-text-fill-color-currentColor.html": [ "7512b6ce45b5528ee7b9794c32954e954d736f88", "testharness" @@ -426697,7 +432522,7 @@ "690672633429a925ffecc0d3d92c751b4d8b3c02", "support" ], - "conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-novalid.html": [ + "conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-valid.html": [ "415d4b7e85b43c2e3cf46fb22316b8bd35a4d905", "support" ], @@ -429590,7 +435415,7 @@ "support" ], "conformance-checkers/messages.json": [ - "742126ed2e1c98c54dea09f903eca1879848d338", + "77e43d470fe6884315c194bb64b0acec88e29827", "support" ], "conformance-checkers/tools/build-svg-tests.py": [ @@ -430801,18 +436626,10 @@ "d847dfa9fec3763edd4b8d1e0394e5c991d37524", "support" ], - "content-security-policy/blink-contrib/manifest-src-allowed.sub.html": [ - "87232e07bea2e0b932f1de48ea9349ba21883cda", - "support" - ], "content-security-policy/blink-contrib/manifest-src-allowed.sub.html.sub.headers": [ "b8aecfde2a75b6c0a0475e39c38f0802df07b503", "support" ], - "content-security-policy/blink-contrib/manifest-src-blocked.sub.html": [ - "87232e07bea2e0b932f1de48ea9349ba21883cda", - "support" - ], "content-security-policy/blink-contrib/manifest-src-blocked.sub.html.sub.headers": [ "903f086b16a9f45d27a6b92345473e1e139b241c", "support" @@ -430849,38 +436666,6 @@ "368845671fc996d39fd6f85c113a26cdaa98ee3e", "support" ], - "content-security-policy/blink-contrib/object-src-applet-archive-codebase.sub.html": [ - "7f81f0fe6a5ed984e6084250672e598a2fe2c707", - "testharness" - ], - "content-security-policy/blink-contrib/object-src-applet-archive-codebase.sub.html.sub.headers": [ - "37429d7e5523b4fa092f319e0348abf62f1fe95e", - "support" - ], - "content-security-policy/blink-contrib/object-src-applet-archive.sub.html": [ - "9d07979a968cea9958c237e465b3562fac0d6e65", - "testharness" - ], - "content-security-policy/blink-contrib/object-src-applet-archive.sub.html.sub.headers": [ - "0e9b0159e148542c330eeb1c9501911e2e0473c0", - "support" - ], - "content-security-policy/blink-contrib/object-src-applet-code-codebase.sub.html": [ - "5b0ef3d19498af074fbd2ca00b6af16774b1b4cc", - "testharness" - ], - "content-security-policy/blink-contrib/object-src-applet-code-codebase.sub.html.sub.headers": [ - "eac4a0d1aecb5475bb88b223deec64209f98b25c", - "support" - ], - "content-security-policy/blink-contrib/object-src-applet-code.sub.html": [ - "5827478d16c8bf8f473daae756eaeabaafdee879", - "testharness" - ], - "content-security-policy/blink-contrib/object-src-applet-code.sub.html.sub.headers": [ - "8d1f3d53e9702d62946969231a45c79f26e6e287", - "support" - ], "content-security-policy/blink-contrib/object-src-no-url-allowed.sub.html": [ "e4cd8d8e7a3150626eea1d6ca7beed13feb6a76c", "testharness" @@ -430998,7 +436783,7 @@ "support" ], "content-security-policy/blink-contrib/resources/go-to-echo-report.js": [ - "621ddec05f232bac83af53c5bc58035dfa6679ee", + "cf5a9535e88f5fa1ef702fd67f3abbc66a7707da", "support" ], "content-security-policy/blink-contrib/resources/inject-image.js": [ @@ -431342,7 +437127,7 @@ "testharness" ], "content-security-policy/connect-src/connect-src-beacon-blocked.sub.html": [ - "0965458e1d32dacec7a9379a7f0e484277389398", + "4d88ea8d1c46369639c32b8301cfface99c0bef2", "testharness" ], "content-security-policy/connect-src/connect-src-eventsource-blocked.sub.html": [ @@ -431438,19 +437223,19 @@ "support" ], "content-security-policy/font-src/font-match-allowed.sub.html": [ - "b86342dc1007155ec1b3f216f0fcba18d147cf09", + "4bc23af2a5a3280630e50cc4c35a9769e499b7a6", "testharness" ], "content-security-policy/font-src/font-mismatch-blocked.sub.html": [ - "93dbab4e5ce5b6e22bfd9ab7c4a7f9ff559c8045", + "274372eb59cca6e399d8c786d7a0f443c6f35254", "testharness" ], "content-security-policy/font-src/font-none-blocked.sub.html": [ - "6e37e31d96d956543e877d99f0fcfe9a13742ee1", + "a4be6133c29126bc833f4a127524372d9435baff", "testharness" ], "content-security-policy/font-src/font-self-allowed.html": [ - "a1dd23693dffbe7c1169d8116f0dfab6364003f3", + "5c506f77de6efb56d1b4f488c81b750fe757720a", "testharness" ], "content-security-policy/font-src/font-stylesheet-font-blocked.sub.html": [ @@ -431777,6 +437562,14 @@ "4114664a54645718ccbb5292f5103dc1942724aa", "testharness" ], + "content-security-policy/inheritance/iframe.html": [ + "3121f2277196e721af7d8cd522be148c875c79bd", + "testharness" + ], + "content-security-policy/inheritance/window.html": [ + "5a59b9b239186ad49aa1928f0beb9cf4234b4a6e", + "testharness" + ], "content-security-policy/inside-worker/dedicated-inheritance.html": [ "225fa2ffe085ac9b419d7ed5287cfad28f3945bf", "testharness" @@ -431881,6 +437674,18 @@ "2553698b40d91f95f33bb14e7bd906d665b0381a", "testharness" ], + "content-security-policy/navigation/javascript-url-navigation-inherits-csp.html": [ + "bb01b98b633fe5ffb79b1b4e0943a77b85a11057", + "testharness" + ], + "content-security-policy/navigation/support/test_csp_self_window.sub.html": [ + "df2273c83ff0d663fdcd46d91a0eb0e8a743b49b", + "support" + ], + "content-security-policy/navigation/support/test_csp_self_window.sub.html.sub.headers": [ + "44b5dae4b9d0c5570e79d4fed8a7e8a709470c95", + "support" + ], "content-security-policy/navigation/to-javascript-url-frame-src.html": [ "3070ea56bcb7dc454d7bc252377f0dc5bcb03c7c", "testharness" @@ -431969,6 +437774,14 @@ "9256478a189aeabb765763a48fda9a6fd2ab077e", "support" ], + "content-security-policy/script-src/javascript-window-open-blocked.html": [ + "7d047c4966eee6c35a6bf24a80b4fbb672cb89b4", + "testharness" + ], + "content-security-policy/script-src/javascript-window-open-blocked.html.sub.headers": [ + "e8583f7292cd90aa13e0e997aedf41763eb18928", + "support" + ], "content-security-policy/script-src/script-src-1_1.html": [ "c547fd94e350bfd49541734515a4068de44f525d", "testharness" @@ -432041,6 +437854,38 @@ "4c2700452b8e0cb5451ee00aaa8ff92f12e9623e", "support" ], + "content-security-policy/script-src/script-src-multiple-policies-multiple-hashing-algorithms.html": [ + "0f0f571fbc0db3b96112cb62f66d03c45674c127", + "testharness" + ], + "content-security-policy/script-src/script-src-multiple-policies-multiple-hashing-algorithms.html.sub.headers": [ + "dec2d5659d318a58d7e957837ce3a217db2ea649", + "support" + ], + "content-security-policy/script-src/script-src-multiple-policies-one-using-hashing-algorithms.html": [ + "c0407821e7f7de5d80d601c7e693b0e283902e61", + "testharness" + ], + "content-security-policy/script-src/script-src-multiple-policies-one-using-hashing-algorithms.html.sub.headers": [ + "39b7686073001e610bee5ba2a2c1083080b1aa68", + "support" + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-external-hash-policy.html": [ + "f43c7510cf175e41d18b87f084136efeb22a0d86", + "testharness" + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-external-hash-policy.html.sub.headers": [ + "6d5a35850052379753d5e39fe30aca1ddc9635f7", + "support" + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-hash-policy.html": [ + "a7b51858b4c9a967bf740e76a5e1de726f5dfcdd", + "testharness" + ], + "content-security-policy/script-src/script-src-report-only-policy-works-with-hash-policy.html.sub.headers": [ + "57c9026a7add5b8de2b153b14039787d44cbfa83", + "support" + ], "content-security-policy/script-src/script-src-sri_hash.sub.html": [ "c720b6a69726026ea34545b94bcdc7cef443c453", "testharness" @@ -432177,6 +438022,10 @@ "a50a792b1ef19fe452196e5e50036d6de01dc6e5", "support" ], + "content-security-policy/script-src/script-src-strict_dynamic_worker-importScripts.https.html": [ + "99a224807bf8aefd4460ebadccb8bfa8aee30f1d", + "testharness" + ], "content-security-policy/script-src/script-src-strict_dynamic_worker.https.html": [ "a59f7f33614eb541a216b317f0916271f359ba1b", "testharness" @@ -432218,11 +438067,11 @@ "testharness" ], "content-security-policy/securitypolicyviolation/script-sample-no-opt-in.html": [ - "44cad18dc963c49062c0f3b7ea7a8951157cbcb7", + "f36718ff0a9040db0b9257f772f5bcae98ae2305", "testharness" ], "content-security-policy/securitypolicyviolation/script-sample.html": [ - "009e5de237b0aa1d3b7e2c100cb8fdf9bb1080a5", + "9e2ad606d8c3d17f6417134f84aef32305c92c49", "testharness" ], "content-security-policy/securitypolicyviolation/securitypolicyviolation-block-cross-origin-image-from-script.sub.html": [ @@ -432353,6 +438202,14 @@ "7f50fcc3b1c1a6ed9ee57f3e93114522b7736fc5", "testharness" ], + "content-security-policy/style-src/style-src-multiple-policies-multiple-hashing-algorithms.html": [ + "a50ea52186d51091482e8e12b7087fcac050dc5e", + "testharness" + ], + "content-security-policy/style-src/style-src-multiple-policies-multiple-hashing-algorithms.html.sub.headers": [ + "b735c690c93a323d71cedf2a05bca301fb8fed3f", + "support" + ], "content-security-policy/style-src/style-src-none-blocked.html": [ "31f823b50c081e59c8624c08e5a9d8c9274378c8", "testharness" @@ -432369,10 +438226,6 @@ "a46cfc14f19813fc3b71928dd4b9d459f318b035", "testharness" ], - "content-security-policy/support/Ahem.ttf": [ - "8cdc9e68594fbb6db8c7b4bff643ab2432b51db6", - "support" - ], "content-security-policy/support/alert-pass.js": [ "9d9311651dff245f3c45fca59bacac7804a48746", "support" @@ -432402,7 +438255,11 @@ "support" ], "content-security-policy/support/fonts.css": [ - "6bf8e753cdcdebcd0d50f20d4c64e267897fedf4", + "4577fb4f580bfd9c723e1a5ee0f9d8438ce41ac9", + "support" + ], + "content-security-policy/support/import-scripts.js": [ + "79a3767181ce25e78a574f8bd51f8bc796bee0b8", "support" ], "content-security-policy/support/inject-image.js": [ @@ -432501,6 +438358,18 @@ "3cb51cc3be98ab648a58c858727e749bfdf53424", "testharness" ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_allowed.html": [ + "3dac897440d3bcca283c606c51d23a9d37c66a62", + "testharness" + ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_matching_hash_no_unsafe_inline_attribute.html": [ + "2864ff4485ab5fee87000898cba6c9d786586684", + "testharness" + ], + "content-security-policy/unsafe-hashed-attributes/script_event_handlers_denied_not_matching_hash.html": [ + "d4f78683e9e76a341134c34be726d435d113b71b", + "testharness" + ], "content-security-policy/worker-src/dedicated-child.sub.html": [ "fb394b266d3c21a44d7f0edfbbcc5d5ff31e8b6f", "testharness" @@ -432585,6 +438454,10 @@ "6532cda9322290949bedc06cdc45ce80521068aa", "testharness" ], + "cookies/secure/set-from-dom.sub.html": [ + "aa0f2272bb79fb6e83f533c1c4e452372e125822", + "testharness" + ], "cookies/secure/set-from-http.https.sub.html": [ "b6e52fd4c91631976c64340dc6e672e329e32937", "testharness" @@ -432593,6 +438466,10 @@ "163473a9d34481457eb0fc689ad3b5e985e45a8a", "support" ], + "cookies/secure/set-from-http.sub.html": [ + "89e4afad6ceefc5728ef91092fedfa155fc3f880", + "testharness" + ], "cookies/secure/set-from-http.sub.html.headers": [ "b1b6ee4d317f108574453da7410f91d52eecdf83", "support" @@ -432605,6 +438482,894 @@ "31461ac108fe717b074a41e14c12d9b83c064f85", "testharness" ], + "core-aam/OWNERS": [ + "3a6002295ea2893ba74763e46965bd2d1291d55b", + "support" + ], + "core-aam/README.md": [ + "a910a51a7869305635992eb784b0ddfe70d8f8ae", + "support" + ], + "core-aam/alert-manual.html": [ + "c859aafe43f6e9123de0a080356bf28ab69cdef1", + "manual" + ], + "core-aam/alertdialog-manual.html": [ + "718e0c7c4ac148fde7d58115dced3c77c1d262ef", + "manual" + ], + "core-aam/application-manual.html": [ + "003e33f14415d88ef226f8a654c12a6f7072ab4d", + "manual" + ], + "core-aam/aria-atomic_false-manual.html": [ + "c31104df1f2d21b3280d215a16f3c2cda45aa87c", + "manual" + ], + "core-aam/aria-atomic_true-manual.html": [ + "1c4378409a9a19e6039f1bf677ee389992641076", + "manual" + ], + "core-aam/aria-autocomplete_both-manual.html": [ + "4334983a8cc2d70bc141393b693b9f739764adcf", + "manual" + ], + "core-aam/aria-autocomplete_inline-manual.html": [ + "a59669dd7daff22770ab0b224330da40eda091f5", + "manual" + ], + "core-aam/aria-autocomplete_list-manual.html": [ + "b1ef9ebea38ad1e565b593027199a1b25174ecf1", + "manual" + ], + "core-aam/aria-busy_false-manual.html": [ + "5a864465eeabb2616c9de41c155dab1de2a41470", + "manual" + ], + "core-aam/aria-busy_true-manual.html": [ + "1e1732ed47bb0ed692b5ee6fdfb0e13407d9508a", + "manual" + ], + "core-aam/aria-busy_value_changes-manual.html": [ + "37072fdc4353a6edc509eb82fbcf041123e1bdd7", + "manual" + ], + "core-aam/aria-checked_false_on_checkbox-manual.html": [ + "a876e8cd2f5909c9244266e74bcb2c43d4644a0d", + "manual" + ], + "core-aam/aria-checked_false_on_menuitemradio-manual.html": [ + "33d1fafc0b1dead3b87bf63f2da16a7d700e2304", + "manual" + ], + "core-aam/aria-checked_mixed-manual.html": [ + "3a0d20457b5adaa0a1557f5c9311831ab2ad4d78", + "manual" + ], + "core-aam/aria-checked_true_on_checkbox-manual.html": [ + "203a4c3c635bcb21ec99a15595a64173a5ebed70", + "manual" + ], + "core-aam/aria-checked_true_on_menuitemradio-manual.html": [ + "7a2aa3896861003e90b4c3e8e73adfaca8dcaf7e", + "manual" + ], + "core-aam/aria-checked_value_changes-manual.html": [ + "1b60088a1e7441cd4074fec2f674d9f055e5841e", + "manual" + ], + "core-aam/aria-colcount_new-manual.html": [ + "04fd57706e621226bd4ba173e56a61ea59f2bba6", + "manual" + ], + "core-aam/aria-colindex_new-manual.html": [ + "8365f1b54c90e5c2cbc451512ec74b36bc83b925", + "manual" + ], + "core-aam/aria-colspan_new-manual.html": [ + "916205a9d0595a3cc0f35763a5c43ddf6a1b578e", + "manual" + ], + "core-aam/aria-controls-manual.html": [ + "f61aca68b1ae4709cb883d1281aadb418203d67a", + "manual" + ], + "core-aam/aria-current_value_changes-manual.html": [ + "3422e86f65c3bd3886ae2d6c820670bcb6e9d681", + "manual" + ], + "core-aam/aria-current_with_non-false_allowed_value_new-manual.html": [ + "2eefb0c82d0b79eb0d248c29891b18df10eecd6c", + "manual" + ], + "core-aam/aria-current_with_unrecognized_value_new-manual.html": [ + "3a74e4a0dc60d5bb7a4611c9953b2bc8a358766a", + "manual" + ], + "core-aam/aria-describedby-manual.html": [ + "042028f26f5cd2a268fc04c5055d4778e5570da3", + "manual" + ], + "core-aam/aria-details_new-manual.html": [ + "35b69bdb2c33a8a6366dade9c177c49e8794f411", + "manual" + ], + "core-aam/aria-disabled_false-manual.html": [ + "a86ac2e0b8f9df36bb9b13a0db2a7d4017c17cc8", + "manual" + ], + "core-aam/aria-disabled_true-manual.html": [ + "ab71f5a8b037aea3acbeaf7595873396e0683c4b", + "manual" + ], + "core-aam/aria-disabled_value_changes-manual.html": [ + "b39c020d186b3098c55e6f51288ef7d00a302216", + "manual" + ], + "core-aam/aria-dropeffect_copy-manual.html": [ + "904734aa17a6281fcb7fa3f129ff240869153236", + "manual" + ], + "core-aam/aria-dropeffect_execute-manual.html": [ + "af47742a879ef4b4dc75a5a8d77a3b546c3cc31f", + "manual" + ], + "core-aam/aria-dropeffect_link-manual.html": [ + "ad688f3230161fa22457d7c71bfab32232b541b0", + "manual" + ], + "core-aam/aria-dropeffect_move-manual.html": [ + "ae5d81fb4cc1f5b3053d51a9db612364743f0ee4", + "manual" + ], + "core-aam/aria-dropeffect_none-manual.html": [ + "e10b72943abf5950f09e4f2fcaca5c256c60c4bf", + "manual" + ], + "core-aam/aria-dropeffect_popup-manual.html": [ + "3f28bb13ccc039cd183367749a69d4bd953d8b58", + "manual" + ], + "core-aam/aria-dropeffect_value_changes-manual.html": [ + "448a3821b05732ca142b545c419dba13f39e3333", + "manual" + ], + "core-aam/aria-errormessage-manual.html": [ + "b2cc894907f3fff1092f102adc58bdd878f434b9", + "manual" + ], + "core-aam/aria-expanded_false-manual.html": [ + "249d36e19d4ca26b281a1eb9f623c107fdc11567", + "manual" + ], + "core-aam/aria-expanded_true-manual.html": [ + "6374a29b6a2bc008f12884d361149139070ea1a4", + "manual" + ], + "core-aam/aria-expanded_value_changes-manual.html": [ + "4695aed01e4473c45e723f1e21bfff74c1231a98", + "manual" + ], + "core-aam/aria-flowto-manual.html": [ + "ab781f7aed85fbb840bb3b38e1b16897d0cb9b20", + "manual" + ], + "core-aam/aria-grabbed_false-manual.html": [ + "9fc589158670650b9016af89c5d0dbf8e2f99f4e", + "manual" + ], + "core-aam/aria-grabbed_true-manual.html": [ + "d55d6a540ca0200aa63b15ab3cc50e914c4e15bd", + "manual" + ], + "core-aam/aria-grabbed_value_changes-manual.html": [ + "9c89d94f4f91efe0e23cb068ecb455d8a2a60d36", + "manual" + ], + "core-aam/aria-haspopup_dialog_new-manual.html": [ + "fce55e4f6982abee6f158b36c1df06a6f775d2c8", + "manual" + ], + "core-aam/aria-haspopup_false-manual.html": [ + "4fbd1d6a7e229c5d92efb34e77a1ec552e4e2bac", + "manual" + ], + "core-aam/aria-haspopup_listbox_new-manual.html": [ + "c8e6ce5f5b52b55136c22742d9168264cb126e4d", + "manual" + ], + "core-aam/aria-haspopup_menu_new-manual.html": [ + "ad0ed72f17a76c05dd0aa873418084167d837b00", + "manual" + ], + "core-aam/aria-haspopup_tree_new-manual.html": [ + "99a729c76d38e1d500f99c940d895b634dab7055", + "manual" + ], + "core-aam/aria-haspopup_true-manual.html": [ + "0610a9c974ed3b1f7ff2c3ca0a76c20db57606c5", + "manual" + ], + "core-aam/aria-hidden_true-manual.html": [ + "4ad0f934d67800e562343f2f0409da87035655e8", + "manual" + ], + "core-aam/aria-hidden_true_when_element_is_focused_or_fires_event_new-manual.html": [ + "cff04a903a339c608d25e76bdae6ee4c9dc983f5", + "manual" + ], + "core-aam/aria-hidden_value_changes-manual.html": [ + "ab82bdb93aee0de057c47d69ea5afecf4c723d73", + "manual" + ], + "core-aam/aria-invalid_false-manual.html": [ + "9afee59c1274f99de33bbcc4c2730e40671f3361", + "manual" + ], + "core-aam/aria-invalid_grammar-manual.html": [ + "4a4d889c8166fe089dc93abf6d8b4f40186b0160", + "manual" + ], + "core-aam/aria-invalid_spelling-manual.html": [ + "421e1a55d691b997777c13fd8713d1e3018dc46a", + "manual" + ], + "core-aam/aria-invalid_true-manual.html": [ + "09a266562226255012792c41190d95b397b46eae", + "manual" + ], + "core-aam/aria-invalid_value_changes-manual.html": [ + "48f5ebaf55dfe24c78b30502e5af874b25c34172", + "manual" + ], + "core-aam/aria-invalid_with_unrecognized_value_new-manual.html": [ + "4cccc23d5ac0b71183dff5cd7fdf768125f46499", + "manual" + ], + "core-aam/aria-keyshortcuts_new-manual.html": [ + "ddaabd128729156e8d58fdd83e587c8c5f956745", + "manual" + ], + "core-aam/aria-label-manual.html": [ + "6daff0af3825fa736448495529ff082eefad93ae", + "manual" + ], + "core-aam/aria-labelledby-manual.html": [ + "10ae53e2bddb00e1cc54c91cb19b67008c033e3b", + "manual" + ], + "core-aam/aria-level_on_heading-manual.html": [ + "386f2b127c43c50313343a5b118aa1624c00e087", + "manual" + ], + "core-aam/aria-level_on_non-heading-manual.html": [ + "4ff3e8af345db1aecb23d60e9b5cfa3d02202c9b", + "manual" + ], + "core-aam/aria-live_assertive-manual.html": [ + "66127854ece079613fbde5d2709089ac6083a8d3", + "manual" + ], + "core-aam/aria-live_off-manual.html": [ + "7d3656ea6928dbf381e412a4de1da94bb7f5f87a", + "manual" + ], + "core-aam/aria-live_polite-manual.html": [ + "7554361de5acc223cfb890e65c77018584c434fb", + "manual" + ], + "core-aam/aria-modal_false_new-manual.html": [ + "381e83c5dc0e97f40ea23296ab4c0987abac6c0f", + "manual" + ], + "core-aam/aria-modal_true_new-manual.html": [ + "2c493da988e55c14e6ae22b6062c88db2924ec83", + "manual" + ], + "core-aam/aria-multiline_false-manual.html": [ + "1a487ac0061ef450a4c6bd6c7664fb827a8f085f", + "manual" + ], + "core-aam/aria-multiline_true-manual.html": [ + "6ebc05326d73e45f91420caa390c084b95a7bd93", + "manual" + ], + "core-aam/aria-multiselectable_false-manual.html": [ + "18c6164e4416acfc961895731a0fe3d6f0fe3162", + "manual" + ], + "core-aam/aria-multiselectable_true-manual.html": [ + "44375b1e1312639cf517834b844644e710f553a8", + "manual" + ], + "core-aam/aria-orientation_horizontal-manual.html": [ + "8862d7f7a5ab93f777e8ef032226be3444c86c76", + "manual" + ], + "core-aam/aria-orientation_undefined_new-manual.html": [ + "0fd3f611373b8622b8bff386f1d1690e01bd8bed", + "manual" + ], + "core-aam/aria-orientation_vertical-manual.html": [ + "ee9edbd3a36b03753c94e7c26cca9e9b0268e0a1", + "manual" + ], + "core-aam/aria-owns_may_need_manual_verification-manual.html": [ + "13e3796ff854b458a0319709f04f1aae2a11f39a", + "manual" + ], + "core-aam/aria-placeholder_new-manual.html": [ + "519b1a991584a92c5a660e04e5ade0066ae464fc", + "manual" + ], + "core-aam/aria-posinset-manual.html": [ + "18d811d72fed48e70adda7f44f42980a57afe616", + "manual" + ], + "core-aam/aria-pressed_false-manual.html": [ + "9f2e5c3401fd293d7d1dcda7b46bf6a59d43b42a", + "manual" + ], + "core-aam/aria-pressed_mixed-manual.html": [ + "4e92ee5529060f55bacb63369d3f62fb15acf9c4", + "manual" + ], + "core-aam/aria-pressed_true-manual.html": [ + "e29b0515a226bd3eb461080357623ddd47a67c38", + "manual" + ], + "core-aam/aria-pressed_value_changes-manual.html": [ + "ef7b7c37eadc4e0595b1ad0f663514f59ff45dfb", + "manual" + ], + "core-aam/aria-readonly_false-manual.html": [ + "8009becf00f1cf96c98841c736522583c7a3c79f", + "manual" + ], + "core-aam/aria-readonly_is_unspecified_on_gridcell_new-manual.html": [ + "771e05c31ff56c7e533578fc76f353fee975451d", + "manual" + ], + "core-aam/aria-readonly_true_on_checkbox-manual.html": [ + "c34fe5d9936fd305beb1d382a74c738b494da453", + "manual" + ], + "core-aam/aria-readonly_true_on_radiogroup-manual.html": [ + "d1b5578370ce7ccc19f4db951a773c15bb115224", + "manual" + ], + "core-aam/aria-readonly_true_on_textbox-manual.html": [ + "2a618d52bede8ed766951fe9481c238281e07481", + "manual" + ], + "core-aam/aria-readonly_value_changes-manual.html": [ + "eaff04abf14ea32fc932eaa71af332c81605902d", + "manual" + ], + "core-aam/aria-relevant-manual.html": [ + "f1e14260d46573039f44d98fdc918dac3a911e76", + "manual" + ], + "core-aam/aria-required_true-manual.html": [ + "b3e7baa15286aa75cff1086c6497a81173582e7c", + "manual" + ], + "core-aam/aria-required_value_changes-manual.html": [ + "579334e6278b6edf04ebcbbeb5b9bbf77073bc33", + "manual" + ], + "core-aam/aria-roledescription_is_empty_or_whitespace_characters_new-manual.html": [ + "3962c1149025fb57e6e2ab3968c945f34a8d93f4", + "manual" + ], + "core-aam/aria-roledescription_new-manual.html": [ + "32fa5268e48f61f9b914090c6689b9fb359c2ccb", + "manual" + ], + "core-aam/aria-rowcount_new-manual.html": [ + "7d78485d802b486e7b78e7a1189407ff315a1ad8", + "manual" + ], + "core-aam/aria-rowindex_new-manual.html": [ + "6a08fbbc607bf60c97fa3bdfb6188e0d7cfd0236", + "manual" + ], + "core-aam/aria-rowspan_new-manual.html": [ + "fc4817b38147574abaa3570ed3dfe7321f81ec36", + "manual" + ], + "core-aam/aria-selected_false-manual.html": [ + "fcfba1d3ea92579fc24dc95274d8674a4dd9689f", + "manual" + ], + "core-aam/aria-selected_true-manual.html": [ + "c57ee5987a5805eba611eb4996429d464c1b578e", + "manual" + ], + "core-aam/aria-setsize_-1_new-manual.html": [ + "1aa760fbcf69fe8cf6f51347e1b61e8273b064d7", + "manual" + ], + "core-aam/aria-setsize_3-manual.html": [ + "627b548cfd62f35afe9956a9924557014032757a", + "manual" + ], + "core-aam/aria-sort_ascending-manual.html": [ + "a80a64a238c6cf9ab14e06e911a15f06a84d2974", + "manual" + ], + "core-aam/aria-sort_descending-manual.html": [ + "0e020930ba439aad0216ed84e6499c3caf10f8a7", + "manual" + ], + "core-aam/aria-sort_none-manual.html": [ + "a1b290ff9b2d013a948c2c3acfd26f9220073fc6", + "manual" + ], + "core-aam/aria-sort_other-manual.html": [ + "8336aff3f8e16bfdb596dddb1bb12b4eba5559ab", + "manual" + ], + "core-aam/aria-valuemax-manual.html": [ + "f852b9de68752a73a14a22059b8201a7211f25e5", + "manual" + ], + "core-aam/aria-valuemin-manual.html": [ + "0ed24aa015fd799ff755057fc55d6a7da1178ed9", + "manual" + ], + "core-aam/aria-valuenow-manual.html": [ + "cb7d42a3a1ef6745510d457c861b3c91f024922d", + "manual" + ], + "core-aam/aria-valuenow_value_changes-manual.html": [ + "25b56657fd81c6d75967b4e70e304d6c6e001e1e", + "manual" + ], + "core-aam/aria-valuetext-manual.html": [ + "f00cb422daf4280c9022054d21cec986be87ca72", + "manual" + ], + "core-aam/aria-valuetext_value_changes-manual.html": [ + "6a0cbb8c1a185f944488a9d0b8ec3870bace35a4", + "manual" + ], + "core-aam/article-manual.html": [ + "140251a0eee810b28cfff5f8f788429c290dc56f", + "manual" + ], + "core-aam/banner-manual.html": [ + "6c629ff372f0ba73bbc31c52e3452e0ec7e56b22", + "manual" + ], + "core-aam/button_with_aria-haspopup_dialog_new-manual.html": [ + "0f9ec5572b8eb69fce716603c2ffbb35f6546310", + "manual" + ], + "core-aam/button_with_aria-haspopup_true-manual.html": [ + "d3a5c0b2d7a4f8d3b5fde379a85020ffa5b9c8bb", + "manual" + ], + "core-aam/button_with_default_values_for_aria-pressed_and_aria-haspopup-manual.html": [ + "3a2b80b8ee6317d240d9971c565946a01735062d", + "manual" + ], + "core-aam/button_with_defined_value_for_aria-pressed-manual.html": [ + "f8c140ccaccdb7f66ebebb538381cc825cb13aa3", + "manual" + ], + "core-aam/cell_new-manual.html": [ + "ae4cf75a82e8482f4b0e5c023cc228abef66a157", + "manual" + ], + "core-aam/checkbox-manual.html": [ + "c928767c1b6355411e0f94f9b8e7df7d8fd9c909", + "manual" + ], + "core-aam/columnheader-manual.html": [ + "22cbd39e5da6e18e62547aa7d47754084dd27ded", + "manual" + ], + "core-aam/combobox-manual.html": [ + "c30d849b24521b7dfe1364a22d340d96c9adbe43", + "manual" + ], + "core-aam/complementary-manual.html": [ + "68c8b3bac4f10411651ccdf035f95b6982e332a9", + "manual" + ], + "core-aam/contentinfo-manual.html": [ + "8aea3dd1b09e8d4899c44b2500907a9a9980ac74", + "manual" + ], + "core-aam/definition-manual.html": [ + "32ec8c37210e61ecabeb718605cd3cc18c32b0bc", + "manual" + ], + "core-aam/dialog-manual.html": [ + "185229736630b12324939dcad6ca661aea912b3e", + "manual" + ], + "core-aam/directory-manual.html": [ + "65e83d8de84ecfe560ad694ee2bb19ba89b83c37", + "manual" + ], + "core-aam/document-manual.html": [ + "5d3e81bda52e8dcbde9f08c68d57cfdc3a5618c2", + "manual" + ], + "core-aam/exclude_element_hidden_with_css_display_none-manual.html": [ + "8d90d5975d23c29380b8a9c4c3ddce755c46c40e", + "manual" + ], + "core-aam/exclude_element_hidden_with_css_visibility_hidden-manual.html": [ + "ca68655fce7a3ac4c39474c22d131acef27fda66", + "manual" + ], + "core-aam/exclude_element_hidden_with_html5_hidden-manual.html": [ + "9852875a50efe39674c674d51b27c95b8a24c8cd", + "manual" + ], + "core-aam/exclude_presentational_children_of_button-manual.html": [ + "4319a2775114feb0598402ac4afeb4a2f223e119", + "manual" + ], + "core-aam/exclude_presentational_children_of_checkbox_new-manual.html": [ + "19b61c5ae7986e13aa330a8f7138b794d0bff88c", + "manual" + ], + "core-aam/exclude_presentational_children_of_img-manual.html": [ + "f6fd8172fb4cebb646a3f802a843e442fd4595da", + "manual" + ], + "core-aam/exclude_presentational_children_of_math-manual.html": [ + "89cdfe74dbaf497af4c6a61e77e08f3ddfa40a50", + "manual" + ], + "core-aam/exclude_presentational_children_of_menuitemcheckbox_new-manual.html": [ + "353a319aadd237dbf59fb649793357445ac2d225", + "manual" + ], + "core-aam/exclude_presentational_children_of_menuitemradio_new-manual.html": [ + "86042a801723c341ddfefbfec0753d0b2782ada2", + "manual" + ], + "core-aam/exclude_presentational_children_of_option_new-manual.html": [ + "3559e7422ac1da20ec979c8778f73d5f5d5f0263", + "manual" + ], + "core-aam/exclude_presentational_children_of_progressbar-manual.html": [ + "1f42a525dfad95e6f4563b1c7cafe9f149f6f2ca", + "manual" + ], + "core-aam/exclude_presentational_children_of_radio_new-manual.html": [ + "f7fcef7b737489ebae6bbb04d1491274f20fef20", + "manual" + ], + "core-aam/exclude_presentational_children_of_scrollbar-manual.html": [ + "c8ca1ae6a80876c4270d9ab4c158ce864875ad9b", + "manual" + ], + "core-aam/exclude_presentational_children_of_separator-manual.html": [ + "9d17f744c06ef63e7a35c990a78c6490951664f6", + "manual" + ], + "core-aam/exclude_presentational_children_of_slider-manual.html": [ + "28a68c465bd9e1ff55732ef28e94e8c7e4aecf0f", + "manual" + ], + "core-aam/exclude_presentational_children_of_switch_new-manual.html": [ + "19a63482251f6c2ec182bfa42728f664d014d3e1", + "manual" + ], + "core-aam/exclude_presentational_children_of_tab_new-manual.html": [ + "6d1843fe8b1d58100f5802bad629f48e372fc9fc", + "manual" + ], + "core-aam/feed_new-manual.html": [ + "e659bdcd01aebd53bc527ed476cb7e67227b4c60", + "manual" + ], + "core-aam/figure_new-manual.html": [ + "175904be565488c2fa57f8da6f031fb4929bd5eb", + "manual" + ], + "core-aam/form-manual.html": [ + "3f9b8144aaa5945f384789e6ab84e96f72d53ae2", + "manual" + ], + "core-aam/grid-manual.html": [ + "45aa9dce7ec6f37f5b9457824cd8aef4384c6ace", + "manual" + ], + "core-aam/gridcell-manual.html": [ + "c72cf8632ce6dc9c9e256ea4ef152bc667d9af80", + "manual" + ], + "core-aam/group-manual.html": [ + "0d61a26299bda921e326821e4882d03d6196afc1", + "manual" + ], + "core-aam/heading-manual.html": [ + "8da1a2e8f544abc7734301a2db773d4597ccd49b", + "manual" + ], + "core-aam/img-manual.html": [ + "4b7a6ec157300dcffadaefa243c7c89eebc158ef", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-controls-manual.html": [ + "b9d9fd53ef5625443dd84e6a43ff3dd3e66c61c7", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-describedby-manual.html": [ + "800eb7e59730a182baa757654875406e6a33c31b", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-details_new-manual.html": [ + "57f69a68a6911e5e580a0d3ff307ef4346e59b76", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-errormessage_new-manual.html": [ + "2cefe94d13199d8c3c4a1850b1cf5dcc9e6a61ff", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-flowto-manual.html": [ + "2e0bac9bf235765e0069aa59de2e20cd47177993", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-labelledby-manual.html": [ + "b57e67396e0255d57e4e55ffb50d9571b7a5d91f", + "manual" + ], + "core-aam/include_element_referenced_by_global_aria-owns-manual.html": [ + "c83c6b8f6a8011dcce1e3bc3a3e33ab684a10e9f", + "manual" + ], + "core-aam/include_element_that_is_focusable-manual.html": [ + "7c2202d531272fe4bcd5767d34cbbd4231e72451", + "manual" + ], + "core-aam/include_element_with_id_inside_element_with_aria-activedescendant-manual.html": [ + "aa67c2ffd1f38cc578984c044319017a720cae9e", + "manual" + ], + "core-aam/link-manual.html": [ + "08a9850a68d397c0c94a5b8273c86333e3c445fd", + "manual" + ], + "core-aam/list-manual.html": [ + "3bca83e6f292af793140669e5d1a477b13824dd4", + "manual" + ], + "core-aam/listbox_not_owned_by_or_child_of_combobox-manual.html": [ + "08134c2a597049966243bb43e7794395a1796fc1", + "manual" + ], + "core-aam/listbox_owned_by_or_child_of_combobox-manual.html": [ + "70c893bc1617777f8f4bf199e7751b3e0236907a", + "manual" + ], + "core-aam/listitem-manual.html": [ + "fe47c78b32125a3608478ce2e329e8e6e73b02c3", + "manual" + ], + "core-aam/log-manual.html": [ + "b0cfb23b15694c7b27ab81236ce2cd9523da2f04", + "manual" + ], + "core-aam/main-manual.html": [ + "8e6e5db5991f1665ee358c86e611ae6d63327ab3", + "manual" + ], + "core-aam/marquee-manual.html": [ + "d37d31030ef5bd924a51c299e3eda67171abdb92", + "manual" + ], + "core-aam/math-manual.html": [ + "45a130f52eaf4324df8eabeb162544e8048b2ecd", + "manual" + ], + "core-aam/menu-manual.html": [ + "55f6cbab2fb9466fcb7f0adad6532b0eb1ab0dbd", + "manual" + ], + "core-aam/menu_child_of_menu_item-manual.html": [ + "65836d38e9842a8bbf341e05da8a0590a4a8ae95", + "manual" + ], + "core-aam/menubar-manual.html": [ + "51b75485984cc0f4d77f32049c47d39bec0d74eb", + "manual" + ], + "core-aam/menuitem_not_owned_by_or_child_of_group-manual.html": [ + "c2a94ee210c24c2dd03c20781b98d84e6aa489d1", + "manual" + ], + "core-aam/menuitem_owned_by_or_child_of_group-manual.html": [ + "0885a232296e242e633e7929d90b292a90505d0e", + "manual" + ], + "core-aam/menuitemcheckbox-manual.html": [ + "3c9bafc81c06ed2dc45788c412c0013c103aad35", + "manual" + ], + "core-aam/menuitemradio-manual.html": [ + "696306c6d495f47723df3240323e7e896c2e0447", + "manual" + ], + "core-aam/navigation-manual.html": [ + "d3b80c33c4738b8ba1b3b6aa719b2403b05a2e01", + "manual" + ], + "core-aam/none_new-manual.html": [ + "cbef2eed17c93f0c43b81968c79e172198c3f87d", + "manual" + ], + "core-aam/none_used_on_element_that_is_focused_or_fires_event-manual.html": [ + "37804ca22720578b4513f71f08b297e65f2f59ed", + "manual" + ], + "core-aam/none_used_on_table_element_with_td_children_new-manual.html": [ + "9abf93a3e9de4117abcb56cc533007ea96680010", + "manual" + ], + "core-aam/none_used_on_ul_element_with_li_children_new-manual.html": [ + "b8e90f929bab2ca1fc30e04f841fc49a931531e3", + "manual" + ], + "core-aam/note-manual.html": [ + "ae0d55036db32cf4646d2f6dd8ce13c374f71712", + "manual" + ], + "core-aam/option_inside_combobox-manual.html": [ + "8e13f4e37088d43288d73b65cadedd884ccd3e32", + "manual" + ], + "core-aam/option_not_inside_combobox-manual.html": [ + "fb5244e2337d0b0589fa111cd11474bbddefb8ce", + "manual" + ], + "core-aam/presentation-manual.html": [ + "6d164fca767b1dc0002f958f04a7484ada67ebc9", + "manual" + ], + "core-aam/presentation_used_on_element_that_is_focused_or_fires_event-manual.html": [ + "d671a5e21682870819586eecc6a9f3d74182eac9", + "manual" + ], + "core-aam/presentation_used_on_table_element_with_td_children_new-manual.html": [ + "4494e50029966771e05f4261a4204e451c1088ba", + "manual" + ], + "core-aam/presentation_used_on_ul_element_with_li_children_new-manual.html": [ + "9c4256fbab54a0651372c010df4b4b54645d48c3", + "manual" + ], + "core-aam/progressbar-manual.html": [ + "c4fd3f1c2a0762700aa7b05dff80b47123fdc2c5", + "manual" + ], + "core-aam/radio-manual.html": [ + "cecdb8fde332fb31e61324ada239079ab925e7b2", + "manual" + ], + "core-aam/radiogroup-manual.html": [ + "9c9d0db1ace6d092d64fda9db7e5c6ce7755c84b", + "manual" + ], + "core-aam/region_with_an_accessible_name_new-manual.html": [ + "2fa731fdafc525eb1ca9c5958d6815c6eadd83b4", + "manual" + ], + "core-aam/region_without_an_accessible_name_new-manual.html": [ + "a2a6f7766fe0b57726b6f7fb76de982b5830d510", + "manual" + ], + "core-aam/row_inside_treegrid-manual.html": [ + "41b5f2cb912d1fe031dca42b6591f6d080522f28", + "manual" + ], + "core-aam/row_not_inside_treegrid-manual.html": [ + "cefd7631e03b4c182ed16d46cf3ece9a7eeb49d9", + "manual" + ], + "core-aam/rowgroup-manual.html": [ + "9a11d3a6fbd7866736a930ff522c1fa6622fc878", + "manual" + ], + "core-aam/rowheader-manual.html": [ + "dcd21b93f6230837f587bc616e259578ac8118aa", + "manual" + ], + "core-aam/scrollbar-manual.html": [ + "1cec55790cb5b7394872df2b9003fde85b0ba176", + "manual" + ], + "core-aam/search-manual.html": [ + "5ef988d9e86bcc57d5cba3050af31cf455225029", + "manual" + ], + "core-aam/searchbox_new-manual.html": [ + "b376ede0ebd4b86f9bd70e73c14043abe33b69e0", + "manual" + ], + "core-aam/separator_focusable_new-manual.html": [ + "0ef8d2f270a3bb97ef1d1cc96758cafcefe56dc5", + "manual" + ], + "core-aam/separator_non-focusable-manual.html": [ + "2bb493f07c66109f4f616c88456f7d6ea0af4fdb", + "manual" + ], + "core-aam/slider-manual.html": [ + "07890401b354c4374c234567296e6e3e8002b5da", + "manual" + ], + "core-aam/spinbutton-manual.html": [ + "d1b86e8184d1f4bf0120c14314d38b2b21db6155", + "manual" + ], + "core-aam/status-manual.html": [ + "ae21b30623663495df042c975a22ef820f46d5f5", + "manual" + ], + "core-aam/switch_new-manual.html": [ + "1ad6e017f138891c62a4671bc957a47efd51019b", + "manual" + ], + "core-aam/tab-manual.html": [ + "f1e10ec87a29ee5ea7e535f69da392dfcbdd6533", + "manual" + ], + "core-aam/table_new-manual.html": [ + "41ddee4a58eaffaf6c0236ab0299ed7df4c3a7be", + "manual" + ], + "core-aam/tablist-manual.html": [ + "dcc005bbf334f34f87e997dc2f514c19400b921d", + "manual" + ], + "core-aam/tabpanel-manual.html": [ + "cce118b7d1002c1dc895f08a31d8dba2fc34f92b", + "manual" + ], + "core-aam/term_new-manual.html": [ + "c551a46778d6f983ad890efcad40fbf19efafa47", + "manual" + ], + "core-aam/textbox_when_aria-multiline_is_false-manual.html": [ + "b6798573553d05d1633e99292af9a21b99421d36", + "manual" + ], + "core-aam/textbox_when_aria-multiline_is_true-manual.html": [ + "01569747831aa6cc672c054664030767215cf8a4", + "manual" + ], + "core-aam/timer-manual.html": [ + "45e10de6a4de88047e63713c9d1cb1a13ede9269", + "manual" + ], + "core-aam/toolbar-manual.html": [ + "e8dd02cba761318997d69fc44bc2fb0fd6c42c2d", + "manual" + ], + "core-aam/tooltip-manual.html": [ + "d0ce96d1ce2d918f41ac2c595ab22ba0bd647d82", + "manual" + ], + "core-aam/tree-manual.html": [ + "51dc4b4b499fea248051556f48bec20b8b8dbae2", + "manual" + ], + "core-aam/treegrid-manual.html": [ + "6d8e0f4056481bd18a894fc9a2666ce998e14e53", + "manual" + ], + "core-aam/treeitem-manual.html": [ + "adb1499f09e7b3d86f359ce526260b312d51e207", + "manual" + ], "cors/304.htm": [ "644c902be2861bed6dfa48ed12a12b08c6d9a2f5", "testharness" @@ -432742,29 +439507,121 @@ "support" ], "credential-management/credentialscontainer-create-basics.https.html": [ - "49f1139b264e09fd398fa14b37ecc94119b63558", + "ee1e63bbe0d74a932650c2c32ed26d7ca41e1c7d", "testharness" ], "credential-management/idl.https.html": [ - "0df70baded35ef70ab7395c8933ba7e1d041aa85", + "e9a108beef51c52bbaaf2e53371aec57e69541c0", "testharness" ], - "css-font-display/font-display-ref.html": [ - "26fcc2758c649ce922397cd1c4aa862bdbf1e6a0", + "css-backgrounds/background-clip-color-ref.html": [ + "82aaf4a4516534051621142b11a567b91dbc8a0d", "support" ], - "css-font-display/font-display.html": [ - "d83914326318602ce0eef5f248254a391b338df0", + "css-backgrounds/background-clip-color-repaint-ref.html": [ + "2bfc7fdecbde5d71301222d9c6549b97caee0d89", + "support" + ], + "css-backgrounds/background-clip-color-repaint.html": [ + "ca6786586a6e6ba2d0c677c68f4cad67c787aedd", "reftest" ], - "css-font-display/resources/slow-ahem-loading.py": [ - "aac16c1e618841ebdd28463adf5688ca837b9d57", - "support" + "css-backgrounds/background-clip-color.html": [ + "9680097433363351d87f2b34da76108a3d33a5d9", + "reftest" + ], + "css-cascade/inherit-initial.html": [ + "67ecb845c4bcdacc8185b0f78d36856f9a408342", + "testharness" ], "css-font-loading/fontfacesetloadevent-constructor.html": [ "ad355c3d5220c1b938182241a8e8abe030ace699", "testharness" ], + "css-fonts/font-display/font-display-ref.html": [ + "26fcc2758c649ce922397cd1c4aa862bdbf1e6a0", + "support" + ], + "css-fonts/font-display/font-display.html": [ + "46e883b5b615b2aa8ba7e8eff3eb197f64614df2", + "reftest" + ], + "css-fonts/matching/OWNERS": [ + "2f711301297bd297b6bf5ccde958cd7a59c9e678", + "support" + ], + "css-fonts/matching/README.md": [ + "194fbc4cdaf1ff4a43e1a4e6b7bc7fbc17eec6d8", + "support" + ], + "css-fonts/matching/fixed-stretch-style-over-weight-ref.html": [ + "ad90e9467acd3120ba00239b453199aa95497c5e", + "support" + ], + "css-fonts/matching/fixed-stretch-style-over-weight.html": [ + "3badf758ea56c9fb5113abca48be629f293e6abf", + "reftest" + ], + "css-fonts/matching/font-matching.css": [ + "a24323853e4e73ee13b9a969090b0f721024114b", + "support" + ], + "css-fonts/matching/resources/variabletest_matching.ttf": [ + "de5e05decac0303e5297ed2cb067c715ff4c4adf", + "support" + ], + "css-fonts/matching/stretch-distance-over-weight-distance-ref.html": [ + "40ff6866132dd3e29a8d85c5fd949aba729ae304", + "support" + ], + "css-fonts/matching/stretch-distance-over-weight-distance.html": [ + "2d666b0543d30fc1cf85fc7a9bda1946ed83507d", + "reftest" + ], + "css-fonts/matching/style-ranges-over-weight-direction-ref.html": [ + "05fe52539dc7bb809fc88ee1fee597288d843bf1", + "support" + ], + "css-fonts/matching/style-ranges-over-weight-direction.html": [ + "9959089a65b466230e6217944c68342e5269b49a", + "reftest" + ], + "css-fonts/variations/OWNERS": [ + "2f711301297bd297b6bf5ccde958cd7a59c9e678", + "support" + ], + "css-fonts/variations/font-parse-numeric-stretch-style-weight.html": [ + "b9aa593e5fcba0d7af8f66446d473608a7025f1c", + "testharness" + ], + "css-fonts/variations/resources/variabletest_box.ttf": [ + "2fc122ff444d3ddef1f29ebde9a87827244ceeb0", + "support" + ], + "css-fonts/variations/variable-box-font-ref.html": [ + "65ccabcdeaa322eeceaa646863eba52654e3149b", + "support" + ], + "css-fonts/variations/variable-box-font.html": [ + "f3836fd9ea898b84bcef5dc259eeadbd4ecaeb68", + "reftest" + ], + "css-fonts/variations/variable-gpos-m2b-ref.html": [ + "769b04d218db5f7d882512b17c70683281499481", + "support" + ], + "css-fonts/variations/variable-gpos-m2b.html": [ + "af751a58338e49cc18b0b54c9451662d223f4977", + "reftest" + ], + "css-fonts/variations/variable-gsub-ref.html": [ + "1b80955335d4a14f3e0d545a6b5165aadff05a87", + "support" + ], + "css-fonts/variations/variable-gsub.html": [ + "2ae8392efc584c909f11ca04fb33a77f1b3c65ba", + "reftest" + ], "css-paint-api/OWNERS": [ "0c1517f7ba747014c7c091b61d48f11421ed91c2", "support" @@ -432774,7 +439631,7 @@ "support" ], "css-paint-api/background-image-alpha.html": [ - "2476286f8be52ae4f8ba22dd939b961d8e7ca379", + "84acc5f998812497d344067d7095c7561dda13ee", "reftest" ], "css-paint-api/background-image-multiple-ref.html": [ @@ -432786,11 +439643,91 @@ "reftest" ], "css-paint-api/background-image-tiled-ref.html": [ - "a879be73470aae683bd7596132225770bc8be27b", + "bcee5040691f057a672e58eec3beed75122be3b8", "support" ], "css-paint-api/background-image-tiled.html": [ - "03aff62fc21832b44d9de15805232d87d0089ed3", + "83f9e2566f9e6957fdf3b67e9e62374984861e78", + "reftest" + ], + "css-paint-api/geometry-background-image-001-ref.html": [ + "bca138ca3ce5b6dee10f935fd2ff9756d18b12ef", + "support" + ], + "css-paint-api/geometry-background-image-001.html": [ + "a1f6d2148bfcdb68e4ca437b396b0ccbada101a9", + "reftest" + ], + "css-paint-api/geometry-background-image-002-ref.html": [ + "4d33168e6298c1ed7d44ff431791615cdaf9038f", + "support" + ], + "css-paint-api/geometry-background-image-002.html": [ + "f48a940cfc7b3654ee92b655330ae30af5315e17", + "reftest" + ], + "css-paint-api/geometry-background-image-tiled-001-ref.html": [ + "475fd7979cd173f378c03a7d9d27503e12c2dc7c", + "support" + ], + "css-paint-api/geometry-background-image-tiled-001.html": [ + "a892266cab4d74a3f4df2bbe1cda8823a38f3153", + "reftest" + ], + "css-paint-api/geometry-background-image-tiled-002-ref.html": [ + "c5363f4f7843ff8025ae5457524c0c9f4aac144c", + "support" + ], + "css-paint-api/geometry-background-image-tiled-002.html": [ + "051788b53366cffcc10debdf2d678d50bffd1f54", + "reftest" + ], + "css-paint-api/geometry-background-image-tiled-003-ref.html": [ + "d4f9428be3b8f9003eb9373b3eb87ebed0c55c15", + "support" + ], + "css-paint-api/geometry-background-image-tiled-003.html": [ + "29141ae2c9c87237ed3406dd43c6b3a7a1a5aa36", + "reftest" + ], + "css-paint-api/geometry-border-image-001-ref.html": [ + "81026e756ea8e3be653e176c09f1762507915cb8", + "support" + ], + "css-paint-api/geometry-border-image-001.html": [ + "d8f948af1254c810496739e4c7cc570ba96cf64f", + "reftest" + ], + "css-paint-api/geometry-border-image-002-ref.html": [ + "076c1f3e3b5cfd3a434e94f33872f5f598a7225b", + "support" + ], + "css-paint-api/geometry-border-image-002.html": [ + "57b518eb310db31c40f0db37637b0f8199ee9734", + "reftest" + ], + "css-paint-api/geometry-border-image-003-ref.html": [ + "141bf94dcd935420b95ee4da52139bf51318196d", + "support" + ], + "css-paint-api/geometry-border-image-003.html": [ + "9d01df8817d9e5beb27d3439789cbe914c418b2c", + "reftest" + ], + "css-paint-api/geometry-border-image-004-ref.html": [ + "d730b44bd1020305b70da095a15f9a4f7e9f262a", + "support" + ], + "css-paint-api/geometry-border-image-004.html": [ + "368a9d855ffc46457e6c54cddfbc934e92096ee0", + "reftest" + ], + "css-paint-api/hidpi/device-pixel-ratio-ref.html": [ + "18f9d4d369de750ceb92c2e275ede5fcb3bf6f49", + "support" + ], + "css-paint-api/hidpi/device-pixel-ratio.html": [ + "470ec454e18e5398718f3117171b172208f84fee", "reftest" ], "css-paint-api/invalid-image-constructor-error-ref.html": [ @@ -432830,7 +439767,7 @@ "support" ], "css-paint-api/paint-arguments.html": [ - "7e70944e4d1dd456cc91eb443f09bb2e28b812f4", + "7acf977d7e09bb85ada1b0df7fd9e4ea3a11ddfe", "reftest" ], "css-paint-api/paint-function-arguments-ref.html": [ @@ -432838,7 +439775,7 @@ "support" ], "css-paint-api/paint-function-arguments.html": [ - "e4083cf39fca7ce4783d36e3235d4cfecf7d2db9", + "cc19f4bc39c7a2cc1d9ed35a6a5a50d3935830af", "reftest" ], "css-paint-api/paint2d-composite-ref.html": [ @@ -432905,12 +439842,136 @@ "f840916bab6d10cff1b08d1cfaecee97699d80cb", "reftest" ], + "css-paint-api/parse-input-arguments-001.html": [ + "0ba1a9978d295825784a2909447e565701e6fc09", + "reftest" + ], + "css-paint-api/parse-input-arguments-002.html": [ + "d35b4e39d8b0f54935571ee62fe7255e93c917dd", + "reftest" + ], + "css-paint-api/parse-input-arguments-003.html": [ + "f6c8cb6feba2b14349bc3fa3170b278e698df526", + "reftest" + ], + "css-paint-api/parse-input-arguments-004.html": [ + "1dd64759c041d9633ce04add066f4e1573fd05e5", + "reftest" + ], + "css-paint-api/parse-input-arguments-005.html": [ + "25d32d33e5de6d289d0e8c776876cb66f03e7c2e", + "reftest" + ], + "css-paint-api/parse-input-arguments-006.html": [ + "effa515567b0212403d83588c335d8fc72c056f6", + "reftest" + ], + "css-paint-api/parse-input-arguments-007.html": [ + "f2f837e7c82462f17d9ebb1a8ab5346e5b8c945c", + "reftest" + ], + "css-paint-api/parse-input-arguments-008.html": [ + "60034209a8984ac0be807494fc4373329d3792eb", + "reftest" + ], + "css-paint-api/parse-input-arguments-009.html": [ + "d57e2370218d385a02e2021219869b5dec0e45c4", + "reftest" + ], + "css-paint-api/parse-input-arguments-010.html": [ + "9d4ef380f3596a73ea7816d13b3913b541ec05b9", + "reftest" + ], + "css-paint-api/parse-input-arguments-011.html": [ + "15edc8fc44d339514911566fe7cf07ec899cf04a", + "reftest" + ], + "css-paint-api/parse-input-arguments-012.html": [ + "0cc064f143a0b1bed6b6e3b79f9a95754eb60ea3", + "reftest" + ], + "css-paint-api/parse-input-arguments-013.html": [ + "e4a99687b156723308ed27a9e863754cb6dcdbd2", + "reftest" + ], + "css-paint-api/parse-input-arguments-014.html": [ + "c10d44a53a00e6a9745d6ea1c359298723a0aee1", + "reftest" + ], + "css-paint-api/parse-input-arguments-015.html": [ + "a78c728b67af31e47c8d46e60e33ba437769a020", + "reftest" + ], + "css-paint-api/parse-input-arguments-016.html": [ + "1c14dbe6c6bc0f218724731112c4c45888ede8b5", + "reftest" + ], + "css-paint-api/parse-input-arguments-017.html": [ + "cba3754c5044665b2648fec05e25d7b6028c185f", + "reftest" + ], + "css-paint-api/parse-input-arguments-018-ref.html": [ + "7dd468373f6efa2b5a3a8d16c91c0d4dec87c143", + "support" + ], + "css-paint-api/parse-input-arguments-018.html": [ + "b606bfff93300f114ea4efab85e489727e9821c7", + "reftest" + ], + "css-paint-api/parse-input-arguments-019.html": [ + "db11565957c3da1ca7a51b9ab36cd4a823386a55", + "reftest" + ], + "css-paint-api/parse-input-arguments-020.html": [ + "acbff610abd29a01574add30679b43d7a735c9bd", + "reftest" + ], + "css-paint-api/parse-input-arguments-021.html": [ + "6f567a29ed4ec26ad8c97277469783a614a5811b", + "reftest" + ], + "css-paint-api/parse-input-arguments-022.html": [ + "9f0efcee3e1412faa19fe50f475623fd5cf2852b", + "reftest" + ], + "css-paint-api/parse-input-arguments-ref.html": [ + "6133bd65ef569456f58f1e501d81e088256bdc0a", + "support" + ], + "css-paint-api/registered-properties-in-custom-paint.html": [ + "3855c8c28ea3a24bade81080f3f288ef75243dce", + "reftest" + ], + "css-paint-api/style-background-image-ref.html": [ + "0985e20363c8aac715c534ad59f1209889244fb0", + "support" + ], + "css-paint-api/style-background-image.html": [ + "a3202db04922cc2527436fa319ea9e8432eecdcd", + "reftest" + ], + "css-paint-api/style-before-pseudo-ref.html": [ + "6dcbe78ab89343178e18e3e92744b25759ec8241", + "support" + ], + "css-paint-api/style-before-pseudo.html": [ + "7808e4e86a0556202a0e2ea5574d60c94bf2c537", + "reftest" + ], + "css-paint-api/style-first-letter-pseudo-ref.html": [ + "c6a94e5bafa098b8f4023312db97abebe992abc3", + "support" + ], + "css-paint-api/style-first-letter-pseudo.html": [ + "034cc6ebdf18ea4d346a2a363be69eb8added8e7", + "reftest" + ], "css-paint-api/valid-image-after-load-ref.html": [ "b0c34ee1480fe1108fe8dc53f2bbb2f3ffa1c408", "support" ], "css-paint-api/valid-image-after-load.html": [ - "4f20acb987ed51fc374d873db74522ed4bd1dc1c", + "c00a13e38ba694a79e4934c854684aaaf0b19068", "reftest" ], "css-paint-api/valid-image-before-load-ref.html": [ @@ -432918,7 +439979,19 @@ "support" ], "css-paint-api/valid-image-before-load.html": [ - "67d8cdd3e3a1656ba315fcbf6dae7236680bac16", + "89d6d44680d1df3fdc7ece62ff7ed2edffbaa01d", + "reftest" + ], + "css-scoping/slotted-parsing.html": [ + "6bac5b15011d7177a40f7ca3e3c5f7e410643920", + "testharness" + ], + "css-scoping/slotted-with-pseudo-element-ref.html": [ + "48561a3dff973b7ad1bfa9702461e50fd4a67c2d", + "support" + ], + "css-scoping/slotted-with-pseudo-element.html": [ + "27d36ba54623bbee2cdd09b7a9322873d5ab0011", "reftest" ], "css-timing/OWNERS": [ @@ -432957,10 +440030,6 @@ "1b98ee851da85aa7ffd3d523df0fd2fd4fdbef22", "testharness" ], - "css-values/unset-value-storage.html": [ - "d2e5101f623e29cc993fe2460f6c85f6ec31b471", - "testharness" - ], "css/.gitignore": [ "3f645ca3bf6a77220d48e3e07b6dc3e1653d883c", "support" @@ -445430,11 +452499,11 @@ "support" ], "css/CSS2/cascade-import/cascade-import-001.xht": [ - "289ea30a31e27c4905d28a161ce2f77dff7cb038", + "154b8c59cec3584cc4149bce971c84311e6c67d1", "visual" ], "css/CSS2/cascade-import/cascade-import-002.xht": [ - "98e6cc9795316c8d5fbaa3ec3ca4154e0ae4035c", + "21af08d33a535ac504c6dded1bb700d586856013", "visual" ], "css/CSS2/cascade-import/cascade-import-002.xht.headers": [ @@ -445442,43 +452511,43 @@ "support" ], "css/CSS2/cascade-import/cascade-import-003.xht": [ - "f6c0f2a7bc06d33768b08a880481b2527ed9d0c1", + "dc954fbc95b9a2bc2f110bed7592a6e029cc4fca", "visual" ], "css/CSS2/cascade-import/cascade-import-004.xht": [ - "9c5b97594d38b42d00ee6afc2ab84308a6e2137d", + "a72a523e76c4e2f8649d1cf3802ebb0773af0ea0", "visual" ], "css/CSS2/cascade-import/cascade-import-005.xht": [ - "a687750e720cf404c1b7b5c7b71c3b08c83923c1", + "3e19c7a2c2714a558bd1d4602f524cde70a0871d", "visual" ], "css/CSS2/cascade-import/cascade-import-006.xht": [ - "82f090dbead7152a3f3bcbdd9c8341454f044833", + "da452116aa5ab417ac4227fceba0a0643c637c2f", "visual" ], "css/CSS2/cascade-import/cascade-import-007.xht": [ - "e2539df6c095e4691b22a0afd0b262a3f4d29e13", + "04023f5a6710edfe6a9b93908a6e5ad3f2525d37", "visual" ], "css/CSS2/cascade-import/cascade-import-008.xht": [ - "471d83c2b5e58b4bf1b48ab1a834d981626ea239", + "9a7292be04cd685aff2061861fae1a2f85e872d6", "visual" ], "css/CSS2/cascade-import/cascade-import-009.xht": [ - "145a7fa727698b6ac5baa09e2a74dd63229d60fc", + "b286496dae37010603295963f20a6a7db5ce31bf", "visual" ], "css/CSS2/cascade-import/cascade-import-010.xht": [ - "eef3ce408a486c1fcfd2bc7326f606792bf4c0c4", + "5bbae9f69eb8670e98e88b005fe84a5bee20aa3c", "visual" ], "css/CSS2/cascade-import/cascade-import-011.xht": [ - "aa542944296ed23a3cda10c32ae90cb9deeb2915", + "f21fa7845a784c13a17ebe9ca82bfba10ec4a88d", "visual" ], "css/CSS2/cascade-import/cascade-import-012.xht": [ - "2eb70f8e963a45e01eca960cd548d6d590c963dc", + "20ed7447eab30ffd26ed845d4ae4facf60cca933", "visual" ], "css/CSS2/cascade-import/cascade-import-dynamic-001.xht": [ @@ -445590,35 +452659,35 @@ "support" ], "css/CSS2/cascade/at-import-001.xht": [ - "3896ade2b506eeb79dc9970653424920bd7e2192", + "30b7cfeefb95781bc4ff9db0aed2205cc2fb3c63", "visual" ], "css/CSS2/cascade/at-import-002.xht": [ - "d7b441538990cc1f858f0fecd8d2cfa413c0fb8c", + "b05099d0d46e6c09538af63def233b3e33ec415a", "reftest" ], "css/CSS2/cascade/at-import-003.xht": [ - "8fde16da5337dc0473760472813dc47ef2b15b63", + "02c087cb1b7a295c646016cfebb987c8e78f1d2e", "reftest" ], "css/CSS2/cascade/at-import-004.xht": [ - "c8c8d806b6507e606df5fbff49555835e3958c08", + "f5f78238d51d2e9f37f8bdaf41451befd629a5b3", "reftest" ], "css/CSS2/cascade/at-import-005.xht": [ - "a7e6b9bcd1e61f9a6ddaf911f4bf7b6975628ff2", + "3119dba1fefacc38eb3644eff3603f28b0bea97d", "reftest" ], "css/CSS2/cascade/at-import-006.xht": [ - "0c4f14266b5019d7e36dc35e7d342e4ba8c66068", + "7ffdebc029d8699310d9d7bc97ed1d5875ca72b0", "reftest" ], "css/CSS2/cascade/at-import-007.xht": [ - "76a2a7f242187477c716f9dfc77673bc5729df83", + "a3f9b450a8809ba307a0bc303661324c02ab93ae", "reftest" ], "css/CSS2/cascade/at-import-008.xht": [ - "abd6995549462a9963e80be8259293b21bef19f6", + "30a6545a8255e5a8a9845f06c686be209a573fb1", "manual" ], "css/CSS2/cascade/at-import-009.xht": [ @@ -445634,39 +452703,39 @@ "reftest" ], "css/CSS2/cascade/cascade-001.xht": [ - "6dc93f0a3e66f7577eaf1cacb505ae9148514509", + "f39bf31d8fe13a77dc506e848f5a293eb558d148", "manual" ], "css/CSS2/cascade/cascade-002.xht": [ - "e709afbcbea183aaf6cb99468785564e22562e60", + "df77697e13d27b06e394abec4a7d9390e33ac5c7", "manual" ], "css/CSS2/cascade/cascade-003.xht": [ - "f909dc0bcff179a9e8eed2724f9a5749fddba2d6", + "9c408a90c98fa39268fe1e8fb46a0735e6921937", "manual" ], "css/CSS2/cascade/cascade-004.xht": [ - "b9464957521438a96f96f5a046c6cdff55f39c93", + "5898da319a9a42c3a23b09da1a47d41ff36a066c", "manual" ], "css/CSS2/cascade/cascade-005.xht": [ - "429bd4e5c804e9b30c2070a3f63a03ae93dd0f62", + "ae410ece5c98b3bf1463b7cbd9431efef5aaf91a", "reftest" ], "css/CSS2/cascade/cascade-006.xht": [ - "d56a26056bf86ca2a584e5a8f1acde562e44c1bf", + "3be58168e01e29af2709f604cfd7b3236802881e", "manual" ], "css/CSS2/cascade/cascade-007.xht": [ - "28505c90b9cec7275718ade3b83826c4942f3357", + "939ff78758e0ce168d58559330a569921203667f", "reftest" ], "css/CSS2/cascade/cascade-008.xht": [ - "700cd41fac22d47df56770ba97ea3935b6d9e008", + "df17ac34cd57bfecee7702a6ebbcc409e3bf5031", "visual" ], "css/CSS2/cascade/cascade-009.xht": [ - "f6099327b89ccc51ea050d62342ddb749d1db9e0", + "3c16373a6ef462b139737a60048a3e66edc2784a", "reftest" ], "css/CSS2/cascade/cascade-009a-ref.xht": [ @@ -445674,7 +452743,7 @@ "support" ], "css/CSS2/cascade/cascade-009a.xht": [ - "bb213cadb23a2e1f10c49965c93883994b458924", + "54d6fb04bf0d298e974409c20aa7d7d47fbf4ba1", "reftest" ], "css/CSS2/cascade/cascade-009b-ref.xht": [ @@ -445682,15 +452751,15 @@ "support" ], "css/CSS2/cascade/cascade-009b.xht": [ - "dc5306f49664138890a6ff22d8c74d8de0b7854c", + "1d50e0ef9b9a89ec68d2e7df92c5d07754848462", "reftest" ], "css/CSS2/cascade/cascade-010.xht": [ - "dbdac362e62d26194704641669b766ce3ea56a27", + "d636b32ab4cce902fe43f3b7d8cca96d212050cb", "manual" ], "css/CSS2/cascade/cascade-011.xht": [ - "1fb4fadd9098c44a2d9917c0e0795f7b2d492994", + "c4c833c39c0800380d90be637413a0563679274e", "manual" ], "css/CSS2/cascade/cascade-012-ref.xht": [ @@ -445698,139 +452767,139 @@ "support" ], "css/CSS2/cascade/cascade-012.xht": [ - "f04032cfa0a4ad28974702aeb03554fdeb29dffe", + "9f08b93b3b63ef08e43cbaea0a69061cdce68385", "reftest" ], "css/CSS2/cascade/cascade-precedence-001.xht": [ - "e55a2eb26b7d3325252b0c41af08c8b04815c3b1", + "e652c002d426adb389e47d71031188783195a9d7", "visual" ], "css/CSS2/cascade/cascade-precedence-002.xht": [ - "353a2693533496e3970b5516b732f3c04f4800ea", + "2a6653c4f456e277da4239ee392c529414e2c78e", "visual" ], "css/CSS2/cascade/default-stylesheet-001.xht": [ - "5240b7b068fe223f9560d1d856b51272099ae619", + "f9dd36c30d1600765e79fb30d37b03dc2ac96637", "visual" ], "css/CSS2/cascade/html-attribute-001.xht": [ - "0f1741f04e3087e4f37ea41a35ae1085357b609b", + "dd9dc535b8bbd732cb3024fd250543c6f906e4fb", "visual" ], "css/CSS2/cascade/html-attribute-002.xht": [ - "fc460e14ddf2498bca1f431896e1661934cc088f", + "f554aca4ec535abb1b8cb8bc211e9f7065cf2fc8", "manual" ], "css/CSS2/cascade/html-attribute-003.xht": [ - "739c604c23945b29c94170626fd67bddd2c1b285", + "ea60e1374448098ee27f7b454a515ebe7e01aa04", "visual" ], "css/CSS2/cascade/html-attribute-004.xht": [ - "7c33b434a5288ad6a964c661649afba8e5b3163a", + "40b24f5202e0601d1735232ba0e87cdaf17c69c3", "visual" ], "css/CSS2/cascade/html-attribute-005.xht": [ - "3d60fcee78a36750494dcbcebd2ab8158d484e41", + "e88b63728559b6a5d41b0011b3ceed329127c50c", "visual" ], "css/CSS2/cascade/html-attribute-006.xht": [ - "edd51222411c1d8c99e2766071fb9b91a115c3c7", + "f8eecce89358d95ba0c7e36acb0ba66d0c1a3315", "visual" ], "css/CSS2/cascade/html-attribute-007.xht": [ - "2810f9253ad481610b8946852889845c3ff901da", + "ec876b1bc0e1041c01c889febef7585f2f3c2c71", "visual" ], "css/CSS2/cascade/html-attribute-008.xht": [ - "84246136326d802a74b6bbcfd22e736f9cf6216f", + "43a8538f62fb2443e268866927bf51687e69d89c", "visual" ], "css/CSS2/cascade/html-attribute-009.xht": [ - "d811e4938b4cd7e8e0204b321e9773b7c47af1c6", + "54a1ee9dfa4589fcbe344d7f057dfd0896831968", "reftest" ], "css/CSS2/cascade/html-attribute-010.xht": [ - "57796e12d56be790c7521aedff908faeac435075", + "f99c3bc2172d07bbb97a76c0f148ee2c72b66ec9", "visual" ], "css/CSS2/cascade/html-attribute-011.xht": [ - "03aca910f1f72c1b5c5cfa6938e630d9bdd4386d", + "8d87b51e86ed58ca1340995b760a57fdf1241bee", "visual" ], "css/CSS2/cascade/html-attribute-012.xht": [ - "fde0f39c8fae8742b3dd68562a2d0e7e8b19ed4a", + "8b6726a045cc8c02ce706ba0491c0626673f0d9c", "visual" ], "css/CSS2/cascade/html-attribute-013.xht": [ - "be5c75fd6c0f69308afc7462aaa4bf5ba1691a11", + "2984d5c3ff9b9aeea967f14e86b9e9457d429d34", "visual" ], "css/CSS2/cascade/html-attribute-014.xht": [ - "bf404477d9f79ca433f85251ac3fd55175b21700", + "6ec1c986a8f817437973fdc0ea982969c04dc7b9", "visual" ], "css/CSS2/cascade/html-attribute-015.xht": [ - "19645860d40ba861cca7bb0aa4a0f878d64c4aa2", + "bc83e62f012d9f6e8e63650a996b7a37772e6169", "visual" ], "css/CSS2/cascade/html-attribute-017.xht": [ - "72922a75739af8e6c988c90055a1d3e3f7dba076", + "09fde2f3aa7668fcb7741ebd0d9ff7e912002ed6", "visual" ], "css/CSS2/cascade/html-attribute-018.xht": [ - "a8b6d197c376f3a22e986ba154a545d20f4d58ea", + "8ed048480d83ff01779e4ad16c48bece61b59ede", "visual" ], "css/CSS2/cascade/html-attribute-019.xht": [ - "bf252108640fa22ea15896ffe93389d4113b6849", + "2696b185d580aaf7c37c27097e73a0fca3f34f05", "visual" ], "css/CSS2/cascade/html-attribute-020.xht": [ - "82b199afcebfa9fd54620c3b194fcebe65170c07", + "23f83f2d2e1c3913b140b4833f99701a839b9e3c", "visual" ], "css/CSS2/cascade/html-attribute-021.xht": [ - "d14129f126e3369b6a50dd7933be670af89c0620", + "97650f036cf3e51accfc55000c1766860dadab37", "visual" ], "css/CSS2/cascade/html-attribute-022.xht": [ - "7d999ab374e0c429b73904bab782f32c2504ae8e", + "420b15055e71513145193c29441b487a16008c06", "visual" ], "css/CSS2/cascade/html-attribute-023.xht": [ - "aa7ab3d9072c99c34e055a64f131e04e25020017", + "0b341cf7f2fad123c26dd10e2dc383b6cdf7d0bf", "visual" ], "css/CSS2/cascade/html-attribute-024.xht": [ - "e4759f945a29bf990f2100518f16ea9393dea174", + "d258089c72177cb9fa388b366e4add458bc17ccc", "visual" ], "css/CSS2/cascade/html-attribute-025.xht": [ - "00b547f7a3ccde66cb6001ac3859f6544e740ecd", + "f38032a477349085e9ac577ff8e05ad586b51fce", "visual" ], "css/CSS2/cascade/html-attribute-027.xht": [ - "825dbf9995c33baeb2b6f1a402280878ca2425d4", + "c02758f732df064c2d5d5a2473825f10fbc2e475", "visual" ], "css/CSS2/cascade/html-attribute-028.xht": [ - "d7a8ba99d38b9578941f0dbc7a25ab0d44faa681", + "280468417dd7cda0d6f9ee3b49583b6067f6ef2f", "reftest" ], "css/CSS2/cascade/html-attribute-029.xht": [ - "361c46779db5bf3a4eb61ac51a8e863f7d4fd2a7", + "c964b1090b990c67585bc52cc4baf63b3b73d537", "manual" ], "css/CSS2/cascade/html-precedence-001.xht": [ - "a91d2183ff8c511bf3fa6a474b2450ccd6be24e7", + "6d02266ee1f8ea4bdb3b7e3e1db4cd77f5e9417a", "reftest" ], "css/CSS2/cascade/html-precedence-002.xht": [ - "125e22c813bc7fcfede7a841434bdb68b616bfee", + "1497f005d5dd936ecf4d8614cde71e5012cf0192", "visual" ], "css/CSS2/cascade/html-precedence-003.xht": [ - "32849ad79c455f152efe2f16d3051bdbb5408f9e", + "f0897b52d6a42c1ea5410fd3cc0f5cdfab48243f", "manual" ], "css/CSS2/cascade/html-precedence-004-ref.xht": [ @@ -445846,15 +452915,15 @@ "manual" ], "css/CSS2/cascade/inherit-001.xht": [ - "0f149c5ab605ad2680e3b0b55d75ceca0e8d1705", + "fd8f544f18d18849df4d90fb97501564a9754a4d", "visual" ], "css/CSS2/cascade/inherit-002.xht": [ - "7e29b251393bfbca02fec97b3bf657cebf6b2b5e", + "da6997f8f1c8e2f7e847453d8a311e56c106f661", "visual" ], "css/CSS2/cascade/inherit-003.xht": [ - "cfcd2eca16e08d181218fb2e13ee996def03e28e", + "5789a88efd6608631de6c181417956b0babf0b3c", "visual" ], "css/CSS2/cascade/inherit-004.xht": [ @@ -445882,55 +452951,55 @@ "reftest" ], "css/CSS2/cascade/inherited-value-001.xht": [ - "8208918e0da9b4b3e4479019851a9c5b451cab85", + "c079776a53953344db95dde98245f19a458ceded", "visual" ], "css/CSS2/cascade/inherited-value-002.xht": [ - "254a39f59d428ec1594f889adb39185f877a6b0c", + "aaaee58caf78f7ba7036820b327999b24b361ecf", "visual" ], "css/CSS2/cascade/non-inherited-value-001.xht": [ - "64e9c139da44668640004a07aec18f2514b7024c", + "c112ada532e7d8cef93353d8c25cde313ad8c436", "visual" ], "css/CSS2/cascade/sort-by-order-001.xht": [ - "4edcdee3c31b5c9ba55922ff287c88eeedbb9c2e", + "5361866834f562743620a3decdc265417cb03874", "reftest" ], "css/CSS2/cascade/specificity-001.xht": [ - "96764188297fc2912f1bf2b63ceeb2c9bd8117f6", + "be1c69d16b1663290f6654dbf13d198f3962ac49", "reftest" ], "css/CSS2/cascade/specificity-002.xht": [ - "05ebe0a1f9a50575d84c84ccebe0928401fe1722", + "2f48bbed3651f133990ebb920bab40d6f36e5def", "reftest" ], "css/CSS2/cascade/specificity-003.xht": [ - "b5630ecd8b85507f16bc62bc7f77e6c9250fe412", + "b9b581ea8a5fc47363d53199320b4efd9a540a87", "reftest" ], "css/CSS2/cascade/specificity-004.xht": [ - "f804be28647d13020bca45f04f5fd094ccfdaaf2", + "df26fea241616ca5e138e1f39a6da64a6563884c", "reftest" ], "css/CSS2/cascade/specificity-005.xht": [ - "e48d1ebf8c5f163724359fd0875be2f74b317fb8", + "0ba1071a009186b39ef155516b5720d0ffbfa680", "reftest" ], "css/CSS2/cascade/specificity-006.xht": [ - "46d51be389834670d57509b439dae9d45682cdfb", + "6855b79b60c2e5b20f1247bbea9273fc9ca97b6a", "reftest" ], "css/CSS2/cascade/specificity-007.xht": [ - "00a731b2ffe51f4a4989717a5c459249b32b94d0", + "1469c11c1e81ae061bafd97cbef46961ea053b62", "reftest" ], "css/CSS2/cascade/specificity-008.xht": [ - "28bac9adb96281a8147691a79bba26966001da79", + "38dd6f02bd96da07bd5afd5a659b8f949e2dc736", "reftest" ], "css/CSS2/cascade/specificity-009.xht": [ - "c8338dce9f0654217679337308e9b55e7fead1c9", + "e25dffe83501181ac9ba9fcd031bbfcb15f5ae71", "visual" ], "css/CSS2/cascade/specificity-011-ref.xht": [ @@ -445938,11 +453007,11 @@ "support" ], "css/CSS2/cascade/specificity-011.xht": [ - "154f23052a0244539ac99494d60e022930bde40a", + "fd074fba9218f3c313e5ff570038fd48282bf3ea", "reftest" ], "css/CSS2/cascade/specificity-012.xht": [ - "068a0e84bea0d68d8ba9835989033f1368f6dd96", + "f23f31601d1b64b1b0648f54470a111565b3ae33", "manual" ], "css/CSS2/cascade/specificity-013-ref.xht": [ @@ -445950,7 +453019,7 @@ "support" ], "css/CSS2/cascade/specificity-013.xht": [ - "b8ae6a1d9fc72ebcaae4ee4f2b4f9708c2c0386d", + "5b8f1f118448eaee145f4aab8326fb3e11949f8b", "reftest" ], "css/CSS2/cascade/support/1x1-green.png": [ @@ -446166,75 +453235,75 @@ "support" ], "css/CSS2/cascade/user-stylesheet-001.xht": [ - "545e6488a093978d324acd01efc26e6c888e067a", + "22c68a4ad54ada476d42fd11b238a0ada1e98701", "manual" ], "css/CSS2/cascade/user-stylesheet-002.xht": [ - "afc941b164ffde4040b371526d3fe4543e03d079", + "f8294b820f94d290d07fb7f9fc607edd95e9c206", "manual" ], "css/CSS2/cascade/user-stylesheet-003.xht": [ - "62d12c541879e901e6bc801ae69102612da6bc3d", + "1242c920a98f73c078cabba02c5115447ef439b3", "manual" ], "css/CSS2/cascade/user-stylesheet-004.xht": [ - "f17106f355f9a26d4e50fd5ef576cf74888d70ba", + "f890fa30bb3d41818e189494c3d376505a7839ed", "manual" ], "css/CSS2/cascade/user-stylesheet-005.xht": [ - "fd1154c0e2dc166f352835fd3e9417aee6deceed", + "b8796e3034e518cb4b5341108fa8b27961666f93", "manual" ], "css/CSS2/cascade/user-stylesheet-006.xht": [ - "491884b35b697ef37ec11f2bf8e8416333514d67", + "2e3452a6b28085de85489b5a34e856abff75d1bb", "manual" ], "css/CSS2/cascade/user-stylesheet-007.xht": [ - "33ca70084987063727a36db49192fdef390333f1", + "a6d3405185cfb10adf4ad570f3c63a6ae8a39cda", "manual" ], "css/CSS2/cascade/user-stylesheet-008.xht": [ - "4628f5fd83e64287824b4ab20e9e725ed50421b0", + "9947411c444a39532c5bd07c217ccd5fa6650cf8", "manual" ], "css/CSS2/cascade/user-stylesheet-009.xht": [ - "e68c9e52db142c54faf0ea2110715e9a7c52116f", + "39b4ec0e033f12e64a7727cac5cb966913cdfc05", "manual" ], "css/CSS2/cascade/user-stylesheet-010.xht": [ - "f4726c8065d11d0df141cec834b9b70fdee5a76d", + "11061bbe00e403efca964398e147cfca23614898", "manual" ], "css/CSS2/cascade/user-stylesheet-011.xht": [ - "1e8969149c10c745b54134c8e9758f9a48f1366c", + "c07393a90c556be74d8595df8e2372718aa402fd", "manual" ], "css/CSS2/cascade/user-stylesheet-012.xht": [ - "428af4a29a14d1ee47167f35141a65f51736fd57", + "bff85765268d0b374fc2720f32873a63c0ae10f7", "manual" ], "css/CSS2/cascade/user-stylesheet-013.xht": [ - "144db016594b4837672e48fdbaafc4d67e439f87", + "e4ae88139a836193052bddc5f93f02bf30ae3751", "manual" ], "css/CSS2/cascade/user-stylesheet-014.xht": [ - "e032b66f6bba806b03a01480bb520efc9a533de2", + "64b79759a9ce1eaf0aeb7bbf97a15bee601c3a4c", "manual" ], "css/CSS2/cascade/user-stylesheet-015.xht": [ - "5a9f2866e25fa53674f13b076893dff3bbd56615", + "73acd9e5ce152f3a0019126a8bde862f0a0d8458", "manual" ], "css/CSS2/cascade/user-stylesheet-016.xht": [ - "b74cac7b55673282eea944b6dd5ada9e04943d78", + "c327ad5d92507b27f6cde6213146611e25f22de3", "manual" ], "css/CSS2/cascade/user-stylesheet-017.xht": [ - "21be079bec2ab4c565a8e3daefcef3c629911869", + "336dbbf2519c0e2ed910a7d221fd0f5e915cebf2", "manual" ], "css/CSS2/cascade/user-stylesheet-018.xht": [ - "341e9a1685ec5b42ddeba413c341f700df3e5f98", + "74869c22d5441ad5a9a2c05c3ce231ca69c7650a", "manual" ], "css/CSS2/colors/bidi-color-001.xht": [ @@ -447526,7 +454595,7 @@ "support" ], "css/CSS2/css1/c11-import-000.xht": [ - "3773a4f125c92eaa66778dd1fe34ba4cf38af899", + "b0607df10c8ac3a283e889500e3cc27dc37cb84e", "reftest" ], "css/CSS2/css1/c12-grouping-000-ref.xht": [ @@ -447538,7 +454607,7 @@ "reftest" ], "css/CSS2/css1/c13-inh-underlin-000.xht": [ - "0b1d9e8113a1e8ba1433d9fed61be1c7ef02ede8", + "6f48fcc4ee9e5ae57a93bf5f8ddd0f4d6f0fe0b9", "visual" ], "css/CSS2/css1/c13-inheritance-000-ref.xht": [ @@ -447546,7 +454615,7 @@ "support" ], "css/CSS2/css1/c13-inheritance-000.xht": [ - "ffa6eeba75a463f1b163c367ffd1b03ea6d551a9", + "06a5952afd4ec25a5b732e1dd62ac18ecead1bae", "reftest" ], "css/CSS2/css1/c14-classes-000-ref.xht": [ @@ -447618,11 +454687,11 @@ "manual" ], "css/CSS2/css1/c21-pseu-cls-000.xht": [ - "908243b6f15d97941a18e72c8ae90ee4905c3746", + "3752b958a3d97464ae8cc4acbbf9d7ef1ffba2fc", "manual" ], "css/CSS2/css1/c21-pseu-id-000.xht": [ - "d25adb367411416379798b1ff8a0299cdc885ab1", + "55e3cc0a6fd38a4c25eaa3da50f72e1935e2843b", "manual" ], "css/CSS2/css1/c21-pseud-anch-000.xht": [ @@ -447666,7 +454735,7 @@ "visual" ], "css/CSS2/css1/c31-important-000.xht": [ - "572fa7aef5061af8bdf76dc59be136aa4be6ac69", + "994ff1b613111ba0184e11ebd71606ce2f997354", "reftest" ], "css/CSS2/css1/c32-cascading-000-ref.xht": [ @@ -447674,7 +454743,7 @@ "support" ], "css/CSS2/css1/c32-cascading-000.xht": [ - "b670e1150e3fd4f2db5e84f4313230b30535c5ff", + "eaacfd701d6097e7f4979868fcd44de08a799373", "reftest" ], "css/CSS2/css1/c411-vt-mrgn-000.xht": [ @@ -448178,7 +455247,7 @@ "support" ], "css/CSS2/css1/c548-ln-ht-003.xht": [ - "4c8d330304096c9edfff65ad228f5bcc332c37c0", + "e0b139cc3aec6f3e6cbdc977d096c6c4c062ea8a", "reftest" ], "css/CSS2/css1/c548-ln-ht-004-ref.xht": [ @@ -448186,7 +455255,7 @@ "support" ], "css/CSS2/css1/c548-ln-ht-004.xht": [ - "ea3db64f183fec967dcdc5fe63e35b4dc9308b48", + "642ce41aa57f231f840497e9cc975d2d24512660", "reftest" ], "css/CSS2/css1/c5501-imrgn-t-000-ref.xht": [ @@ -449050,7 +456119,7 @@ "support" ], "css/CSS2/css1/c64-uri-000.xht": [ - "7a6ccb6ec871d5bf99af51f0b551ec934ec16ff1", + "6ed2cc6e54d85b24f201f42ef60f10c564914ea5", "reftest" ], "css/CSS2/css1/c71-fwd-parsing-000-ref.xht": [ @@ -454713,6 +461782,10 @@ "078e1dd6dd61d36cec239ed75d02051f61fe60a5", "support" ], + "css/CSS2/i18n/OWNERS": [ + "529a7d4e2cfca44f7804f88e375b383e2388c23d", + "support" + ], "css/CSS2/i18n/syndata/.htaccess": [ "be46d101ca33b82d51c60791d5da81847385fc43", "support" @@ -457374,7 +464447,7 @@ "support" ], "css/CSS2/lists/list-style-019.xht": [ - "59185f79589f3430c4153095481de32c871b67e4", + "91afbaec5c0d265318d1ae6cbc922bd740a30e87", "reftest" ], "css/CSS2/lists/list-style-020-ref.xht": [ @@ -457390,7 +464463,7 @@ "support" ], "css/CSS2/lists/list-style-021.xht": [ - "1cbddcee5bc3523eaeba2d37339b1739fdde3a72", + "c375699bb204c7b9d2f18bd439d7acc783f9551d", "reftest" ], "css/CSS2/lists/list-style-applies-to-001.xht": [ @@ -458878,7 +465951,7 @@ "support" ], "css/CSS2/margin-padding-clear/margin-em-inherit-001.xht": [ - "70aa9730124b136ef03ba2d4b53b43ba7e8cc343", + "549d015ca2282c21bad3069ac8338c76eae03bbc", "reftest" ], "css/CSS2/margin-padding-clear/margin-inline-001-ref.xht": [ @@ -459202,7 +466275,7 @@ "support" ], "css/CSS2/margin-padding-clear/margin-percentage-inherit-001.xht": [ - "7443dc0849e8a55c8aaea23760a51fda3d0f480c", + "3bb582d29deb92db2f5b1adbb1ea60781d96e9af", "reftest" ], "css/CSS2/margin-padding-clear/margin-percentage-undefined-001.xht": [ @@ -460282,7 +467355,7 @@ "support" ], "css/CSS2/margin-padding-clear/padding-em-inherit-001.xht": [ - "f119b484c7e9da48b1dfae1779c367a26e472e4a", + "edf51f6828a356812f434cddc7085e60f5398d83", "reftest" ], "css/CSS2/margin-padding-clear/padding-left-001.xht": [ @@ -460634,7 +467707,7 @@ "support" ], "css/CSS2/margin-padding-clear/padding-percentage-inherit-001.xht": [ - "0d0138cc7465337f5ab574c0bda9f773805f4004", + "cf6c74f28f38e03d016d5fc3896d3787768ee41b", "reftest" ], "css/CSS2/margin-padding-clear/padding-percentage-undefined-001.xht": [ @@ -462830,7 +469903,7 @@ "reftest" ], "css/CSS2/normal-flow/height-inherit-001.xht": [ - "fda6ceaafbe490f62085a14ff8c083f403516112", + "bbcd33d7c0d49ac8b5b72e1c2d52d6392e35e06a", "reftest" ], "css/CSS2/normal-flow/height-percentage-001-ref.xht": [ @@ -466750,7 +473823,7 @@ "reftest" ], "css/CSS2/positioning/absolute-replaced-width-013.xht": [ - "b464e096ccb1bc02a89592946ea9f312e7709f2e", + "9ed4299bb4057496566599edc48c5f9343be20f2", "reftest" ], "css/CSS2/positioning/absolute-replaced-width-015-ref.xht": [ @@ -466802,7 +473875,7 @@ "reftest" ], "css/CSS2/positioning/absolute-replaced-width-027-ref.xht": [ - "2c3b02cc80860855e4a0830c8bc4da03905367be", + "a5f7c2922e919fed49199fb7327fb54174202222", "support" ], "css/CSS2/positioning/absolute-replaced-width-027.xht": [ @@ -467570,7 +474643,7 @@ "support" ], "css/CSS2/positioning/dynamic-top-change-001.xht": [ - "6df86fd54d7924387af55d77b435df7e5cb9e958", + "3ca5c6bff278449641bb1c85fc32ae9d284df9ae", "reftest" ], "css/CSS2/positioning/dynamic-top-change-002-ref.xht": [ @@ -467578,27 +474651,27 @@ "support" ], "css/CSS2/positioning/dynamic-top-change-002.xht": [ - "40c5059cec88e2c85aceb832cb28179d82c607b2", + "7dabc5b41cfce544cd6fc7a1c3d37e92f71e55f5", "reftest" ], "css/CSS2/positioning/dynamic-top-change-003.xht": [ - "f04c237d91f706ec3af3be1727c0fd86a256b4a7", + "a1cbba880e40f2bf0f0b8dfd05c32e5b93cb011d", "reftest" ], "css/CSS2/positioning/dynamic-top-change-004.xht": [ - "ae0183eee43b2a0acc8bb2938f41f84225eda04c", + "7056f834d6cae0f89a4b76bf7aba04bea5fa19de", "reftest" ], "css/CSS2/positioning/dynamic-top-change-005.xht": [ - "e4c1363a050570443931ed08097fd5a3e2e46e20", + "261601fe53280d9c386aff91d39f20df8c4bcb43", "visual" ], "css/CSS2/positioning/dynamic-top-change-005a.xht": [ - "a3b66c29e309d9ad615ec170f2ced76fe401e301", + "0381c12404ba7ec0e64eadc632dbd876d8dd2e9b", "visual" ], "css/CSS2/positioning/dynamic-top-change-005b.xht": [ - "ffce7b03a1ca920e20a368d7759bc2bab59deb2a", + "8ee57c05569aab5d54ce27430312aa68e55e110f", "visual" ], "css/CSS2/positioning/left-004-ref.xht": [ @@ -467914,7 +474987,7 @@ "support" ], "css/CSS2/positioning/left-offset-percentage-002.xht": [ - "a6a5983c404babeeee4c84505fba860c54f4aa0d", + "7fbabde2dfbe028e4eb95254bdf2d555f9aa5539", "reftest" ], "css/CSS2/positioning/position-001.xht": [ @@ -469114,7 +476187,7 @@ "reftest" ], "css/CSS2/positioning/top-offset-percentage-002.xht": [ - "4e18ff75863795095389735b96d557a8fbffde44", + "f2cb2458aa77e92eb192718028a4418a67282b64", "reftest" ], "css/CSS2/reference/60x60-green.html": [ @@ -469402,19 +476475,19 @@ "reftest" ], "css/CSS2/selectors/attribute-value-selector-001-ref.xht": [ - "cc5ab97ad0b2bd2c9dc422c580bfd23bf731c304", + "6eb42b758e00b2d9bb41450530a710ccb1d8ae81", "support" ], "css/CSS2/selectors/attribute-value-selector-001.xht": [ - "fa6e3b8b4a1f0590f5849d3486416d8b8fe1e3c0", + "3c9b82d12fc6e93c50bd196b47ba8f4521dc2023", "reftest" ], "css/CSS2/selectors/attribute-value-selector-002.xht": [ - "72dfda92fefb318f1729683957841664929ec359", + "43cb55e259afd32bac61a315594651297b47e515", "reftest" ], "css/CSS2/selectors/attribute-value-selector-003.xht": [ - "b52a459c432c60c7699161b21f3c1b747253064b", + "07904c2ee48717ace5cc920e0c508a87d2fd2b76", "reftest" ], "css/CSS2/selectors/attribute-value-selector-004.xht": [ @@ -474666,7 +481739,7 @@ "support" ], "css/CSS2/syntax/core-syntax-001.xht": [ - "0d00dda2dbfd4fec65b86f8f3db0fd2c0ef7124f", + "c13c7398c669f4e4bdf781a75b5898803a06d58e", "reftest" ], "css/CSS2/syntax/core-syntax-002-ref.xht": [ @@ -474674,15 +481747,15 @@ "support" ], "css/CSS2/syntax/core-syntax-002.xht": [ - "baad1eef8de7d56df13bb8c77aa2d5b22060a80d", + "5112a461a9da6fd374ee75367b1241001a77fce3", "reftest" ], "css/CSS2/syntax/core-syntax-003.xht": [ - "a103e81effdbe66e4ab58133b4cc3fc8e48c8ebf", + "4e75ddf4bdda2aa673a5d988b2ba683e129afa19", "reftest" ], "css/CSS2/syntax/core-syntax-004.xht": [ - "5272eb4abedacec7754f9b2a9cb9f399fabc9258", + "22b5b2e876cc4811921382bebd73b77be5e94ed2", "reftest" ], "css/CSS2/syntax/core-syntax-006-ref.xht": [ @@ -474690,7 +481763,7 @@ "support" ], "css/CSS2/syntax/core-syntax-006.xht": [ - "2bd96a86b802c1fb340592c72f083f258ed9e8ee", + "7a5e151afe0f313bf230a476e3d58a5a80e16cff", "reftest" ], "css/CSS2/syntax/core-syntax-007-ref.xht": [ @@ -474698,15 +481771,15 @@ "support" ], "css/CSS2/syntax/core-syntax-007.xht": [ - "9906220e67a0b04623d8674f45fa2dd356da9f2f", + "db758c4019bdd277d89faf4ac1f39c06b9af4bc2", "reftest" ], "css/CSS2/syntax/core-syntax-008.xht": [ - "539858614f1760b47bf8c210d9143ed64d3e89e8", + "a82132a4ce45d624bfb1ce4bcfef5b4bbb2d7932", "reftest" ], "css/CSS2/syntax/core-syntax-009.xht": [ - "0d14614584b32ad61c85a5240dcd72e9c4d936c5", + "8ec94eb1916558a7e8bfa9dd7b5a6675dd85b74a", "reftest" ], "css/CSS2/syntax/counters-001-ref.xht": [ @@ -475246,11 +482319,11 @@ "support" ], "css/CSS2/syntax/signed-numbers-001.xht": [ - "c6fc1aad1aa947b9523ea654b11776401966a774", + "5c875531ee9629c0cd7e945f6c1265c13b46feac", "reftest" ], "css/CSS2/syntax/signed-numbers-002.xht": [ - "5f4209f1001556e1624a146b9512f2e76cedba32", + "eb1e97005eaff5c3d9bf222eb69861e5a3313d1d", "reftest" ], "css/CSS2/syntax/square-brackets-001.xht": [ @@ -479021,6 +486094,14 @@ "fb4b7b86ff4b56d001b6ffe72f6d9c8a91046d2c", "support" ], + "css/CSS2/tables/reference/table-anonymous-border-spacing-ref.xht": [ + "157b21a9f2954094ec5e682c3d131f320b6473a2", + "support" + ], + "css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht": [ + "40d1dfe3486108892a7d6ff61bc99196730bcb55", + "support" + ], "css/CSS2/tables/reference/table-margin-004-ref.xht": [ "cb0ab88ee6938c670cdb7140781d13173f759b41", "support" @@ -479361,6 +486442,10 @@ "cfb48d7f833a6afe528d58e77d8c387a9c69135e", "visual" ], + "css/CSS2/tables/table-anonymous-border-spacing.xht": [ + "f71fad8c0d476789196971c66abcba4b23320292", + "reftest" + ], "css/CSS2/tables/table-anonymous-objects-000.xht": [ "edbc3202f1429ab7002b31af4e545c81cd9ddab2", "visual" @@ -480205,6 +487290,10 @@ "516b5f1e6cec15bc53aef58f1eb41973c46e7190", "visual" ], + "css/CSS2/tables/table-anonymous-text-indent.xht": [ + "57bfe388308a128e32abc674b64acbf9903d6141", + "reftest" + ], "css/CSS2/tables/table-anonymous-whitespace-001.xht": [ "50b8874d4b4b1fbcde591344235be17ce7e4138f", "visual" @@ -486162,15 +493251,15 @@ "reftest" ], "css/CSS2/visuren/inherit-static-offset-001.xht": [ - "14adfe6fbcaa68c00899b8c26449172650fc156f", + "61f1fd742a5548e57d8391500fcc62f564e0e738", "reftest" ], "css/CSS2/visuren/inherit-static-offset-002.xht": [ - "caea5fb3322f504223900b8196baac1e42dd6395", + "170c1e848ac1e221432fcb1f3a9a536b19acda19", "reftest" ], "css/CSS2/visuren/inherit-static-offset-003.xht": [ - "bc194b610dfe11cd54ca71cbd9f3ab290485401c", + "576183ea1b56bc0ddd53cd595f326a28bea60f9e", "reftest" ], "css/CSS2/visuren/inline-formatting-context-001-ref.xht": [ @@ -486198,7 +493287,7 @@ "support" ], "css/CSS2/visuren/position-absolute-percentage-inherit-001.xht": [ - "366bbef593b68f482e7ed8466495190cef90d430", + "720e644016b30dbe27a13692f48d493004ff00a0", "reftest" ], "css/CSS2/visuren/right-offset-position-fixed-001-ref.xht": [ @@ -486234,7 +493323,7 @@ "support" ], "css/CSS2/visuren/top-114.xht": [ - "5736e3d496bfa7a31ab6e840b81d8a9d81e25d64", + "9a29954d994d7eaf7608804318317731bd695de6", "reftest" ], "css/CSS2/visuren/top-115-ref.xht": [ @@ -490274,7 +497363,7 @@ "manual" ], "css/build-css-testsuites.sh": [ - "ab2382a838116f012204de2c3d70bc591bc9600d", + "97cc415658e55acdc98c10db219bd832abf37ca5", "support" ], "css/compositing-1/Blending_in_a_group_with_filter-ref.html": [ @@ -490753,6 +497842,10 @@ "016c2ff7902fc01d8368645b7177e3932aa64d42", "testharness" ], + "css/css-align-3/default-alignment/justify-items-legacy-001.html": [ + "bcf17f709a9b87ef728262b658d1dfa65afc93bb", + "testharness" + ], "css/css-align-3/default-alignment/place-items-shorthand-001.html": [ "cc69bbbee852e6cd203d3f39dac2a1e05a428361", "testharness" @@ -491322,7 +498415,7 @@ "reftest" ], "css/css-backgrounds-3/background-clip-content-box-001.html": [ - "acc05421599eec798327aa8cd89a27728f42d655", + "0274ddcafae18210539741524c8d142adfabfed6", "reftest" ], "css/css-backgrounds-3/background-clip-content-box.html": [ @@ -493758,7 +500851,7 @@ "support" ], "css/css-backgrounds-3/reference/background-clip-content-box-ref.html": [ - "7c660f0f62d27fb5d06039138a5d28b2c07883a5", + "8d6167560bb724cd2cabb59984821bb2569945c8", "support" ], "css/css-backgrounds-3/reference/background-image-001-ref.html": [ @@ -495717,6 +502810,10 @@ "820cad495f069d1badb3a727b9a2514269c6008e", "support" ], + "css/css-counter-styles-3/i18n/OWNERS": [ + "529a7d4e2cfca44f7804f88e375b383e2388c23d", + "support" + ], "css/css-counter-styles-3/i18n/README": [ "be36f3153ffc6d9bde3da5e219063f046afe9d20", "support" @@ -495994,7 +503091,7 @@ "manual" ], "css/css-counter-styles-3/i18n/css3-counter-styles-070.html": [ - "53b74dce2c73344c6ffc5e5ce3676e9b1ca31a1a", + "a51f3d3a4fd88219141d856675491da088cba789", "manual" ], "css/css-counter-styles-3/i18n/css3-counter-styles-071.html": [ @@ -496817,6 +503914,14 @@ "55ac1cc272d6feaba627f45e402671e7bc83487d", "reftest" ], + "css/css-flexbox-1/auto-margins-001-ref.html": [ + "dfc6fe046906c564110225d01572aa6aa1e40858", + "support" + ], + "css/css-flexbox-1/auto-margins-001.html": [ + "2c9ced81462c263bafbc1ebc6024529e26f23e95", + "reftest" + ], "css/css-flexbox-1/css-box-justify-content.html": [ "a3e68485221a64b4197da0ea9e4e56352406098f", "reftest" @@ -499206,7 +506311,7 @@ "reftest" ], "css/css-flexbox-1/negative-margins-001.html": [ - "f9f00cac79a95072abb682ac20ab040e61141d6d", + "b180f3d5054d7dea5c878cb1519c1ba48e2cbf7c", "reftest" ], "css/css-flexbox-1/order-001.htm": [ @@ -499237,6 +506342,50 @@ "fbb795af85abb6bb28a2c3ac94012aad7e99b45b", "testharness" ], + "css/css-flexbox-1/percentage-heights-001.html": [ + "5c3c576ee34a20e61e33a9851d332c743a9f078a", + "testharness" + ], + "css/css-flexbox-1/percentage-heights-002-ref.html": [ + "63dfc89a1635f0f283e7513c58ba225f44be5739", + "support" + ], + "css/css-flexbox-1/percentage-heights-002.html": [ + "1b41b57b585955953e6c5ae2bc3b0bfdd1e63cf9", + "reftest" + ], + "css/css-flexbox-1/percentage-widths-001-ref.html": [ + "a139951dbeb1676b7add9a43d154595dc2e9859b", + "support" + ], + "css/css-flexbox-1/percentage-widths-001.html": [ + "22e1681cfb553f1c1e5242f02319f22d75a12de4", + "reftest" + ], + "css/css-flexbox-1/position-absolute-001.html": [ + "bcf0ce321b9aca0fba213f677e9db92d595175fc", + "testharness" + ], + "css/css-flexbox-1/position-absolute-002.html": [ + "459087f00f8417a3345f0bfc25b6d66d44364a5f", + "testharness" + ], + "css/css-flexbox-1/position-absolute-003.html": [ + "25d21bf70a43936b159001b9a405e9df65e0f222", + "testharness" + ], + "css/css-flexbox-1/position-absolute-004.html": [ + "222c04822ec756d6f4f504ed507aa678c7960b75", + "testharness" + ], + "css/css-flexbox-1/position-absolute-005-ref.html": [ + "f1bcb4c179fb298384a33b2f9d9723544fef4459", + "support" + ], + "css/css-flexbox-1/position-absolute-005.html": [ + "438bbc49265086b53018e830694c1fbd3887bde3", + "reftest" + ], "css/css-flexbox-1/reference/Flexible-order-ref.html": [ "a6a2ef286c9c2abd0456056ad17cbb0ece7dc2d4", "support" @@ -499637,6 +506786,14 @@ "3c6673e9c9040b93d5a841a0368a95f57dbb553b", "visual" ], + "css/css-flexbox-1/whitespace-in-flexitem-001-ref.html": [ + "09714cc32e9189de91ac4644e2651d90b080a20e", + "support" + ], + "css/css-flexbox-1/whitespace-in-flexitem-001.html": [ + "62ff3e2eac64bb2057391e4dcc4664a4839bbbe8", + "reftest" + ], "css/css-fonts-3/OWNERS": [ "1c72d614a2fa507e3c4c127a3ac36f0f9e157460", "support" @@ -500561,14 +507718,6 @@ "3d219e370db37a3392e07eb0c804d10ca7caf9c9", "support" ], - "css/css-fonts-3/support/fonts/Unnamed Med/FontFeatureTest.ttf": [ - "956115601525cc9a4150b87f88421ffce437aaf8", - "support" - ], - "css/css-fonts-3/support/fonts/Unnamed Med/Unnamed-Medium.ttf": [ - "80f2ee7fb17371c44aa582e71721cd767c1c1b6e", - "support" - ], "css/css-fonts-3/support/fonts/font-feature-settings-rendering-2-expected.html": [ "883083cdde66caca05384d3d6930070454e94fad", "support" @@ -506505,6 +513654,10 @@ "2a8f7afbb6ccfc4084534c36bd4cfeebcbae4194", "manual" ], + "css/css-fonts-3/test_datafont_same_origin.html": [ + "a793f06cceb92b34dc27728307995774a5d95b63", + "testharness" + ], "css/css-fonts-3/test_font_family_parsing.html": [ "fa926a9e86823cddea6d9f1418c752cf04e341ad", "testharness" @@ -506605,6 +513758,106 @@ "f7a5738de1e8c4231afad100668cf18ba46a7b51", "support" ], + "css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001-ref.html": [ + "bbc71495d0244bdb0400d8739a821dd225829131", + "support" + ], + "css/css-grid-1/abspos/absolute-positioning-changing-containing-block-001.html": [ + "a38fc1b790da03a61afc3ab0c8369b78c1038fe0", + "reftest" + ], + "css/css-grid-1/abspos/absolute-positioning-definite-sizes-001.html": [ + "884098260e1c51873c90d8328e31973f69adb224", + "testharness" + ], + "css/css-grid-1/abspos/absolute-positioning-grid-container-containing-block-001.html": [ + "d7a6d2f0196a3e1e7b9bd618a1f885ae58dd05fb", + "testharness" + ], + "css/css-grid-1/abspos/absolute-positioning-grid-container-parent-001.html": [ + "a7d866aed9b5021e681dadb85eca50462db1d748", + "testharness" + ], + "css/css-grid-1/abspos/grid-item-absolute-positioning-dynamic-001.html": [ + "92363ede0248b32c2254572015efaa7eaa1cd1dc", + "reftest" + ], + "css/css-grid-1/abspos/grid-paint-positioned-children-001-ref.html": [ + "b86ce6a3644e3b202938ae4158635a2d224ad8c6", + "support" + ], + "css/css-grid-1/abspos/grid-paint-positioned-children-001.html": [ + "1093709bd8e0cbbbbdc02032e1e4771cd9ab53e3", + "reftest" + ], + "css/css-grid-1/abspos/grid-positioned-children-writing-modes-001-ref.html": [ + "8baf87330e4005ddb664f5fc71c972e4e1c00f40", + "support" + ], + "css/css-grid-1/abspos/grid-positioned-children-writing-modes-001.html": [ + "45d1fbeb11504621afa26f82ff0819d4c8659962", + "reftest" + ], + "css/css-grid-1/abspos/grid-positioned-item-dynamic-change-001.html": [ + "9aa0e70e845521fd7127581a4cd017e1ba3dc15c", + "reftest" + ], + "css/css-grid-1/abspos/grid-positioned-items-background-001-ref.html": [ + "4094fef3dedb631dfb06f600ce44ccfbfdb78d02", + "support" + ], + "css/css-grid-1/abspos/grid-positioned-items-background-001.html": [ + "1776e1042cf1712a86906e6e8b56faf9d80bb143", + "reftest" + ], + "css/css-grid-1/abspos/grid-positioned-items-background-rtl-001-ref.html": [ + "b274695780cb0fb46e78c25909c24ed5fd27f285", + "support" + ], + "css/css-grid-1/abspos/grid-positioned-items-background-rtl-001.html": [ + "581116474bdd4214f803dd7c6375104308c245e8", + "reftest" + ], + "css/css-grid-1/abspos/grid-positioned-items-content-alignment-001.html": [ + "dc376db419836c1fb2cc0d0477b20454159813e9", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-content-alignment-rtl-001.html": [ + "4530ed56a6b6b37d876cb9e56d73718440560f7f", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-gaps-001.html": [ + "09614159f2996973a825a574ce884679aff69283", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-gaps-rtl-001.html": [ + "b92090cc95a982097b54ba0695c4b0b43fb26b5e", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-implicit-grid-001.html": [ + "41cc2addf301921ffef0c1b98fb34ab41af059c6", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-implicit-grid-line-001.html": [ + "7e1f3ea3a2db26462048f2614725c8467095e934", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-padding-001.html": [ + "024ababa5af46ec7fe3195ecbb2af5a7d1aab075", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-unknown-named-grid-line-001.html": [ + "a0a24530691fd19fc07986657375033c1d7eb524", + "testharness" + ], + "css/css-grid-1/abspos/grid-positioned-items-within-grid-implicit-track-001.html": [ + "36d607db41c6cd74eb66859e550cfd339d3cd6f8", + "testharness" + ], + "css/css-grid-1/abspos/grid-sizing-positioned-items-001.html": [ + "44c77a955845c78f581e039f78364a8caed6a6c1", + "testharness" + ], "css/css-grid-1/abspos/orthogonal-positioned-grid-items-001-ref.html": [ "a9fb23476ac659978575cb83d3188f4d6d6e7b0f", "support" @@ -506845,72 +514098,232 @@ "6e0f7a2262ec3476d8cf32ea562fe0f67ad5a7f1", "reftest" ], + "css/css-grid-1/abspos/positioned-grid-items-should-not-create-implicit-tracks-001.html": [ + "f042dd8f7e7c4d228ef9f1a7eae641899f516940", + "testharness" + ], + "css/css-grid-1/abspos/positioned-grid-items-should-not-take-up-space-001.html": [ + "2d6dec61a1a2902a58f50b3b8e1330c97ce547b9", + "testharness" + ], + "css/css-grid-1/abspos/positioned-grid-items-sizing-001-ref.html": [ + "de3401d0edd3dbb428066d5fa85f5235d083aa18", + "support" + ], + "css/css-grid-1/abspos/positioned-grid-items-sizing-001.html": [ + "053c2ad3fe2edfd36dc8743c01cf098af91c026c", + "reftest" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-001.html": [ + "19ae01ab31a15efc601d2857d3ca1dd879cb4e66", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-002.html": [ + "abb8f221910dc58b87ff1d3f5b9f346994688a8d", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-003.html": [ + "1dee7406f817681eaec5c1b5607b9762bc546329", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-004.html": [ + "03da21bdcbb4fdb53f93c372da2af4a175fc0bc9", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-005.html": [ + "c4e793351e05b74a9d859286407f30f019e581ee", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-006.html": [ + "ab2604e1dd0396402ce6ab0acea3a340d107ad08", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-007.html": [ + "17b0c72f106d9103af25c654e913ad00c2a5ee19", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-008.html": [ + "32b50873af5b434817de9ca3fb5ea3b79808bdbc", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-009.html": [ + "29551eeae983adc5cdd9b518b64a1d0c9560f062", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-010.html": [ + "396afc15a311bb0a636ba2570b57366a52fbc770", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-011.html": [ + "49109ff240399f0f1f60308850f805779dfc4b21", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-012.html": [ + "45a9279c62d4052a150a6da13ae9c177a38f01a2", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-013.html": [ + "29d4695a9ad8eb5eebcdf15b3693a714bc412779", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-014.html": [ + "66d7b70d305869abb453caf2f0e51a274bd1a537", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-015.html": [ + "874f6b55e6b204d6cfc41c73a2c00a5f4229d298", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-016.html": [ + "51b59909bd41adefa471e9b8bf9ff75e9ed92259", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-017.html": [ + "6423406f9bfaf43ac97fd4547a784c2bb8d19bc0", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-018.html": [ + "123575acf3c090c6479e5e4fa064c75fcea56bda", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-019.html": [ + "f611e34104ae873f1124032aa22621dfcf4fa128", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-020.html": [ + "c0a3bf24655a77c05dce301b0173f18d0fa42234", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-021.html": [ + "e39bd0c869b5c69f99ddb0e43ecd516c23e22051", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-022.html": [ + "436855cb48c5de8f913f209ba8172644c0e97226", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-023.html": [ + "07ea8b43529cc3abe597b5cbaf71b577c0e08a81", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-024.html": [ + "4ef7fd0b4687fe9f08513cccff2707bb05d92a78", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-025.html": [ + "4ecabe7266535153ce6e38e1bee6e4eba28c5260", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-026.html": [ + "dc702a1d181ef4efcf4d5161ff1b10bbb8e08337", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-027.html": [ + "a5646db94e62b9455c9ed44e9f1a86f1cda74153", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-028.html": [ + "9940f6e83d28a45ad87a50b24afe5eca1c3ff596", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-029.html": [ + "ed6197207c84d52614f2e4bda31aa0794ac244ce", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-030.html": [ + "df920f26e14d9adb3e987771b74f3ca21d001b9d", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-031.html": [ + "24cdde781a98046593d3f0a57906b756326c4d83", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-032.html": [ + "489c89b0d82b3ad92e342db2b680b152e4bab404", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-033.html": [ + "4905906bd110e7b9ef3ad1ca4e0b01417b0998c8", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-034.html": [ + "c9ef480494c982efd2cc2b6801eb0c308de0a608", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-035.html": [ + "f93f4f2a62aa2073676466dcfc5975556dd04739", + "testharness" + ], + "css/css-grid-1/alignment/grid-alignment-implies-size-change-036.html": [ + "748d617dac4b7c97592967c0df1ee82f6a43cc0a", + "testharness" + ], "css/css-grid-1/alignment/grid-content-distribution-001.html": [ - "71d678f48849879663d199ec57a5f19fb5e026b3", + "5622a264eb2dbd6cf621ac97aa4a8ae5db82c6b3", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-002.html": [ - "a20d044edc50199306349700b03522225841fc72", + "2c62d06a72062571ede87351e2538e386807e0b9", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-003.html": [ - "4ef0c09a8c51e4fd2979887fe7420a62eb783027", + "c07303851028f6421158fe307889a7a53d7f31e0", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-004.html": [ - "f1f2f65fad70478230f2456cbdf68ead9c6de7f6", + "f8692678b09611f1bcb5f1a1446f4eaeeadb64ac", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-005.html": [ - "cf1c4546b569bea0bea062736ccea0e9e4f934ac", + "7d0900472ae1237a92d1070ac434e7f56f537a52", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-006.html": [ - "f0f17f458563b57a39ff7b684996edfede82e510", + "ca8fea1a3e366d3dda1f939d6e119949a3774c48", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-007.html": [ - "08db6086c6a30888fee6881d6646d42c509d218b", + "01482b8fae411849e91dae8390d9bfe6e6ab9844", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-008.html": [ - "66d112eae6876a44c2246312719c2e6a3b93a5eb", + "77bb5394d7628566d07047220a08aba58970cf6b", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-009.html": [ - "a27003f50acf7ff550d99b14a4a4435f80e791c0", + "b5ded29b361ee406736a514d00743915ee7588c5", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-010.html": [ - "1f59c3d1af79df13007d0ba29132917a6e075e54", + "c0a3834676fa8bb146441bb7bc969560c667d1e0", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-011.html": [ - "edaf37eff5ed1db1709729e669aee460457de3ec", + "f9be3a544d65dd63f8a718b0884fd87bcebc34a0", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-012.html": [ - "6ba269671145f1f8d5a32f6a1efe5927a695f693", + "ee86f5d97a3db4b22f3ea5e9cec5d1f603401d36", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-013.html": [ - "a2036358ed56a79580d675cccd820e40b82bb3d0", + "ef01ff8ea9d9357382c59fca4832901e091b58b6", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-014.html": [ - "9e20812f1655d4bbbde261694deee0c1d09ff214", + "db95b9693a1e8986d81fb0fb42b045226ae87de2", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-015.html": [ - "d49d3b8b7a92a7cae108d7baa9d40b95699149aa", + "818bb47cab93792162cd3effbb1ab4bbf4cafeb4", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-016.html": [ - "9ac8ed870190e63aa9e248cf41c81c41b4816442", + "c5a38881fd5302f7f87fc0a08048455c2f9c6d93", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-017.html": [ - "7295162365f4929cf68ebad634be1d3bd6f7227a", + "4ad7a14d8e640963a7b19401e5805d20379da1ad", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-018.html": [ @@ -506918,321 +514331,373 @@ "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-019.html": [ - "5e97218c93c95bd57edd96219a520a894184b2b6", + "4a72208bc09151b5b6b471582c7211d1c6e1abf9", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-020.html": [ - "228cd6b2312f64f7ae7bb1421fb6b8c5e6bb4c22", + "cb61983358d8df21f445c52e2b4672f036b92930", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-021.html": [ - "a626f563a51ef70a0a6221dd397c4ea9dce74f2c", + "9be4696e87426cb7d7bbfbd623012427e1211e15", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-022.html": [ - "0699d18ff695b8920588304e9685f843fa006b4f", + "bc821e4fdc223b8f73c640f7dedc74c459cc6124", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-023.html": [ - "788e76b9f562e1a2af800b8939d8cd6dccdaf991", + "1cf05242c1918dfd94c8e3f429296696f1fbf2a5", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-024.html": [ - "d0f957e475c3c0934a3d84e64ea6552e47cfac7a", + "ed4439dcc8fca88286db1b6fbbfb9130f37bf17d", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-025.html": [ - "136e1a1999f3696a5742cb53a0d30e6411cfa6f4", + "ada440cf035137bd6c5377d543de603802a10680", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-001.html": [ - "0681924a44ddc7c141a8c20203289c0862e7ec7c", + "a4fb6eded9c20195017f73aacf53d08fff0fe990", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-002.html": [ - "e7771a519139a375f641125ea2a0a90102d228c7", + "a87a2c260aaa872ec9ea5699a0dcfa106e45bb2b", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-003.html": [ - "7ff3085ec34b3fe9664ef0a9e02ebe862c42c22f", + "1ae67e7963212bf6afa678b929873d86cec025e1", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-004.html": [ - "c474e6c83ca32385734a035fd36ef41e2e666f24", + "bc0978ff89ec6af691f88aa88e2b805f17012368", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-005.html": [ - "c5a5d80b273add95223306d99471d3a030fb8be6", + "2b5a655c5a934b98c0d7fcb8553eb8efa35cb5af", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-006.html": [ - "55d9f476640c87eb1663114599ddb6eafd91b7f0", + "712436aec944f0e7163da66a62d8a629a1c7ce80", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-007.html": [ - "d81f70fda4665e94cd32483127e069dec9b760cc", + "fa284f5404d3e24cc395a37380291cf58440e447", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-008.html": [ - "d4f0fde36ff5b437ebda34698d199cce359f00fa", + "24253384b12c5c20ef44dd14d882ab35a7a411f2", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-009.html": [ - "5a50c58f6b9ba8b4b51b020b93ee61d23bfb500f", + "a89a85650c01a24a088b5b704805389ac487afc7", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-010.html": [ - "fa5cc94c766ac0d455326bb117ae530df0ce6d4d", + "a676ad7b1ad0dc6ad205d767a4e366d43b2d1600", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-011.html": [ - "3f02b75738ac80f1875a3adc0ce07052841c6be4", + "c53c339b5ac8ea5f9b021cca8eca56bbffa25ead", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-012.html": [ - "97dac1879d441e29c97743e9e63bb44f6a413f67", + "d8746b969ea563cc8e683d00824a239cb9f45953", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-013.html": [ - "99832804da447b3cc35db8bb60492781a03ffb62", + "94aef014e0d0bb420a8d7421ebabb2a9699a14b4", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-014.html": [ - "2cc1f4a715b939a882d7394cb0d49d5ba4b127c7", + "1eec29a79380f6fb9e55f5e65f61f9fb906da192", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-015.html": [ - "8b1947a434ec968a5bd0170334e7e2c907e69f28", + "c792926de9e4a1923b5f67c44095fc5609f03f79", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-016.html": [ - "998612427cda18f277c5edf484892fd3b313bffc", + "3cda565159049d2b6d715166d9835041cb4918df", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-017.html": [ - "080c87419291575847c9e94eadf5096f4a438bb3", + "1d387c5780df35128eabaec4d431cb92c7f96d0f", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-018.html": [ - "aec32266b3e66fb38f45888140bf773d537728c9", + "dc470e6ad001ba3c32a264941a5a245a8241a91f", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html": [ - "6891c290c82adce07bb2409732789b627f07ded0", + "425356e77beca062326b6902b0dc0322bf081e72", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-020.html": [ - "0ea2837b789ce2289aa2ec1c514006899d13def7", + "8bd9b585fe347a4be4ef2df571164ccd5a2163b5", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-021.html": [ - "0e2a972619d21b4de097ddca6f39f2cae486cc5c", + "f8127fd46686ae877b0ca01b26d0278a49fa898e", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-022.html": [ - "fb73bdbdff8fda79519e4fe387127ca539506357", + "e8094181ef73d466757fef11a439efa1af839a06", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-023.html": [ - "c8b2681075b476b15221bcb1fe1ea6a4e0c40409", + "c62f2d4b7bc3e85cc51b46b97e7281a7030e39a6", "reftest" ], "css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-024.html": [ - "6446e5dede7383a43ac46b8083b6012b312a8124", + "046b9b3ebcc52c5ef1a5448ebef9ede1f0ed39f7", "reftest" ], + "css/css-grid-1/alignment/grid-fit-content-tracks-dont-stretch-001.html": [ + "9fbe55ecef2ac64d864d6592cb9b81198acac261", + "testharness" + ], "css/css-grid-1/alignment/grid-self-alignment-stretch-001.html": [ - "4ebbf6afe7452b5a61c9a475b7beb3958dd39ee5", + "faa0a4a8e6660d8bb12cec2ccbe86e8e23bcc936", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-002.html": [ - "a1b58d6358acae0e0a4d48ec2e896b5a86b296bf", + "735b425c34d147a32b97e60606a5d088389fecfc", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-003.html": [ - "3d0b16a4ad5d537fa2728e630bf81d8a55303cd4", + "7f5a41bc81b97bb4b62e55b69fa1ecfe241edaed", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-004.html": [ - "71f1966a0c3f899dd3b2601d225ec5683514e296", + "0e12bf8b99c417c9176100f7b945b9a83d53f69c", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-005.html": [ - "c95fbde16d02ff01eab5e39a1f9b66ab5d0ca88c", + "d28606de466e787ac8e4c1f742806c2bbf570a88", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-006.html": [ - "3bf926a4638e8a7a36d255e3a54c2b33e978c850", + "2ea3e018bf73940231af89dc72c2352fe2985732", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-007.html": [ - "00a3a65a3028898decd5b33dc749d1d4b61c05f5", + "d2ff7e0efbb1240bfa4b21b0d2e7eb0891950348", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-008.html": [ - "f7058e3180965b0b85b83d66cc3623e4d6ed081c", + "0ee2f7d1f4bed6383a762f86efa6dc2a8a27bf4b", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-009.html": [ - "c56e42e2c7726204f112bc124adf6bf4e75e1c83", + "d64052253097bade696ff9c8bee42bfa8cca9604", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-010.html": [ - "cbec5d103a8c29e5af97a54fe856c250ced3ee69", + "9523288742cb15e2451b41b85596ff868b6b4648", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-011.html": [ - "b2556efc42d96830190ef6bbe0fdeef7c939cd76", + "9929a38f502a2e82ae93b6a39910eacb04ee6e58", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-012.html": [ - "7700cff07f4930e4453c7dabef98ff41dd85f04b", + "9a19df31cfded6c4270da40070c3e8390c8366b2", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-013.html": [ - "64c4f341755b5bef5772cc164427033fbf3d44f3", + "a8cb352297f011b42b3740fd73f2f78f0bdca29d", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-014.html": [ - "e7f19c6990b60e8d527089d600d0b5d585f37d42", + "11e3cb854d0c9fb7535a7408a56e9f372acf7b74", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-015.html": [ - "516f95b9ab855414499423cc0b6354b37735c428", + "7b145fe80d78b51f42f1a257e64b77f256324029", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-016.html": [ - "4e6a1caea23ac6a54e2e6f5fd9585d574dd615aa", + "3d7b17fa76b3f21ccd882072158f25c723698b24", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-001.html": [ - "ba37dd2cb887de2c6a577e7ad538f588f6c2a6b5", + "613da8787ea601c01cd79348e68d94cbdf4f6c12", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-002.html": [ - "2a88930bce761a86b84bc39cbbb9c6c4fb1ade6f", + "bfbfeef9485cd0a842729d72ae6a7d2978fed0ee", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-003.html": [ - "1a598d7e5c0a63aedb6fa83a81084707a97082bd", + "47f8fa7e366a0928a1ef6ee30d3e97898d10b882", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-004.html": [ - "aba771e25d3801ea42786fd006e5e444605fed9e", + "0277d86138e1e5aecea0fcde768a48a8b841046c", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-005.html": [ - "45aee24069e89a238c99b61ee905ab516fc1fe4e", + "b82ead09258f8746f6c7d4d9fd363b2bdfe2fe42", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-006.html": [ - "481ed2e3a960f5e3da1dde22245d1da6f33cd344", + "290d852faea189b602457356f6abf8df51f4e306", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-007.html": [ - "62b193d96908b1950ad8d7ff994e7f0718b3a9f1", + "f8418fe79ca641e453791ca1c202cdad50220b2e", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-008.html": [ - "55f131bf1a0566068b0882ec90cd37e257b9b28a", + "10e77671b9a37de05f4898e035aa29fde999f64c", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-009.html": [ - "d2ae2b5839c06f483740ee96fbd718110515d095", + "9f7f821d8fd60bf5ab47f5341a3a103afe94d3a8", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-010.html": [ - "90cbedb0e00ad7da4b3d9627804d668e160935eb", + "f5327de3394428415fed804e4e79efc0fe963817", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-011.html": [ - "53f3a18185535c7310df5ba9132e63cad8daa651", + "a7aac5da4c4e085b14c77a0088a4d608c637f9bc", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-012.html": [ - "170a800b282312f4f4e35845b4d6009b3e491ca4", + "b35ad113f09d62cb40cf4a16ff6faca82d73de35", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-013.html": [ - "ec7e80425ea1e5df487f43d62d1bbf8e5774d294", + "5e97e65254d39476e883cb847d421a54496c71a8", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-014.html": [ - "66d1929467cee9b75c05c30f1be0b29969646b1d", + "cf7374a5f900e4d6a675dc32a9181cfd1653075d", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-015.html": [ - "d22228744c0dfab1d541361812317680c8e6db34", + "1ebbfc6564b9c8350fa618bea97ecab3fb44eade", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-lr-016.html": [ - "6a5b4f1e3f8713ec386971b90c152844a1963153", + "74711c54c4c2148895e75132d9cebc225a9128a2", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-001.html": [ - "f3839a8b379099186f499886a2687d879941e553", + "a4d4dec0f3fb7f490c2e046d535d8f86a89ec519", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-002.html": [ - "f2e48ba123603f1617302a842d13b41f8a134791", + "2ab21074fa42c487f294866c39859e06364715de", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-003.html": [ - "9cf06a6284b8ea46a451b750b634800edf0a263e", + "695ee5fa198c111a3f8dcee1520938878b003410", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-004.html": [ - "ee801dc782b31539787b108e2249163648fb9476", + "6625c4aa82c02c86075a49d0485160b24f5ed5b6", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-005.html": [ - "595f81d3ca4465d53968b1a5e7d2c5ef9364e1d7", + "5c400ff43392287f0203102c100ae1d286286e94", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-006.html": [ - "d824792aa48927230d5d79413d6b31ff9e6a9044", + "5c4f715f864ee0718a28cd56aef5bb63549042da", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-007.html": [ - "7875a1c3f5bd7ed5f9bc6d57ee55a74eae70d08c", + "82b67b0f255a36275c9e2179f7c0a6c194b80881", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-008.html": [ - "a91f9d4cd8375f9a3843df68c1699be43464a519", + "df9a693d3d6a7ecfb8767b1e53af0f71b54e4cac", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-009.html": [ - "b34bf92f1eb907ed1cae789ca5d0526180746a8d", + "9223ee50b9c22c737e42f113e67418c3b9f42312", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-010.html": [ - "923c6fbd83ef1df81c92f3b818d5ed6bc8545eb8", + "065d965da5145e629517941de214c53a990e7d04", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-011.html": [ - "30701ba96fd590d43fa4d69e2393493812950a9e", + "819fb3899679610911df95110f051973ef4fcbb6", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-012.html": [ - "eb4d83cc9c0053fd305994ce7eeb7015a75a85d3", + "52459738d7455d7ed97045aea124b2160d37643a", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-013.html": [ - "3d1e1bd37812a4707305255afa4ff94433995771", + "09be06f107f5ea97fc6db45b8bca150e10dc7296", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-014.html": [ - "746b1f48171561ad5aacc7ce282592fefbb2ab3e", + "0270a89bde2e54d3108d8ab8b8dbb3f64ae855af", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-015.html": [ - "a913de9564b2e44fec43b66177cc6b94cb174a08", + "f49ae99abd185af7bc9937c16bb7f4bb2044bdc6", "testharness" ], "css/css-grid-1/alignment/grid-self-alignment-stretch-vertical-rl-016.html": [ - "749d78928a228bb67878b3c088d36bcfd010aa08", + "86d478dee444129ccd10f76aed6d80c75251ff13", "testharness" ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-001.html": [ + "e7250b61f6dc882945f73412ec73c0de7f139aad", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-002.html": [ + "083e1bed1a996e0a333456163df2610d94acd682", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-003.html": [ + "4ce945c003fe0ea32b6d92ace158f3975ec557bd", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-004.html": [ + "5d67cb17c0af2c67282c454b5dcc4b0eaf346220", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-005.html": [ + "d12ea65c89b6df11bdc0e9cbfd92b72084fe9709", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-006.html": [ + "04c3d0b31ecdac7281680f551c3d2368985f7acd", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-007.html": [ + "4163237401ba3f1e8e7bb8f4cd85c130aad85079", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-008.html": [ + "9322237dea7e159bdab91cf9e7964e81a19a6240", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-009.html": [ + "7de044c48d604dda57553267f6247fa2926a2316", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-010.html": [ + "fc5cfbb40c6610126e402487cda944934c266a1b", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-011.html": [ + "e7bd2ef62d02b104e0df649945ca59a5fca930bf", + "reftest" + ], + "css/css-grid-1/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-012.html": [ + "dc9d15b18538afb38790de51e31095ce9f93e0a9", + "reftest" + ], "css/css-grid-1/grid-definition/fr-unit-with-percentage.html": [ "e29ef66eb632f1f9834df3233f741fb51fed5eea", "reftest" @@ -507277,6 +514742,10 @@ "e30c5d9b04eaf45a511b8df22a2c9719a03ecd92", "reftest" ], + "css/css-grid-1/grid-definition/grid-shorthand-001.html": [ + "31ef1f583e9d09e4d719a0ca5cb5531e8ce08b36", + "testharness" + ], "css/css-grid-1/grid-definition/grid-support-flexible-lengths-001.html": [ "f03efa4af7f9eb9decd60bfe44c7a3166947ba32", "testharness" @@ -507478,19 +514947,19 @@ "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-006.html": [ - "a18e54cb5ba9b0f91c443e073084784778ebfa7b", + "df2f90f3fb83a670f78b6b63c096ef78fd14a6c2", "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-007.html": [ - "bf657a093b431c6c0f17f4c207a7b32ba0822045", + "1d2a78a5862a71a9b360bf568bcfb53c7f868f17", "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-008.html": [ - "fc9ce48c25c9d446e1b6186469216a551aa67afa", + "5dbaa3254fa6c4235fc6fb56a1635fc27060c3a8", "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-009.html": [ - "c843c219820996931e54f2ae404cbb03bfea2e59", + "70210c9a1706894f4a6a63ffa92b3c979998d2a3", "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-010.html": [ @@ -507538,7 +515007,7 @@ "reftest" ], "css/css-grid-1/grid-items/grid-minimum-size-grid-items-021.html": [ - "de9477d81656c85b0d41044b1ffb44634c78eb0e", + "205f2292e788eee87490530488e2f1575e809ade", "testharness" ], "css/css-grid-1/grid-items/grid-order-property-auto-placement-001.html": [ @@ -507633,20 +515102,20 @@ "ff6fda3a436fa54df17a321e2458204fd963dfb2", "support" ], - "css/css-grid-1/grid-items/support/100x50-green.png": [ - "cd621ca154bb5b1f92d8f593a15ec8eba8ce8e38", - "support" - ], "css/css-grid-1/grid-items/support/200x200-green.png": [ "4e0148e2484a2bb979af76a5015aa25db5e2cc6d", "support" ], + "css/css-grid-1/grid-items/support/25x50-green.png": [ + "0891f51a69b099a3d04ec15bcc81ef5da2766c06", + "support" + ], "css/css-grid-1/grid-items/support/500x500-green.png": [ "8d02cbc578a3704611aeacf28a534f3983851060", "support" ], - "css/css-grid-1/grid-items/support/50x100-green.png": [ - "2995c59ce9aad40a9303380fc9dcc644e38bdc68", + "css/css-grid-1/grid-items/support/50x25-green.png": [ + "7082f20d7a960faa3a3a2db3f78586997ebc17dd", "support" ], "css/css-grid-1/grid-items/support/50x50-green.png": [ @@ -507773,6 +515242,10 @@ "85a397623ccb6b2ced1450af19f0eaf3a2f6df22", "reftest" ], + "css/css-grid-1/implicit-grids/grid-support-grid-auto-columns-rows-002.html": [ + "909c91b995daafc31a6fa9f6989dc78c892840e3", + "reftest" + ], "css/css-grid-1/layout-algorithm/grid-layout-free-space-unit.html": [ "5873efcda9c17e48a8437a62bf6871cbf96bdc46", "reftest" @@ -507793,6 +515266,10 @@ "eced3add6efb636f7d33e8a66048da2179c8a152", "reftest" ], + "css/css-grid-1/placement/grid-placement-using-named-grid-lines-001.html": [ + "8015ca1523215344ba88559f5efd3407e1b22de2", + "reftest" + ], "css/css-grid-1/reference/display-grid-ref.html": [ "6819ecfa15b9553b99dadf71aaa1959c1a22d6d4", "support" @@ -507845,6 +515322,10 @@ "ff487f266aa067949899506059e19d4b8fbf429c", "support" ], + "css/css-grid-1/reference/grid-support-grid-auto-columns-rows-002-ref.html": [ + "15153e77178d8cd869839e9a449e9beb130af023", + "support" + ], "css/css-grid-1/reference/grid-text-green-margin-no-collapse-ref.html": [ "feb53485e24aeaf9a5f27be5e42cc4a6fc5b8df0", "support" @@ -507853,6 +515334,18 @@ "a9d8444db24ab38518f07a965a8a537cc6add437", "support" ], + "css/css-grid-1/support/grid-alignment.css": [ + "b45aee51245613ceddf8eda70d995a26027671bd", + "support" + ], + "css/css-grid-1/support/grid.css": [ + "6bb300b8baebf700481ea162fb7b41913fcca29c", + "support" + ], + "css/css-grid-1/support/style-change.js": [ + "a92e1d3f5be007d10fdf432bb198f87b00bdc35a", + "support" + ], "css/css-grid-1/test-plan/index.html": [ "e633dc7584fbc7bfe99177aa5dd9fbd107a2d3f5", "support" @@ -508125,42 +515618,42 @@ "8542b83ed433bfdda8f8bf4f92c8d2e993f9c968", "visual" ], - "css/css-logical-properties-1/OWNERS": [ + "css/css-logical-1/OWNERS": [ "4dd9aea6bf0ddc75d703b1ca3867fedbc27095e8", "support" ], - "css/css-logical-properties-1/logicalprops-block-size-vlr.html": [ - "68a86c5b34cf3769e4cda12ef4d23ecdb523734f", - "testharness" - ], - "css/css-logical-properties-1/logicalprops-block-size.html": [ - "e9597ce04c2b8be8128f9b411e7990bc85d3842a", - "testharness" - ], - "css/css-logical-properties-1/logicalprops-inline-size-vlr.html": [ - "a0438d0713820ac5ab82f0165af7711f71d91ae6", - "testharness" - ], - "css/css-logical-properties-1/logicalprops-inline-size.html": [ - "fea8f8205053e933de3dc4490c918c3db69a4a05", - "testharness" - ], - "css/css-logical-properties-1/logicalprops-quirklength.html": [ - "c2b3d06c377e8abae3691abb60f8bd84433ed384", - "testharness" - ], - "css/css-logical-properties-1/resources/style-check.js": [ - "f6260209571bdd53be52c698f072c121e3702dd1", - "support" - ], - "css/css-logical-props-1/cascading-001-ref.html": [ + "css/css-logical-1/cascading-001-ref.html": [ "b95cd62ce3592f653aaa54de0dbc27e16618064b", "support" ], - "css/css-logical-props-1/cascading-001.html": [ + "css/css-logical-1/cascading-001.html": [ "a94344f196774b463dff39c022a48a0cc5585c88", "reftest" ], + "css/css-logical-1/logicalprops-block-size-vlr.html": [ + "68a86c5b34cf3769e4cda12ef4d23ecdb523734f", + "testharness" + ], + "css/css-logical-1/logicalprops-block-size.html": [ + "e9597ce04c2b8be8128f9b411e7990bc85d3842a", + "testharness" + ], + "css/css-logical-1/logicalprops-inline-size-vlr.html": [ + "a0438d0713820ac5ab82f0165af7711f71d91ae6", + "testharness" + ], + "css/css-logical-1/logicalprops-inline-size.html": [ + "fea8f8205053e933de3dc4490c918c3db69a4a05", + "testharness" + ], + "css/css-logical-1/logicalprops-quirklength.html": [ + "3024bbd54e4cbe1ee55e59684188587e2a56fda6", + "testharness" + ], + "css/css-logical-1/resources/style-check.js": [ + "f6260209571bdd53be52c698f072c121e3702dd1", + "support" + ], "css/css-masking-1/OWNERS": [ "388433ab37e52bf8982700fad3ffd34b8ecae122", "support" @@ -508382,7 +515875,7 @@ "reftest" ], "css/css-masking-1/clip-path-svg-content/clip-path-precision-001.svg": [ - "503f6c38f4cd7ff99bea66749465005698c1e036", + "3da4a56cf2510a1e128bfc5de32b8a88412d1ee2", "reftest" ], "css/css-masking-1/clip-path-svg-content/clip-path-recursion-001.svg": [ @@ -508966,7 +516459,7 @@ "reftest" ], "css/css-multicol-1/OWNERS": [ - "b57cbdb893bb5494e68700974ff711b6078f962e", + "721c176d7b1e3d610405ea043c93288f7c09ebd0", "support" ], "css/css-multicol-1/multicol-basic-001.html": [ @@ -509001,20 +516494,20 @@ "848a55c4030658976dbd2d974e6f84af5b04c983", "reftest" ], - "css/css-multicol-1/multicol-block-clip-001-ref.xht": [ - "52df45645962d7755cc5b3bc8b6a23390aa5e9a2", + "css/css-multicol-1/multicol-block-no-clip-001-ref.xht": [ + "6afb96f8754a72747da16aacdab0570da8767884", "support" ], - "css/css-multicol-1/multicol-block-clip-001.xht": [ - "0bfb98cd583828b29fc633a5a81414b4487e9498", + "css/css-multicol-1/multicol-block-no-clip-001.xht": [ + "68de9967f55c35fec8dc5320faa7eba3bb1ad98a", "reftest" ], - "css/css-multicol-1/multicol-block-clip-002-ref.xht": [ - "62c7651a40669c2dab4e65287c40b283c6fb85a4", + "css/css-multicol-1/multicol-block-no-clip-002-ref.xht": [ + "7adc06282f790b8f92222983b9deb83e12f9a7f8", "support" ], - "css/css-multicol-1/multicol-block-clip-002.xht": [ - "8d79a3ed0586ff53c953b815ab8bc2fa744d8be6", + "css/css-multicol-1/multicol-block-no-clip-002.xht": [ + "40425dbeaafff125094148caf361809b63b558c5", "reftest" ], "css/css-multicol-1/multicol-br-inside-avoidcolumn-001.xht": [ @@ -509046,7 +516539,7 @@ "support" ], "css/css-multicol-1/multicol-clip-001.xht": [ - "eada3dec72ce77b3f574682a9f10001f5cd177b4", + "c73c8d4449e585178c120285c894f705fe59860d", "reftest" ], "css/css-multicol-1/multicol-clip-002-ref.xht": [ @@ -509150,11 +516643,11 @@ "reftest" ], "css/css-multicol-1/multicol-count-computed-003-ref.xht": [ - "6609329dd3993b57f79b9fe037f9f6c9346e3db7", + "80e54fbeedd11f39d9041d45d266cf87a69d28b1", "support" ], "css/css-multicol-1/multicol-count-computed-003.xht": [ - "6e7d8e1fa3bf54c055158fb48ad43c9269b8d010", + "ce7639f1d4f7f992f529aa7016e6a7f0ab256464", "reftest" ], "css/css-multicol-1/multicol-count-computed-004-ref.xht": [ @@ -509166,7 +516659,7 @@ "reftest" ], "css/css-multicol-1/multicol-count-computed-005.xht": [ - "f3395d21c0fcab726231a414bbb4114457d271b1", + "fdc0811616680d44203af48c16fcbd91f5e2d9ea", "reftest" ], "css/css-multicol-1/multicol-count-computed-2-ref.xht": [ @@ -509298,7 +516791,7 @@ "reftest" ], "css/css-multicol-1/multicol-gap-001-ref.xht": [ - "192998427ff195c1e221aed17bc0a63b2dca0d90", + "86e3bafd6e6c873a8c7e540f44570f14b31df812", "support" ], "css/css-multicol-1/multicol-gap-001.xht": [ @@ -509330,7 +516823,7 @@ "support" ], "css/css-multicol-1/multicol-gap-large-001.xht": [ - "10fbfdc7a7e6a111e16af1361d81f73a9d69e76b", + "289b2d6a252b42203190818bf2998c869cba8f79", "reftest" ], "css/css-multicol-1/multicol-gap-large-002-ref.xht": [ @@ -509681,9 +517174,13 @@ "ad09fbd31d5f85a113cfdc6eec0e02a49e71f7d5", "reftest" ], + "css/css-multicol-1/multicol-rule-shorthand-2-ref.xht": [ + "fed844463e2290e7ea69956b2a45df5544c5cd59", + "support" + ], "css/css-multicol-1/multicol-rule-shorthand-2.xht": [ - "300f2f7cb52e28064185a030efa181bbac4e5562", - "reftest_node" + "6294072e93f905621fcf6abb0011ebbc30fdd1dd", + "reftest" ], "css/css-multicol-1/multicol-rule-solid-000-ref.xht": [ "ef30aa2924aad1617ae6a489d1c49370ba09ab99", @@ -509938,7 +517435,7 @@ "support" ], "css/css-multicol-1/multicol-width-small-001.xht": [ - "e9d93c9734aae96cfd5676c4ac52c2f2e0a6e63b", + "0962e4c7c6f3698ccbf6c82fa0664b9817ffe208", "reftest" ], "css/css-multicol-1/multicol-zero-height-001-ref.xht": [ @@ -510310,7 +517807,7 @@ "manual" ], "css/css-page-3/page-size-001.xht": [ - "16c36f942f6adef1c8c8dcd8d5152acc04934741", + "42004561a954366869fb4ec5f71fb279c423e65f", "manual" ], "css/css-page-3/page-size-002.xht": [ @@ -510501,8 +517998,44 @@ "2a908e60a635dbf765987c0f93d0f33c8ea85de6", "reftest" ], + "css/css-position-3/position-sticky-flexbox-ref.html": [ + "f8dedb4a637ea3f4bf79eb621f52a8c4622f8c75", + "support" + ], + "css/css-position-3/position-sticky-flexbox.html": [ + "efb055a7efb5ee3aabd28e369d0bdc9ae98bd33d", + "reftest" + ], "css/css-position-3/position-sticky-get-bounding-client-rect.html": [ - "77da4ac9e0eea6433c4fa890cd4a2151f46c35a3", + "5b9a1a29084f46228749c1b2b1a664be3ce02c43", + "testharness" + ], + "css/css-position-3/position-sticky-grid-ref.html": [ + "9748c25d3db9b5ec2753ff53ceb0b82db9453cdc", + "support" + ], + "css/css-position-3/position-sticky-grid.html": [ + "a06a40f39b4a748c111dc01281261c5451204f95", + "reftest" + ], + "css/css-position-3/position-sticky-inflow-position-ref.html": [ + "bcce2ded8073a7b5b3477bcf90157cb0e77c2b40", + "support" + ], + "css/css-position-3/position-sticky-inflow-position.html": [ + "c8e2bcdddf9e8ee93f9306d88b96c3bf1f1bfaf6", + "reftest" + ], + "css/css-position-3/position-sticky-inline-ref.html": [ + "9458cab53d2065e4893d127ee0097bbd53c6b898", + "support" + ], + "css/css-position-3/position-sticky-inline.html": [ + "9fe0b3407310fbe1ee8b1614db0801bdf93b38be", + "reftest" + ], + "css/css-position-3/position-sticky-input-box-gets-focused-after-scroll.html": [ + "6580451dddfd6f8865925326c170f630f343fbcd", "testharness" ], "css/css-position-3/position-sticky-left-ref.html": [ @@ -510513,6 +518046,74 @@ "5151bca08dff652ea728cb8bccbb6b7c6d364dd8", "reftest" ], + "css/css-position-3/position-sticky-margins-ref.html": [ + "0cdb788c913f47a121114ac5b8e6a140bb08c1ff", + "support" + ], + "css/css-position-3/position-sticky-margins.html": [ + "72fb6ae7d97bf2448ebd68ccf110edd6bae2c92f", + "reftest" + ], + "css/css-position-3/position-sticky-nested-bottom-ref.html": [ + "59a8e46358a8a5bf8638a2d1982c63becef5bc77", + "support" + ], + "css/css-position-3/position-sticky-nested-bottom.html": [ + "3604a921be04927dd19b805b7c9abaed6d0e7c72", + "reftest" + ], + "css/css-position-3/position-sticky-nested-inline-ref.html": [ + "8fb9378e91a20b71ef886b9aac0147b25d00a9a3", + "support" + ], + "css/css-position-3/position-sticky-nested-inline.html": [ + "50be9f2fb6ab9295081f6f13705be4853e48fdde", + "reftest" + ], + "css/css-position-3/position-sticky-nested-left-ref.html": [ + "52804c5589c3035818cd653c1801a70645a9fe99", + "support" + ], + "css/css-position-3/position-sticky-nested-left.html": [ + "c32881097147e285b6ee66e6239af4808d780c83", + "reftest" + ], + "css/css-position-3/position-sticky-nested-right-ref.html": [ + "5703ad6457deca332232e510dc479c39b7020d24", + "support" + ], + "css/css-position-3/position-sticky-nested-right.html": [ + "39683624316599779b0efcb347010b92694e02a6", + "reftest" + ], + "css/css-position-3/position-sticky-nested-table-ref.html": [ + "7b8956bc720e2e25e7ff0bc5889812c26837ab58", + "support" + ], + "css/css-position-3/position-sticky-nested-table.html": [ + "87a80629bcfcace28d4f13bce99325d55d317574", + "reftest" + ], + "css/css-position-3/position-sticky-nested-top-ref.html": [ + "66ea8b8c72023089d52e6ebdf5bfff5d56259bfc", + "support" + ], + "css/css-position-3/position-sticky-nested-top.html": [ + "88e35164b6ede3adf9727989cf59ff9956bdbae7", + "reftest" + ], + "css/css-position-3/position-sticky-offset-top-left.html": [ + "a25b64d016644c272ea92b6129a59eefb21d2fa0", + "testharness" + ], + "css/css-position-3/position-sticky-overflow-padding-ref.html": [ + "b3d81934cc90e70dff6bc5cd7789594a8fcd7ecf", + "support" + ], + "css/css-position-3/position-sticky-overflow-padding.html": [ + "588502dc7eb4a7f88f78dd1b2cdc857861c89f77", + "reftest" + ], "css/css-position-3/position-sticky-parsing.html": [ "224bc984bc6eb4a55931461cf7e51f7b04d219f4", "testharness" @@ -510525,6 +518126,22 @@ "f79c0e3e99085e483652950b141fe15c3c4d01d8", "reftest" ], + "css/css-position-3/position-sticky-root-scroller-ref.html": [ + "b66947a9f1b39c6c489267477d0122eeaeac7341", + "support" + ], + "css/css-position-3/position-sticky-root-scroller.html": [ + "8f77892b5a205a392942649476be7d5d54a91788", + "reftest" + ], + "css/css-position-3/position-sticky-stacking-context-ref.html": [ + "dd6e5d4734c924c1ad08d14db986fb89d7cb03f6", + "support" + ], + "css/css-position-3/position-sticky-stacking-context.html": [ + "ac1e643ac9f03d0fe415c3f52a4db7c407dd3537", + "reftest" + ], "css/css-position-3/position-sticky-table-tfoot-bottom-ref.html": [ "b902bec7e12fd6d9cad02c61f332a44f5818f8ee", "support" @@ -510597,6 +518214,30 @@ "30c0c00c6313a747b51c8b6d4f1301056af56560", "reftest" ], + "css/css-position-3/position-sticky-transforms-ref.html": [ + "b01ae263ac6b712912ba2af06edbaeaf75ba0215", + "support" + ], + "css/css-position-3/position-sticky-transforms-translate-ref.html": [ + "49d0db4c6b27c9f66bd58f5a075d024cbeaeb076", + "support" + ], + "css/css-position-3/position-sticky-transforms-translate.html": [ + "71bdb184c1ad2d1405f683e05a5b4117c8c7362a", + "reftest" + ], + "css/css-position-3/position-sticky-transforms.html": [ + "c3d2c2b167bcf6b8e7c45b90d9a797a216c27632", + "reftest" + ], + "css/css-position-3/position-sticky-writing-modes-ref.html": [ + "407a1831479ccca61f6f7b268abcbf97f667f0bf", + "support" + ], + "css/css-position-3/position-sticky-writing-modes.html": [ + "b6d16a38b73d4c107e587194818a542fee9d0716", + "reftest" + ], "css/css-pseudo-4/OWNERS": [ "e196548942a4d77448f734235b3456e2a830a5a7", "support" @@ -510617,6 +518258,38 @@ "5eacc4126a2781412995e4edbcd2999b0e892d92", "reftest" ], + "css/css-pseudo-4/marker-and-other-pseudo-elements-ref.html": [ + "73ab862dcf3131ae7d7166ef06e52db0cd0eb7c7", + "support" + ], + "css/css-pseudo-4/marker-and-other-pseudo-elements.html": [ + "ce59ad1afe6f3182565076bb951149bc1e5526f0", + "reftest" + ], + "css/css-pseudo-4/marker-color-ref.html": [ + "0fdf62848013d34255a05820901d7e4f8acbb63b", + "support" + ], + "css/css-pseudo-4/marker-color.html": [ + "a06cc25cbfd06ef1d4c0f4e4cdc658812e963181", + "reftest" + ], + "css/css-pseudo-4/marker-font-properties-ref.html": [ + "d83c1ae2c21ad4c20961725589481f046e108a99", + "support" + ], + "css/css-pseudo-4/marker-font-properties.html": [ + "ac3d673508fb9578d0a1d363b82021df8a1b9fbd", + "reftest" + ], + "css/css-pseudo-4/marker-inherit-values-ref.html": [ + "92bdc9d8f482c34ad389f27c957d4024a7e05b43", + "support" + ], + "css/css-pseudo-4/marker-inherit-values.html": [ + "f11765ff416808470d52dde2500106c294243469", + "reftest" + ], "css/css-regions-1/OWNERS": [ "a10a15c87ddef84355e4bbc8b8966cf0738e9d69", "support" @@ -512782,7 +520455,7 @@ "support" ], "css/css-ruby-1/line-break-around-ruby-001.html": [ - "1cffa24ce265830eedc422bc10e7b1a364ede21e", + "ebdb7fd720f0dc22143c7547312bd795c163f9d0", "testharness" ], "css/css-ruby-1/ruby-001.xht": [ @@ -512873,6 +520546,10 @@ "d26aa70436055346420fd8bae6fd174daf090124", "support" ], + "css/css-shapes-1/basic-shape-circle-ellipse-serialization.html": [ + "b0841c5c1e328846aaa95376ae62178173cdf5a5", + "testharness" + ], "css/css-shapes-1/shape-outside-invalid-001.html": [ "550e970032ac78ada40b7b8b3e7159c4160d60da", "testharness" @@ -513502,251 +521179,251 @@ "support" ], "css/css-shapes-1/shape-outside/values/shape-image-threshold-000.html": [ - "69651ee9840472c11d94edbd0ccfdebf38584649", + "65d3c04c3ebf6358f69cec7cc3afcbdfc1eb59d1", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-image-threshold-001.html": [ - "1c6f776c7996971cb7bea24326d081864495c991", + "0b633a9ede51f0c9cb8be2542191f60ba0dc178d", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-image-threshold-002.html": [ - "1e465667899c3bd0bb145253229acf15302be3c4", + "f1f8c94820a106101b45e6ec6caae31ceb5dd795", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-image-threshold-003.html": [ - "66e26fd5d65d03403e2018109791a32aa67a32dc", + "2e81c6f4c0a29148086e50052edd03566fe231b4", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-000.html": [ - "6ed34d4ccf950ca194f00ccf33d7d5a305244932", + "387be9c19cd9f18686842752a98147a367a6c45a", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-001.html": [ - "a5f2206d6212c6b772042f681c3030657db99681", + "46510fdc745cae19ddfc57a00e5f782a5e24486e", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-002.html": [ - "e5567dfe061edf9f9e311cfa9ceb065fd04769b0", + "721414aa99066881fe918a9e4342445601f1fca8", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-003.html": [ - "f58946ddb311fd9f881148c4d0bffd34fce68faa", + "8bbb861c94c48f1f457f3a3d8f0e146e0e7a4bae", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-004.html": [ - "f300faefe734ec9660ec1b37bbaeb434f662bd1c", + "dd3377d6eff2c587df37a0498ca072f919e712d0", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-margin-005.html": [ - "9067abf60eae5fb9472b223b5df1287ebdd209a8", + "df92f71df9c54bce34782276cf85ffd778664f78", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-box-000.html": [ - "437825ff3ba08ec656c46fdd7ad24c485d7624ac", + "f23db096457420df917685342bd07e7bb2686e49", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-000.html": [ - "f63ef7f71bf6905dd8d073d0d16b8a1fe658aa4b", + "12ff3257751f1df762cde2d000464e3d4fd3d9c5", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-001.html": [ - "99e68601263837ab6b25866c879e77b9db7f22e8", + "a15faaedd31885d4892d0e03e2eb8eb0d4bb074d", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-002.html": [ - "a50d742cbea9b829c0988044926acf33cbbd09ed", + "5ee88098535926f552e268cfc93dc36c9447b886", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-003.html": [ - "c18de4227def55d9a7f0ba468908ae68c4abc35f", + "898a5c390663f88358fcb5d95e425dc9e60ad130", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-004.html": [ - "c3844b7a357690ddcc00a1d3ce1c46d280ec146a", + "e389160f506190fdc124a59e8ed8527397395a9c", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-005.html": [ - "e82a130aafe0055b084532979d94da7f40803a75", + "68f761b81fe2dcaff77a965d94c0eb6ea52e1c8c", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-006.html": [ - "b303b8bb60b3649288db347f3852ad6a59244d8c", + "8d20724aa519d89a0e0e945ed5040fc69e426262", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-007.html": [ - "cc18e14cbb6acde21aa45aaeb114920790137291", + "b046b1b212f9f4dc756e316f4851102f9938d111", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-008.html": [ - "7d19c8fde5427098f7947450f7ff6e9ea7091df2", + "ee51ba2b34b93c9799b3fd8a4dc4277d260d5968", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-009.html": [ - "ad426e85a3d348fc0929a9eb12b3106c0fda9e88", + "427efa1d5610cd8b8bd9d1033702b7dc29859b0e", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-010.html": [ - "689551cbecd5285fa2262344b28a42e6b7ad29ba", + "0eeb3f383de0c97a276e78225fd081b651c6ab65", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-circle-011.html": [ - "37e47cae4323fb3093830e0b5eaee7d9583e915a", + "3c1d9ac789d9c4ced69e407580c2acf8d16622ea", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-computed-shape-000.html": [ - "fb7081494fc3ff9b2812bb61db73d6bfb00af170", + "e2e1d27cd03fc2845ba75ebd589e76a6ba3712f9", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-computed-shape-001.html": [ - "b41242b62d6ccee3e98a66b3e6f0efbbefc25b75", + "34c1def23ce44a7a65d70cca2f417f0f877fa9f2", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-000.html": [ - "9e889fa97cc321a735a1e0e25e1b213169a19163", + "f6740e5867f0dc389ccc923a7f23eb4f964abb87", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-001.html": [ - "a740c289a390a131884c07e0d2767d8b1a864066", + "910bb80b104c5e8b8c30ab31f8c5d5c4e31c59e8", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-002.html": [ - "3d9b5b82987aede6f119378a1da203b1e8cccd6d", + "2f648d82bd2abb4d45df10cf96f9f00a73cd51d9", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-003.html": [ - "76e17d66e49d2a74395b4faca41696fb675b822d", + "858a4c88d3cb90d5d9c1e2614e703787c277377a", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-004.html": [ - "11483d118c27bd0fc79afaebc449f8d73a7eedbb", + "2f335df44bbafdfc2c0268dd329e10f229524f68", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-005.html": [ - "58523da093d2a0cb87a3fa9e9e9f9697d15402ad", + "f604cead962e240d66402a9b82da1edf2a132f1a", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-006.html": [ - "5e373dbbbb930d563b2ad1fd4f87fb5f06f3c878", + "6ef24ef982f535907460aa3efa85949756d010c0", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-007.html": [ - "2badb14d4668b0634bb1341d7a26f352340082d3", + "b00a4b32a6110bba67e8ad4089823e861f39d861", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-008.html": [ - "16188a3155de5f4f74d8bb66677eff1f58b35564", + "13aede9b53907cc660243fed19a1b04d2ff7cfd9", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-009.html": [ - "bf416949dafc1335ba72f10a6d54781dec8d8ac9", + "57c770abcb64c9ba3c9f29b6011b21a3380ff68e", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-010.html": [ - "d6ceda083d30640c08bac7abe583d3af0f323476", + "4b74b1deafba4f84ff9bcc33872c51d95aa52390", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-ellipse-011.html": [ - "c7dbcf41b14171ec9a5ef2d7a55070d88bad981c", + "cb3c8c4718513f528a83987dc732c7b0bad6f192", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-000.html": [ - "d5c019a5431466bec0a6c8d222c92f20428a3844", + "4bcfaf4bdd99a0ecadf59ffa9a88d0f54bee2577", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-001.html": [ - "726e07120f44db27df71294a6d736c06f3720e51", + "fe1e87c9203832d0f93a3376b101114677b7cf24", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-002.html": [ - "a33dfbd7c602b8877f7a690785606b32bf92d7a2", + "6af9b30dbdea04ab2aa68a2fe3a272e5cdd313d6", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-003.html": [ - "ac2cc7b536c2878cd975a0997cde1cf9503de669", + "a67b7fc6dbd040184b7701dfe1d489de439d8833", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-004.html": [ - "15fe37bf6bd283b152f08c1c67fd75f79e5a02ff", + "47a141219718f670ae3a63ad8bc99bc97246cf9b", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-005.html": [ - "afab2382f71df2d825035813c9223e25292b5735", + "7b553c79eb75e4032df53ef213a543e7e8b1d143", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-006.html": [ - "474b0798648bbd57fd0e68ad03b1ba4fa2e332b4", + "4f69b32917489d25a2574c2ded2639249f457405", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-007.html": [ - "01972b10e62a8e27feaff3a08b6441137e644312", + "47629a05e5edd29437c762c6747857876dc3edb4", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-008.html": [ - "b784a6955144bff1732dfa98656f9eba5293f5ac", + "02694df63510bda3b0e11f6f1c7a2f5755fdd3ae", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-inset-009.html": [ - "b3d23ed4770451d35e09a8c88d5e3e95a7da78ca", + "c97b3bc406352dcee6b4d0d388ce72cb438be125", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-000.html": [ - "e2084c924a10279213e9773ca6085d2a31dc298f", + "fe91ef7e18f7ba383b5c692a240e15895b6e04c6", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-001.html": [ - "54af3951f26f4f865c6f0ecaaca8844a828ef41a", + "3cc946ec70615c880eb3b095639e57949badf0ba", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-002.html": [ - "4869e5b6d1403862ec72f983eb7e229b736cf463", + "ff1ff0dc480422fd81f3d98540c96b7bc41dfb88", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-003.html": [ - "b977821fc6b7ab76ad101f3914dc4efc7f24682d", + "0c15ad6f5bd02c2a538be196b85cf6f8415598f4", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-004.html": [ - "0e1e4a31c25d926e00f7f3266a0bc3b949cf6cbe", + "9d9d7fb50b74989595e3ce56bb163329c4878e7c", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-005.html": [ - "9896b1d45a80bfcbc48abc4f44733b4beeeac0e0", + "3eed8b92275cd788beb557c6eab362d2775f3063", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-polygon-006.html": [ - "32d87af12a054e0936a46d55f1f908311d158c64", + "b74773d4db5f8e83f31d6a5b3f1c87531f31cfeb", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-arguments-000.html": [ - "98b321b2ed53ede0f3de28e8993b8c82a99184c4", + "e76b525d99d71102ddaec091981e27c1f7668fcd", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-arguments-001.html": [ - "4c7b2448a83fbdebae5eb9f1bf6844fab83f4fd7", + "2142e84e512cc7e106b4a280fef364e3d74976b3", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-box-pair-000.html": [ - "3e046938b7669581d47efb6e153b9fa51ab4f14d", + "25d495ec7cc29e6774d92c67717b55d31491677e", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-inherit-000.html": [ - "cf58e0f4d76459a3a296f3f7e5b58bc2edcb9ca4", + "546033bbd4c43c4427695ddab05591e078c5d592", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-initial-000.html": [ - "a08052f68341d5b555bbb0a16772e452923283cb", + "e7815df3b546efc985dfb000349043c4de8501fe", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-none-000.html": [ - "82b5914ba70bdeba3b7f2833b6f1052c8a5982c1", + "8dd611c1f104f69807f631849d38da168874a9a2", "testharness" ], "css/css-shapes-1/shape-outside/values/shape-outside-shape-notation-000.html": [ - "0c9321d3f9651625d8b3d0f85cfb5873e9ac2a11", + "edf23e6fdcd2d7699ce484089664da5d03e3a1e2", "testharness" ], "css/css-shapes-1/shape-outside/values/support/parsing-utils.js": [ - "52b60f43828972af1ad3f3f0cb131881f5ef65d7", + "9ef646aa7352e94c2b2e43b0031d3fb654ac2985", "support" ], "css/css-shapes-1/spec-examples/reference/shape-outside-001-ref.html": [ @@ -513810,7 +521487,7 @@ "testharness" ], "css/css-shapes-1/spec-examples/shape-outside-012.html": [ - "4e2b6cfb70f0362e59508b9d3bcd142393623988", + "1db1130bb5f2f5a8a12bab7ec5a9fa0c40165be4", "testharness" ], "css/css-shapes-1/spec-examples/shape-outside-013.html": [ @@ -514445,6 +522122,38 @@ "eccf10a7909e2358ac6425140e87c323ed786296", "support" ], + "css/css-tables-3/bounding-box-computation-1.html": [ + "9402c84e354540f5b4e6dfb764cd199c55b30475", + "testharness" + ], + "css/css-tables-3/bounding-box-computation-2.html": [ + "303da96792f188f997d71dcb07d5881b7a797581", + "testharness" + ], + "css/css-tables-3/bounding-box-computation-3.html": [ + "34c4af4939b4757db8c73ba84b0fc281f35261a0", + "testharness" + ], + "css/css-tables-3/caption-side-1.html": [ + "291362e69ca403e9ebdc00968920ff60303a4b77", + "testharness" + ], + "css/css-tables-3/fixed-layout-1.html": [ + "ed5606608c07f8cd0d439f6b1193b2e9688ba964", + "testharness" + ], + "css/css-tables-3/fixed-layout-2.html": [ + "f2ee35f8eac9da526350d4ac6daba16e733e0c9f", + "testharness" + ], + "css/css-tables-3/fixed-layout-calc-width-001.html": [ + "0b8262ca3abd6104e86c305d738a2c70f6cb1f87", + "testharness" + ], + "css/css-tables-3/fixed-layout-excess-width-distribution-001.html": [ + "36b7b7893dba1f3ddc2edf46fee323d75e5af49d", + "testharness" + ], "css/css-tables-3/floats/floats-wrap-bfc-006b-ref.xht": [ "22f5ec058d34dc57c010bca8a301eaa8f7901880", "support" @@ -514461,6 +522170,230 @@ "2e974c516d48ec57de1d7ccce28d9cced148cadd", "reftest" ], + "css/css-tables-3/height-distribution/computing-row-measure-0.html": [ + "ca51cd8391c4f310f627276eff409dca8c59b7e0", + "testharness" + ], + "css/css-tables-3/height-distribution/computing-row-measure-1.html": [ + "6b5dfdf5cddd682c347f7c8670459e3ad4e19ffe", + "testharness" + ], + "css/css-tables-3/height-distribution/percentage-sizing-of-table-cell-children.html": [ + "55a759d84f38e6adf0f091c9c0ecaa69060cb51a", + "testharness" + ], + "css/css-tables-3/html-to-css-mapping-1.html": [ + "55cf746ad6557259534e38a4879d7b6f5a994d6c", + "testharness" + ], + "css/css-tables-3/html-to-css-mapping-2.html": [ + "924ce8021be616cce02e6e045494e0b2bb323061", + "testharness" + ], + "css/css-tables-3/html5-table-formatting-1.html": [ + "9b6c1038d52dea9fa58e195bd2050fbaaa4f470f", + "testharness" + ], + "css/css-tables-3/html5-table-formatting-2.html": [ + "c6e77dec265beab9482b20aafd8f332dad53b5b5", + "testharness" + ], + "css/css-tables-3/html5-table-formatting-3.html": [ + "af258fb3b11380c9e776b1b74f3ef1c303e5a039", + "testharness" + ], + "css/css-tables-3/html5-table-formatting-fixed-layout-1.html": [ + "28849b8293b2f4e1e660662f77e025b51a32332e", + "testharness" + ], + "css/css-tables-3/support/base.css": [ + "abe7468e88cad3aef32c7e59fa4a33a7930ef53b", + "support" + ], + "css/css-tables-3/support/check-layout-th.js": [ + "a9d8444db24ab38518f07a965a8a537cc6add437", + "support" + ], + "css/css-tables-3/table-model-fixup-2.html": [ + "19e3577e862601a0cf00dd4644017218c363f0db", + "testharness" + ], + "css/css-tables-3/table-model-fixup.html": [ + "bf4a9b28167ad2488496b4d4e89ca6d4a8a001ed", + "testharness" + ], + "css/css-tables-3/tools/markup-generator.html": [ + "51db0929423a4932e4b783dba135adc100da34d9", + "support" + ], + "css/css-tables-3/visibility-collapse-col-001.html": [ + "37a2cc2810033c7ae7f77e6a590a0c7676989abb", + "testharness" + ], + "css/css-tables-3/visibility-collapse-col-002.html": [ + "afe49801b688476f8a9e25f6bf72d65b66c0d35e", + "testharness" + ], + "css/css-tables-3/visibility-collapse-col-003.html": [ + "fd305ad0e69fe3dbdd360268ccf03faa0a540a2a", + "testharness" + ], + "css/css-tables-3/visibility-collapse-col-004-dynamic.html": [ + "d485121ac249288ea6e548f73907e3402c8c6447", + "testharness" + ], + "css/css-tables-3/visibility-collapse-col-005.html": [ + "ecade1aa3fdf57bf909d2db3cf6cec01c6980004", + "testharness" + ], + "css/css-tables-3/visibility-collapse-colspan-001.html": [ + "738c2ceb03c12a552747dee5f8054d2f08c8ad13", + "testharness" + ], + "css/css-tables-3/visibility-collapse-colspan-002.html": [ + "84068350c0f3dd2c6dd6bd26747f3d7a562bb62f", + "testharness" + ], + "css/css-tables-3/visibility-collapse-colspan-003-ref.html": [ + "0994829d87e2c735c941507e9d2535cc34c70472", + "support" + ], + "css/css-tables-3/visibility-collapse-colspan-003.html": [ + "f87bdbbca78a52f5ed7d374ed73c5f68bdeac98c", + "reftest" + ], + "css/css-tables-3/visibility-collapse-colspan-crash.html": [ + "5b36da38e9a20e5ffac58aead916573d861d8778", + "testharness" + ], + "css/css-tables-3/visibility-collapse-non-rowcol-001.html": [ + "01bfc00297b86ab1657fbe6ccfc4305918e007d0", + "testharness" + ], + "css/css-tables-3/visibility-collapse-row-001.html": [ + "561091d13f3a50eff5c4be15208f02ff870e3108", + "testharness" + ], + "css/css-tables-3/visibility-collapse-row-002-dynamic.html": [ + "eda3a60911cf11c6293a84c2dfd1535e8c9a100f", + "testharness" + ], + "css/css-tables-3/visibility-collapse-row-003-dynamic.html": [ + "9847d3956b673a8dddb23381022a6a79b75c9f7a", + "testharness" + ], + "css/css-tables-3/visibility-collapse-row-group-001.html": [ + "9101f01e3211f9c1e68bc3e0b202ba82cbf25e11", + "testharness" + ], + "css/css-tables-3/visibility-collapse-row-group-002.html": [ + "bf2b6402f5012838d5a810f630b933f07fdc88aa", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowcol-001.html": [ + "c448e0f49b516d3021f014ba5a39e30fb3ced33c", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowcol-002.html": [ + "643b3d0dea23964e964d117600738bf9493591cf", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-001.html": [ + "d20c4abcd7989df116ea693d79d3187dadbc701b", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-002-border-separate.html": [ + "cf6ffb31a7f9403209ad5936ed11471f79279150", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-002.html": [ + "639b5724c319adf1f5d7ea742a41e503ac87cb15", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-003-border-separate.html": [ + "20617265e1daa314d5eed0527632c5e464852f2d", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-003.html": [ + "f12cae04668c2cdb0f4e474a884cbd3093b06ed9", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-004-dynamic.html": [ + "4151f0e7d8b634f8d5c85982ad4059fbaa90d9fc", + "testharness" + ], + "css/css-tables-3/visibility-collapse-rowspan-005-ref.html": [ + "842e9d58ac110f3a6f1f9a48f14b4d6e11e2e198", + "support" + ], + "css/css-tables-3/visibility-collapse-rowspan-005.html": [ + "853233a8744c6387efbf31673986c7af798c5684", + "reftest" + ], + "css/css-tables-3/visibility-collapse-rowspan-crash.html": [ + "0445b87883f6a0a8c361dce7fe6d7c70b2fa62e9", + "testharness" + ], + "css/css-tables-3/visibility-hidden-col-001.html": [ + "8d76f7ce025eabcd0bff6f84aade9bf9be91171a", + "testharness" + ], + "css/css-tables-3/visibility-hidden-nested-001.html": [ + "1f2eab48163bd064eddfa0c711f6fdf4d7773830", + "testharness" + ], + "css/css-tables-3/visibility-hidden-nested-002.html": [ + "d279020ff40c4d2dfa9c771f3adb88e6ac7077c0", + "testharness" + ], + "css/css-tables-3/visibility-hidden-row-001.html": [ + "68c6a1309b71dc39de84ef43a95cecae1a5aaafa", + "testharness" + ], + "css/css-tables-3/visibility-hidden-row-002.html": [ + "ac9f17dc7b4755d419318a62600fdc2df60b0e88", + "testharness" + ], + "css/css-tables-3/width-distribution/computing-column-measure-0.html": [ + "d52466ec6ce668ea9bab02195e6d2f322c11d9f8", + "testharness" + ], + "css/css-tables-3/width-distribution/computing-column-measure-1.html": [ + "29bd50eaa57f885723025339ace2126e149bd0db", + "testharness" + ], + "css/css-tables-3/width-distribution/computing-table-width-0.html": [ + "ab750620df9b6b6553fb1340d5f317fa5188afff", + "testharness" + ], + "css/css-tables-3/width-distribution/computing-table-width-1.html": [ + "e80d7f892aa975892aa58eb6635c610b0d99341e", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-1.html": [ + "7eaadd0fab17f54010abcfbf1e185ad721ff1bad", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-2.html": [ + "7eaadd0fab17f54010abcfbf1e185ad721ff1bad", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-guess.html": [ + "1c161c6acf98576feacb27fd842a5e605a373235", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-percent-guess.html": [ + "56c2c9386bc9de95419d79818fec4dd2bbdbe74a", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.1.html": [ + "99fabe0b4aaf1c36b533cb8369cfb47f0db07c46", + "testharness" + ], + "css/css-tables-3/width-distribution/distribution-algo-min-content-specified-guess.html": [ + "9eeb49d2d78c3f81825de0d9e24de2a097275175", + "testharness" + ], "css/css-text-3/OWNERS": [ "a9db9c3323d29904f9e631e48ddcd6c722e097a3", "support" @@ -514497,6 +522430,10 @@ "8af41ae6dd675774349e365cff8e0ee6b50bf7bf", "support" ], + "css/css-text-3/i18n/OWNERS": [ + "529a7d4e2cfca44f7804f88e375b383e2388c23d", + "support" + ], "css/css-text-3/i18n/css3-text-line-break-baspglwj-001.html": [ "b08dfce276ccafb057c793d69c25cf0caff332cc", "testharness" @@ -518505,6 +526442,14 @@ "708040c72a525e3ca122156c0212ca7ec14852bd", "support" ], + "css/css-text-3/line-break/line-break-anywhere-001.html": [ + "1df8077c37fe3330623ee3ea12eb0efb6ef5f733", + "reftest" + ], + "css/css-text-3/line-break/line-break-anywhere-002.html": [ + "639f9030e99b2cd0d6b42acc7a3c0da54b3fb420", + "reftest" + ], "css/css-text-3/line-break/line-break-normal-021.xht": [ "6490bab71e762e042c5d37e7ad2b9852a53e50e6", "reftest" @@ -518557,6 +526502,10 @@ "8f124452720b5b1be387b72f721aff36111c01d6", "reftest" ], + "css/css-text-3/line-break/reference/line-break-anywhere-001-ref.html": [ + "6224337b8fabfa02acd3e742a65d2c7905043648", + "support" + ], "css/css-text-3/line-break/reference/line-break-normal-021-ref.xht": [ "cc36420439dfb604810d5238e587bdb8d4a58a0e", "support" @@ -518610,59 +526559,59 @@ "support" ], "css/css-text-3/line-breaking/line-breaking-001.html": [ - "3b3b07e7b0b38eceb406ece70a8276805256e93d", + "101c97ef00130bf5b904ee7fced14d128868b512", "reftest" ], "css/css-text-3/line-breaking/line-breaking-002.html": [ - "a2a8e0b1841aefedb0a313f02de3855f648effd4", + "66b9b3d14f1fe059d072d2faafd6847e115b7cea", "reftest" ], "css/css-text-3/line-breaking/line-breaking-003.html": [ - "27ce3e782d2f05ef9041b0886b636506022e7145", + "e53139f9f8175da5e3a7eb1ea82fc1f3c892e7f9", "reftest" ], "css/css-text-3/line-breaking/line-breaking-004.html": [ - "0ba49c1d8eec8df943a7c41e3ef502c477f2c0b7", + "e39c4b512cc325384726c5adffbbcccb14a446d8", "reftest" ], "css/css-text-3/line-breaking/line-breaking-005.html": [ - "02e63b116bf6d84a61fea082155c9a2f810ec234", + "0345094f500b23392cffdf48a6ca3cbf83be5b0c", "reftest" ], "css/css-text-3/line-breaking/line-breaking-006.html": [ - "b5921486b03a63b92e5b0f32286015fc10cd73ec", + "5b16e5bc5e484958517824ae6fce4462974b4c76", "reftest" ], "css/css-text-3/line-breaking/line-breaking-007.html": [ - "d52ba3d19fa9b47799798ee4fa48da63a527c477", + "43b4a7445b8d9ae5ecd753c7a9196bc3a0316aa2", "reftest" ], "css/css-text-3/line-breaking/line-breaking-008.html": [ - "f3596def9f2070e68689f1c907b37077f722c8f8", + "2bd35b7f6fb9fe3773e0104d11940d87b6011955", "reftest" ], "css/css-text-3/line-breaking/line-breaking-009.html": [ - "031e87586134b64c552e8fa2b35f866e4af04af3", + "c13b6cb3d448165c03530ad347575398d6d68451", "reftest" ], "css/css-text-3/line-breaking/line-breaking-010.html": [ - "e2de292594fc4d375939b8b8a834e6ef1edb71fb", + "7af4ec0774476064707a93ba1a8c2d041e5519ad", "reftest" ], "css/css-text-3/line-breaking/line-breaking-011.html": [ - "9dec2517875f9c2a83e251351b30895bba790b08", + "570233dc8a399e5f0cb47bc9302e306a083a184d", "reftest" ], "css/css-text-3/line-breaking/line-breaking-ic-001.html": [ - "ffe827dd366e5fc20c8c03f9560c80b6e7370095", + "1ae52aede1788270943bb03bb44d1c391a65a0b3", "reftest" ], "css/css-text-3/line-breaking/line-breaking-ic-002.html": [ - "a58bc14119a5d47df7a7c900a1e02be05bba0d38", + "595b8383b62a15bea1ab55f1c8d9376122cea9f9", "reftest" ], "css/css-text-3/line-breaking/line-breaking-ic-003.html": [ - "3ae6ef88fe7a3497692cae873a9d3dfb1937afbd", + "0fca11a308fafb818f4f1c22126dccc07f7b0094", "reftest" ], "css/css-text-3/line-breaking/reference/line-breaking-001-ref.html": [ @@ -520021,6 +527970,70 @@ "3a8b93dbbca1507311781081e33425e06a499a37", "reftest" ], + "css/css-text-3/white-space/pre-wrap-001.html": [ + "f93cc40a8d455d13fe110c3d7cc0284514d5ad8c", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-002.html": [ + "64d2ec262a5fd3e2442d91081b9982f6959a5dd1", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-003.html": [ + "3aea664385b6a065a30c1fc5e59ff799e67eba28", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-004.html": [ + "039737abdebd796d54ac18473e7fa0fdb2260a6b", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-005.html": [ + "52c66158b35fbc23e206ca058dd202315a56785d", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-006.html": [ + "026913263a924c13e5ae44e2b682520c58228d1b", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-007.html": [ + "9da32f0784c236fb42eb191196eeb879560cb9ba", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-008.html": [ + "a8899baab31c158f1c58f376a65aba6996c29efe", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-009.html": [ + "8ae0f2dc17e299fb5e9356c0b51f5ef203ace797", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-010.html": [ + "af0595c7e23d3c011f513fa3573db153e4a522f4", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-011.html": [ + "357ff8ef998ec147ea3ac7a5ecfd461391ba5f87", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-012.html": [ + "07466d5c4186519718c265cf95415c19a4177d44", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-013.html": [ + "a76f6a4042f4bd0579d495a5e94812303dab888e", + "reftest" + ], + "css/css-text-3/white-space/pre-wrap-014.html": [ + "aaa1e079c44e86250c6f12841d4c7635db74ad76", + "reftest" + ], + "css/css-text-3/white-space/reference/pre-wrap-001-ref.html": [ + "bba318097b9c85f6c15dc7f69bfcdc39514278e8", + "support" + ], + "css/css-text-3/white-space/reference/textarea-pre-wrap-001-ref.html": [ + "0d9b285072f9db8f337b743a8040e3d69bc97a2f", + "support" + ], "css/css-text-3/white-space/reference/white-space-collapsing-discard-001-ref.xht": [ "a67bc4fe47ec809cea74476ccab6b0cebc1fdfb3", "support" @@ -520101,6 +528114,62 @@ "94f7655139fc8059856e3b92129b09a4a62509ec", "testharness" ], + "css/css-text-3/white-space/textarea-pre-wrap-001.html": [ + "e5aa5ae1cccf994eb821039ff9726ab41591dae2", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-002.html": [ + "242cdc5e31096f99fe05f816898e69f29669dacf", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-003.html": [ + "52eb65dfa1f0a2e415e6770908101eb75cb543e3", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-004.html": [ + "d47ff3de33fb1c73eeb734d0d75dcd082e9ebec0", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-005.html": [ + "f0aa2fc03ab62dd6099571636d6e882decd45b64", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-006.html": [ + "a11429b9e29eb1fb6780ae4778da5990b154a634", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-007.html": [ + "22b1d2bba518e4bb08225dcf908f083291e9e843", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-008.html": [ + "b044f1f9774eb64ec3a47a5f145fb0540994ccee", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-009.html": [ + "ab5bf5af5a528b388ff6968c6cfced9b3c1d12c7", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-010.html": [ + "87f7f79bfb3cfa7493c5c805d3cd889835689799", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-011.html": [ + "700bd41635bd14683d5efeead256ab70e00f3619", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-012.html": [ + "ac711d5740bfd7244442f957bd5df6ed9f8d1633", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-013.html": [ + "46a942378c02a6b856a7f29038683f4ada91f2b2", + "reftest" + ], + "css/css-text-3/white-space/textarea-pre-wrap-014.html": [ + "8e8b3768bac0b8bb8a5a93f8d2afecf4fad1e819", + "reftest" + ], "css/css-text-3/white-space/white-space-collapse-000.html": [ "311f61dd93bf7b39b07f14aacad5d4bd77639cb2", "testharness" @@ -525273,6 +533342,22 @@ "7a9cc02dc9cddb5888ffe57ff57693689a510594", "reftest" ], + "css/css-transforms-2/animation/resources/interpolation-testcommon.js": [ + "e53ebd086f11169bf516f4d2e68449290943ba98", + "support" + ], + "css/css-transforms-2/animation/rotate-interpolation.html": [ + "f5b8b30c9bc0789d59b3451789c24009b93dd21f", + "testharness" + ], + "css/css-transforms-2/animation/scale-interpolation.html": [ + "51271e16c98a7a4e6405c28d149e77eb439e670c", + "testharness" + ], + "css/css-transforms-2/animation/translate-interpolation.html": [ + "9a28f675c790c3dec66f655418051a5a7ba52ec7", + "testharness" + ], "css/css-transforms-2/backface-visibility-hidden-001.html": [ "d12cfa3b31b7f98d0ff5693bfde49247d34cb156", "reftest" @@ -525861,6 +533946,10 @@ "cf9af05cb3d0f2a54fce7554f15cf0159c16a5a7", "reftest" ], + "css/css-transforms-2/transforms-support-calc.html": [ + "f179489200392d7af2e33a9ac2123c51b9aac21d", + "testharness" + ], "css/css-transforms-2/transofrmed-preserve-3d-1.html": [ "6b9049d0a41eaa593b0d7aa2eaceebe952850851", "reftest" @@ -525910,31 +533999,31 @@ "testharness" ], "css/css-transitions-1/events-001.html": [ - "abffac2d61bc91e8b3277b402f9b624bac35936b", + "30eb9732ba5c1d5325cb95a1d21e34f06251c613", "testharness" ], "css/css-transitions-1/events-002.html": [ - "52374e677c313f03551994597d8b83dc0f8f1490", + "5fb98d8366418a6d6c72e1885bf0ea0f428e42be", "testharness" ], "css/css-transitions-1/events-003.html": [ - "3e490116ffa0850bc849c2731dfa43c42ce78a17", + "cb4147b4b9e43b3ec6fc70c7887621790e00c0ea", "testharness" ], "css/css-transitions-1/events-004.html": [ - "26295080416d83dcb6ccdc6d3158d2e84b29e32b", + "ba0027ef26edfde941ab3c2f0072e10f0c6248a4", "testharness" ], "css/css-transitions-1/events-005.html": [ - "d5a001057e76b24a9614a1e6eb0c79e6ecb86186", + "fb8c4dd32adcb9b264f2990ab4e962986561f5ed", "testharness" ], "css/css-transitions-1/events-006.html": [ - "0e3dd5bdfd7f0d4cb3324bf8315f2a1748df04c2", + "2e957a34c69ca94037f4b8af9c3e87fc94a63a46", "testharness" ], "css/css-transitions-1/events-007.html": [ - "3848e7aa9b6023144fd2dd8bde568a664a564d02", + "f92ae90b2f7a88f32f141b3136ff833fb7ba6a2b", "testharness" ], "css/css-transitions-1/hidden-container-001.html": [ @@ -526042,7 +534131,7 @@ "support" ], "css/css-transitions-1/support/helper.js": [ - "b286f9cb99db632a2e95707119e7cb6e0a0f3aab", + "73bb1ba1862facb0d8a3e3dcd78611a79f458025", "support" ], "css/css-transitions-1/support/import-green.css": [ @@ -526562,7 +534651,7 @@ "reftest" ], "css/css-ui-3/box-sizing-026.html": [ - "6bb008f9fa588f7b70bcef848418f6859471bd68", + "6a26323ef89863c263b04b5818210dd2c5e56b01", "reftest" ], "css/css-ui-3/box-sizing-027.html": [ @@ -526654,7 +534743,7 @@ "testharness" ], "css/css-ui-3/caret-color-020.html": [ - "ccb5ab72ef95d82eba7504f26170a88a98178edd", + "46c6575138d57250aa385e2ee5fa4a8453da644e", "testharness" ], "css/css-ui-3/caret-color-021.html": [ @@ -526758,7 +534847,7 @@ "manual" ], "css/css-ui-3/cursor-auto-005.html": [ - "a43f04957e1fae08426b704fa20811f468fd2384", + "a68a5b0fb98e906f04187fcf074f71bdaf306641", "manual" ], "css/css-ui-3/cursor-border-area.html": [ @@ -526814,7 +534903,7 @@ "manual" ], "css/css-ui-3/cursor-image-005-nfs.html": [ - "93029cc439245985a3cf93d39898f051d8d7ef00", + "ca07822b75d3299c3530fa72d33feb6bdcf7fa36", "manual" ], "css/css-ui-3/cursor-image-005.html": [ @@ -527073,338 +535162,6 @@ "2e8ca204b57791ff0ba7c22c9190e7d8c75ff627", "manual" ], - "css/css-ui-3/nav-dir-001.html": [ - "772379f7700569ae3396718479f5729660ea64bc", - "manual" - ], - "css/css-ui-3/nav-dir-002.html": [ - "667c89bf03731e47f3e871d6f130667a60712376", - "manual" - ], - "css/css-ui-3/nav-dir-003.html": [ - "c2f3616ff3fe089b96e2b3bbf5f15886b799a6f3", - "manual" - ], - "css/css-ui-3/nav-dir-004.html": [ - "5ea15af69676bd15d0297c362976a5ef82c2c0dc", - "manual" - ], - "css/css-ui-3/nav-dir-005.html": [ - "13feee69db21b78cae93c6f7f315371735484bb6", - "manual" - ], - "css/css-ui-3/nav-dir-missing-1.html": [ - "5caf870ac600fe8b462468fe077a174186fbcdfe", - "manual" - ], - "css/css-ui-3/nav-dir-missing-2.html": [ - "75996535a3240a35dcf009e3f240c5a5258b438f", - "manual" - ], - "css/css-ui-3/nav-dir-missing-3.html": [ - "196a7aea5c99b4399046cf9083e68b7d1e9459f3", - "manual" - ], - "css/css-ui-3/nav-dir-missing-4.html": [ - "f0480a64f31e01f548dd5dabec74ab6afd27c1ff", - "manual" - ], - "css/css-ui-3/nav-dir-target-001.html": [ - "10ea2d0f38406e8bcfbb33062303c9af58413221", - "manual" - ], - "css/css-ui-3/nav-dir-target-002.html": [ - "2bbb676b6004d2458904a2163c9ef08795449f38", - "manual" - ], - "css/css-ui-3/nav-dir-target-003.html": [ - "cb840313416793c463b6c28257ae184a98145823", - "manual" - ], - "css/css-ui-3/nav-dir-target-004.html": [ - "5f625b2fdae6f6045a4701a922bb3744912c326f", - "manual" - ], - "css/css-ui-3/nav-dir-target-005.html": [ - "be67a70fb20d9727b4a2178ecb45c3496fb7783b", - "manual" - ], - "css/css-ui-3/nav-dir-target-006.html": [ - "39bdba09ae5e3a5c6506c291ec93b07615596740", - "manual" - ], - "css/css-ui-3/nav-down-000.html": [ - "87397f09746ae146acf076d0a9a92f4b09b7fbf4", - "manual" - ], - "css/css-ui-3/nav-down-001.html": [ - "ae56cf157703e85096efa3dd13ef227917f9d8e2", - "manual" - ], - "css/css-ui-3/nav-down-002.html": [ - "c2c297028fd36e546ef24211fc170c7c08c3e256", - "manual" - ], - "css/css-ui-3/nav-down-003.html": [ - "279906f4a9f03fbdc64f4bbb8283c981bbd0c072", - "manual" - ], - "css/css-ui-3/nav-down-004.html": [ - "9291c84ef07a6c0a7aaeb38c012ea9ca3dd1ba7f", - "manual" - ], - "css/css-ui-3/nav-down-005.html": [ - "6f8cedba205d51bf19f8c483606e3bb07e48fcbf", - "manual" - ], - "css/css-ui-3/nav-down-006.html": [ - "58098a1a42d38bbdb48269bda43c120af648e5dd", - "manual" - ], - "css/css-ui-3/nav-down-007.html": [ - "2614f21a71b11ca4c34476994b9dd6727c6b6b76", - "manual" - ], - "css/css-ui-3/nav-down-008.html": [ - "52ba1760f7847779a7c27c72eba7b715210a7e9c", - "manual" - ], - "css/css-ui-3/nav-down-009.html": [ - "7828f6b16d08f00f65c6dc43058a5c7042a14ff3", - "manual" - ], - "css/css-ui-3/nav-down-010.html": [ - "0b48cda4813e8f79f3fa258a45811eb0215e23c0", - "manual" - ], - "css/css-ui-3/nav-down-011.html": [ - "70a73d28364296de6dd99f9a82953b971eb8a448", - "manual" - ], - "css/css-ui-3/nav-down-012.html": [ - "3f3db4e329a737c3f0064dd8cfd92e4e4e7847b6", - "manual" - ], - "css/css-ui-3/nav-down-013.html": [ - "3274b1ec8a3b7ca30dd40043383d48e480ae5a43", - "manual" - ], - "css/css-ui-3/nav-down-014.html": [ - "dc80661a5645e67bc8be17f5d505031ea192e102", - "manual" - ], - "css/css-ui-3/nav-down-015.html": [ - "63e10ad2c200c8f6ce977580323edd29947d6a5c", - "manual" - ], - "css/css-ui-3/nav-down-016.html": [ - "024626f546e56694b448ea2afc09c931fb45dec1", - "manual" - ], - "css/css-ui-3/nav-left-000.html": [ - "f4f25a7f7f41e121d89461c175433bb57582fd7e", - "manual" - ], - "css/css-ui-3/nav-left-001.html": [ - "65c5511aa99e4252f303d392a20b811e4a3fd47c", - "manual" - ], - "css/css-ui-3/nav-left-002.html": [ - "b8f11306069a5e026fc5b9c823215527432aa3f5", - "manual" - ], - "css/css-ui-3/nav-left-003.html": [ - "4e343788ca5789761ee2a67f7d6a84cae84ed46d", - "manual" - ], - "css/css-ui-3/nav-left-004.html": [ - "36f1718aff3256e811d35ae68f07f44a965f9423", - "manual" - ], - "css/css-ui-3/nav-left-005.html": [ - "fd3636dad346ab2bdea7e524f58ce932677f7039", - "manual" - ], - "css/css-ui-3/nav-left-006.html": [ - "8b4420eae2175b91eb429d0603ea38a5daac833e", - "manual" - ], - "css/css-ui-3/nav-left-007.html": [ - "bbdf1136a43af0fdb06150f5b5cf56b2938bb51e", - "manual" - ], - "css/css-ui-3/nav-left-008.html": [ - "d4a9f1aed5750e9a9febd0492a4284f8fbd0fcff", - "manual" - ], - "css/css-ui-3/nav-left-009.html": [ - "8b24f5ba804c45e0d2db8f7693671c562d40af84", - "manual" - ], - "css/css-ui-3/nav-left-010.html": [ - "f553d0935a27bddb3844674f7a27c1f783ce0a6f", - "manual" - ], - "css/css-ui-3/nav-left-011.html": [ - "d60282a45345c8b5691f8d4b78f5ad547c82aeb7", - "manual" - ], - "css/css-ui-3/nav-left-012.html": [ - "3913422f42da4864d048f05decb151b31843dfd2", - "manual" - ], - "css/css-ui-3/nav-left-013.html": [ - "2161dafa345cb968fbea21ae20872ef180098cdc", - "manual" - ], - "css/css-ui-3/nav-left-014.html": [ - "e3b67dfb13e832d56e91f7f791c407f3c4f897ac", - "manual" - ], - "css/css-ui-3/nav-left-015.html": [ - "482e87762da0ddccd0e31e23afa4663e9f6176b1", - "manual" - ], - "css/css-ui-3/nav-left-016.html": [ - "f2d88e02608df672c7adb7750725f5a450586a5a", - "manual" - ], - "css/css-ui-3/nav-right-000.html": [ - "a636814c5823ad74b1a04a9cc8d3e24b987cd42a", - "manual" - ], - "css/css-ui-3/nav-right-001.html": [ - "32c5f7be5de8255962b9ecd25a90d082b187aef5", - "manual" - ], - "css/css-ui-3/nav-right-002.html": [ - "dbced845931603a2a6e7b26a3ef3efca03ee8780", - "manual" - ], - "css/css-ui-3/nav-right-003.html": [ - "c86350267e181367403d9d4fce1e641895fec2db", - "manual" - ], - "css/css-ui-3/nav-right-004.html": [ - "634c9bbae8361d83d86e48e3c59da4f5cb7d1b4e", - "manual" - ], - "css/css-ui-3/nav-right-005.html": [ - "27f4324a629556b75d2d5c623a8bdb31b0ecce84", - "manual" - ], - "css/css-ui-3/nav-right-006.html": [ - "c05f10b124d05460bdb2b67def551c21098486a5", - "manual" - ], - "css/css-ui-3/nav-right-007.html": [ - "cf9d55ae148b4680d70ff66430683709fddd73f1", - "manual" - ], - "css/css-ui-3/nav-right-008.html": [ - "bcd91d9b700a78b1c20af109a38f95704f42f2b2", - "manual" - ], - "css/css-ui-3/nav-right-009.html": [ - "7276fc822e5567a1f62e89a8b199930267b53f5f", - "manual" - ], - "css/css-ui-3/nav-right-010.html": [ - "a7eb042049572cb4ddd5544c8c4ea4ccf44c3d6f", - "manual" - ], - "css/css-ui-3/nav-right-011.html": [ - "2ee0abf5da3622b294acfebc45f2f798eac3c14b", - "manual" - ], - "css/css-ui-3/nav-right-012.html": [ - "d09cab41027f1d08458262051fd8663b55748058", - "manual" - ], - "css/css-ui-3/nav-right-013.html": [ - "591faab8291eacc020ed1fbd990e309dae8b550b", - "manual" - ], - "css/css-ui-3/nav-right-014.html": [ - "a77ecf3fc8d909c4bd33fdef48d51fa4ec1b9b2f", - "manual" - ], - "css/css-ui-3/nav-right-015.html": [ - "1fcebc9cda37d0d3fed29506a7c9f83b3f10135b", - "manual" - ], - "css/css-ui-3/nav-right-016.html": [ - "ab2b98b052349f012d8f916c3b2d89dc73d9abd0", - "manual" - ], - "css/css-ui-3/nav-up-000.html": [ - "b61e0f3ef9279a2803f2a4d76eb656fd58855c3d", - "manual" - ], - "css/css-ui-3/nav-up-001.html": [ - "79d8e066d90ccaac03b6d744cf5c228c21bb2d46", - "manual" - ], - "css/css-ui-3/nav-up-002.html": [ - "58107264c1f592a0d0d66ab57df66d02e6b09c99", - "manual" - ], - "css/css-ui-3/nav-up-003.html": [ - "f5ed4091a72e87333b947b3865426e154f18c50e", - "manual" - ], - "css/css-ui-3/nav-up-004.html": [ - "25e21393ee33456a3ab2190de02956eb2cc9f359", - "manual" - ], - "css/css-ui-3/nav-up-005.html": [ - "b0e1878c4b15c861e1247bb1a97f11fa85758a6a", - "manual" - ], - "css/css-ui-3/nav-up-006.html": [ - "ce3f9ff267207f89fdadd4cf1a214b73cd474d4f", - "manual" - ], - "css/css-ui-3/nav-up-007.html": [ - "cc0bd401a05cb1fb0b747468fa42900444ca4d7f", - "manual" - ], - "css/css-ui-3/nav-up-008.html": [ - "afcd3260649917122b6e930a93e3be2825bf3811", - "manual" - ], - "css/css-ui-3/nav-up-009.html": [ - "5bf6751b09d8343248e8c3766de42b3fb6b566ad", - "manual" - ], - "css/css-ui-3/nav-up-010.html": [ - "0365436c8edb5bb7fd0ef3734ae51c6eebbf4da7", - "manual" - ], - "css/css-ui-3/nav-up-011.html": [ - "e991ca8ebb252377d0d195f9c733846a25e101a5", - "manual" - ], - "css/css-ui-3/nav-up-012.html": [ - "f507c524983d1aef87104e122380d202e57bf05e", - "manual" - ], - "css/css-ui-3/nav-up-013.html": [ - "287d3119523969f3285520d781e668d2d3625127", - "manual" - ], - "css/css-ui-3/nav-up-014.html": [ - "f84d3ca73ada8439df5cb908985c68f2aaa70c18", - "manual" - ], - "css/css-ui-3/nav-up-015.html": [ - "e8b8d238be0509c7328293961d10cbf3fad33578", - "manual" - ], - "css/css-ui-3/nav-up-016.html": [ - "ad8cc6d69e04b4bd5ed109f7af651d4eebf05c98", - "manual" - ], "css/css-ui-3/outline-001.html": [ "c5058ebab47c4d310acb8e1dd566d3b55293fc90", "reftest" @@ -527589,6 +535346,34 @@ "ea7ec45c0b7b59812e6592c6211986d5ea3127af", "support" ], + "css/css-ui-3/reference/text-overflow-006-ref.html": [ + "e6c2501941e2c8275d2d2a5322c217533f370d63", + "support" + ], + "css/css-ui-3/reference/text-overflow-008-ref.html": [ + "1aeb23c5928c075cffbb7fc81a4b6e328f60fc06", + "support" + ], + "css/css-ui-3/reference/text-overflow-012-ref.html": [ + "cd83e5bc38f51672eff31efab017431065d17b9e", + "support" + ], + "css/css-ui-3/reference/text-overflow-013-ref.html": [ + "414a9396a5972ec32b7d4b0e891c4b883b8bfb33", + "support" + ], + "css/css-ui-3/reference/text-overflow-016-ref.html": [ + "cd35899144c43cb2a76d2986a28cd009140d7cca", + "support" + ], + "css/css-ui-3/reference/text-overflow-021-ref.html": [ + "317e02ebc1fb90e7d91bed1fd982d2bf81a10cfc", + "support" + ], + "css/css-ui-3/reference/text-overflow-022-ref.html": [ + "a223e8c0151a7ffc350466dd3b13f766f67425e8", + "support" + ], "css/css-ui-3/resize-001.html": [ "cee9af6bf866dc360a2f6e8a8a8b29376205dfde", "manual" @@ -527617,10 +535402,70 @@ "ec49229d583a225738a3f514ae280d1ddfafd199", "manual" ], + "css/css-ui-3/resize-008.html": [ + "8ab240226c30f6c13c368ea2d9d36812624cee21", + "manual" + ], + "css/css-ui-3/resize-009.html": [ + "3a0c023506f975edb6b33d8f33a45911b767476a", + "manual" + ], + "css/css-ui-3/resize-010.html": [ + "25eb9b36b22d59fca313dd2bc5bd01482b1e97ab", + "manual" + ], + "css/css-ui-3/resize-011.html": [ + "e748077bb1f53f0298ff0a90122243e088c74512", + "manual" + ], + "css/css-ui-3/resize-012.html": [ + "b46a69991f46cd17379c560bca5775ee9b615e51", + "manual" + ], + "css/css-ui-3/resize-013.html": [ + "26714a476eb6e6b34e006bd004907ac51f61a062", + "manual" + ], + "css/css-ui-3/resize-014.html": [ + "e31a1fba24516a5b64d5934f1d0f89337d52226c", + "manual" + ], + "css/css-ui-3/resize-015.html": [ + "c994a65d309d23f2cedb38645b521f36325d9224", + "manual" + ], + "css/css-ui-3/resize-016.html": [ + "3c08942b3f27ab8b90fcbad01fbc96c778a5bcaa", + "manual" + ], + "css/css-ui-3/resize-017.html": [ + "b333ab876e53b194a5f292152fa3277d643ff50d", + "manual" + ], + "css/css-ui-3/resize-018.html": [ + "38c5691917b0a1fdfffb5347beadd824e6e7ceda", + "manual" + ], + "css/css-ui-3/resize-019.html": [ + "aabb0e62b8fa9b51d663c7759442ff4d7fbfe3b7", + "manual" + ], + "css/css-ui-3/resize-020.html": [ + "dae674378da42d37720c2e892525da3c6df564e4", + "manual" + ], + "css/css-ui-3/resize-021.html": [ + "cb95c6ff5f784bcd91a044a5ed3fcc2ae311f388", + "manual" + ], "css/css-ui-3/select-cursor-001-manual.html": [ "192de157a390bef30b481257c3979c117c08e6fa", "manual" ], + "css/css-ui-3/support/1x1-red.png": [ + "b8da86921d04ba42f42b0a60b03c5c2172f58c2b", + "support" + ], "css/css-ui-3/support/PTS/PngSuite.LICENSE": [ "6535877ae26ff794820c6bde77fb7d59a322e2ff", "support" @@ -528409,104 +536254,12 @@ "3deb8a8171218fc8fb08098cd815099106f0d6bc", "support" ], - "css/css-ui-3/support/nav-dir-target-001-frame.html": [ - "ab56e27f58e6034f0c3c18aec5d3b594247dc3ec", + "css/css-ui-3/support/orange.png": [ + "df451ef5ab05264d56616c24d94fde0e0882fff7", "support" ], - "css/css-ui-3/support/nav-dir-target-002-frame.html": [ - "8302be532bc6f2de6e036d52c30a0815f5c4bc1f", - "support" - ], - "css/css-ui-3/support/nav-dir-target-003-frame.html": [ - "2199b88f0900b167bd100a01515f13035d8def4c", - "support" - ], - "css/css-ui-3/support/nav-dir-target-004-frame.html": [ - "a19162873778a13e53594d414cf3d7645d0ac7e7", - "support" - ], - "css/css-ui-3/support/nav-dir-target-005-frame.html": [ - "7bb73c3b77a09520bcc30efa00db08d7cc57c415", - "support" - ], - "css/css-ui-3/support/nav-down-009-frame.html": [ - "c92870d141222c76ffdf3a3991cfc6ad13244755", - "support" - ], - "css/css-ui-3/support/nav-down-010-frame.html": [ - "33dcfb2eca41dd433aae3dddede8d2049b06fb33", - "support" - ], - "css/css-ui-3/support/nav-down-011-frame.html": [ - "bf1cb3d249515604b2d48e87a3723ad35504dad1", - "support" - ], - "css/css-ui-3/support/nav-down-012-frame.html": [ - "30c972bc4a24110087e8c5bbf0fee5510f1ecba3", - "support" - ], - "css/css-ui-3/support/nav-down-013-frame.html": [ - "c8ee3abc1638ba49f9d248d0f1aa6c11c4e0ac00", - "support" - ], - "css/css-ui-3/support/nav-left-009-frame.html": [ - "c92870d141222c76ffdf3a3991cfc6ad13244755", - "support" - ], - "css/css-ui-3/support/nav-left-010-frame.html": [ - "5140e553106756832551c863dc0087ed069af106", - "support" - ], - "css/css-ui-3/support/nav-left-011-frame.html": [ - "bf1cb3d249515604b2d48e87a3723ad35504dad1", - "support" - ], - "css/css-ui-3/support/nav-left-012-frame.html": [ - "a26dcfa3bee1d858eb19ed9a037e8e84b97212b7", - "support" - ], - "css/css-ui-3/support/nav-left-013-frame.html": [ - "0c00e3acb82897f72b3e59d68d1836dd377479b2", - "support" - ], - "css/css-ui-3/support/nav-right-009-frame.html": [ - "c92870d141222c76ffdf3a3991cfc6ad13244755", - "support" - ], - "css/css-ui-3/support/nav-right-010-frame.html": [ - "02fff488db2ed803ae99e56ed9e96099cd1d1646", - "support" - ], - "css/css-ui-3/support/nav-right-011-frame.html": [ - "bf1cb3d249515604b2d48e87a3723ad35504dad1", - "support" - ], - "css/css-ui-3/support/nav-right-012-frame.html": [ - "3ceba251d6f27775ea5bb3e4b4a02ab4bd0046ff", - "support" - ], - "css/css-ui-3/support/nav-right-013-frame.html": [ - "6a8e603b8a76c66b46fcc88b525f3a95c05d4993", - "support" - ], - "css/css-ui-3/support/nav-up-009-frame.html": [ - "c92870d141222c76ffdf3a3991cfc6ad13244755", - "support" - ], - "css/css-ui-3/support/nav-up-010-frame.html": [ - "9277942bdf4e8a9e4aca5facbb4269f50110af47", - "support" - ], - "css/css-ui-3/support/nav-up-011-frame.html": [ - "bf1cb3d249515604b2d48e87a3723ad35504dad1", - "support" - ], - "css/css-ui-3/support/nav-up-012-frame.html": [ - "bbc21cc4304d7c5bf9f207268e5730d86c0999e4", - "support" - ], - "css/css-ui-3/support/nav-up-013-frame.html": [ - "aba357c58d6c4ce9975e2dd5dd9ef704895b4afb", + "css/css-ui-3/support/orange.svg": [ + "2d1dffcb42c54326795ed90700d23b7347a1644b", "support" ], "css/css-ui-3/support/r1-1.svg": [ @@ -528517,6 +536270,18 @@ "559cf518d41b151bac2638045093ca0a0d9317e8", "support" ], + "css/css-ui-3/support/test.mp4": [ + "2750d8491565f07a5f09eadfe1a1f0336a3ca26a", + "support" + ], + "css/css-ui-3/support/test.ogv": [ + "25cc63ff816d5bfb039da788131050dba9d7dc6c", + "support" + ], + "css/css-ui-3/support/test.webm": [ + "a06d964d2c7a770ddfc375532d06b94bf1a83c3c", + "support" + ], "css/css-ui-3/support/w100.svg": [ "a82922abdcaba31b934a27cbc43bca3bd46de54b", "support" @@ -528549,6 +536314,78 @@ "19d88ba58ec539abc1e32a3e07526a7abea355f4", "reftest" ], + "css/css-ui-3/text-overflow-006.html": [ + "f1cf60e25fd70476597cd86cd81ebeea6a5586a3", + "reftest" + ], + "css/css-ui-3/text-overflow-007.html": [ + "c4efe1edf35eaf83285d87829304ff371e33c76e", + "reftest" + ], + "css/css-ui-3/text-overflow-008.html": [ + "6dae594a6197701649c6fafcbc2f266131fcd041", + "reftest" + ], + "css/css-ui-3/text-overflow-009.html": [ + "e5de25b0ba1656c38a7c732baffc4f3306683f23", + "reftest" + ], + "css/css-ui-3/text-overflow-010.html": [ + "6f55e6742384c08368649656cda8f46aee5fe619", + "reftest" + ], + "css/css-ui-3/text-overflow-011.html": [ + "5ce16822f7171d50bc2e2659f9231cd33f5593ca", + "reftest" + ], + "css/css-ui-3/text-overflow-012.html": [ + "2c83443f2808e4b20b25dcdc4f8bb254e00b40e8", + "reftest" + ], + "css/css-ui-3/text-overflow-013.html": [ + "625eeabf9fad164337a1e40cbd038d3a6b471786", + "reftest" + ], + "css/css-ui-3/text-overflow-014.html": [ + "d3b43ba202011615e0fc2ccd80e742e7b7a22b84", + "reftest" + ], + "css/css-ui-3/text-overflow-015.html": [ + "ed90af2ad47fd37b3c40ae2c9ac2ae5c9343abf1", + "reftest" + ], + "css/css-ui-3/text-overflow-016.html": [ + "a1e53d9b311db7d49fcbffeb9a4632ec79bd5721", + "reftest" + ], + "css/css-ui-3/text-overflow-017.html": [ + "03ae27b87d81b474cbea774f2f39ff32e654575c", + "manual" + ], + "css/css-ui-3/text-overflow-018.html": [ + "f46736c20bfc3cf7bd169d7bdad2c90f2e206556", + "manual" + ], + "css/css-ui-3/text-overflow-019.html": [ + "42c979c66b0bc6a253416c6dfc665ab88fc110ce", + "manual" + ], + "css/css-ui-3/text-overflow-020.html": [ + "99c73b2e261a5526d7883572eb2ce61da0b58688", + "reftest" + ], + "css/css-ui-3/text-overflow-021.html": [ + "afbaf2e7d3acfa93b295b656a0ffbb2a4f74011f", + "reftest" + ], + "css/css-ui-3/text-overflow-022.html": [ + "095f78700529b34397887722b57b56dd7dd97861", + "reftest" + ], + "css/css-ui-3/text-overflow-023.html": [ + "4fd38a517e41851216d12db8c6b732d96f76e325", + "testharness" + ], "css/css-ui-3/text-overflow-ref.html": [ "db55b0b95a7406e9c4f00081b3e2cbe6b07363f7", "support" @@ -528557,10 +536394,450 @@ "d3a6c835c23b82a85398e7981461a0cd3a75b861", "manual" ], + "css/css-ui-4/OWNERS": [ + "b57cbdb893bb5494e68700974ff711b6078f962e", + "support" + ], + "css/css-ui-4/nav-dir-001.html": [ + "b9d172945ca5861bc050d920cef1dc0a9c7a6c78", + "manual" + ], + "css/css-ui-4/nav-dir-002.html": [ + "b10929bc98bfa76f5d2fee1070e0dab503ce2b9d", + "manual" + ], + "css/css-ui-4/nav-dir-003.html": [ + "5a5763462d593ebd69adf6e04c325711136592f9", + "manual" + ], + "css/css-ui-4/nav-dir-004.html": [ + "3a0cc6b3c5e76a4d904e8fe71ba26c2c21c4c4e0", + "manual" + ], + "css/css-ui-4/nav-dir-005.html": [ + "22b541a91781b3302544adb2f2582dcd4be32f6c", + "manual" + ], + "css/css-ui-4/nav-dir-missing-1.html": [ + "abcd5d3fc22f36a41092764b3b6394ca2d34eec3", + "manual" + ], + "css/css-ui-4/nav-dir-missing-2.html": [ + "7f2a8b5a5d4f37ced0a3352325e7cdb816d3aa63", + "manual" + ], + "css/css-ui-4/nav-dir-missing-3.html": [ + "475efcd6f2e10c13733d8deba4f9cbabecd513dc", + "manual" + ], + "css/css-ui-4/nav-dir-missing-4.html": [ + "f16b0e211d6841657805fadba27efa2c23d4b879", + "manual" + ], + "css/css-ui-4/nav-dir-target-001.html": [ + "074a17a86ce546a221d0bf777eb1183becdfa3e5", + "manual" + ], + "css/css-ui-4/nav-dir-target-002.html": [ + "400fab62f649816b883904579d1452eb0f1c92f7", + "manual" + ], + "css/css-ui-4/nav-dir-target-003.html": [ + "bc613463b188200a4b0236ca214861fbeec568f8", + "manual" + ], + "css/css-ui-4/nav-dir-target-004.html": [ + "1252ef4d84d40f6c8f01952d1cbef59c930f0601", + "manual" + ], + "css/css-ui-4/nav-dir-target-005.html": [ + "e7bbfec4d257d314c2d76832b4819e93120dabbe", + "manual" + ], + "css/css-ui-4/nav-dir-target-006.html": [ + "7ef856d8390d8f100892725e6917fd9f253f07cb", + "manual" + ], + "css/css-ui-4/nav-down-000.html": [ + "c1287ca547c24ac6f7db35bb3e709d36d491696b", + "manual" + ], + "css/css-ui-4/nav-down-001.html": [ + "e3e7e4e2f2af5b4481ad5953bedc1ab084131231", + "manual" + ], + "css/css-ui-4/nav-down-002.html": [ + "ce80fa70f7af5a02aef62f354538e24ff8d74527", + "manual" + ], + "css/css-ui-4/nav-down-003.html": [ + "f28b125c07a6f1b464e20c32059e6228ef65ca4d", + "manual" + ], + "css/css-ui-4/nav-down-004.html": [ + "52487b6bd550d9a6396f46e44fe6f280432489d9", + "manual" + ], + "css/css-ui-4/nav-down-005.html": [ + "b273d38a9237e2faba8ab35180eed6525743f63e", + "manual" + ], + "css/css-ui-4/nav-down-006.html": [ + "922782236d3b8f29c293bc7e529d4c3ea28a85a8", + "manual" + ], + "css/css-ui-4/nav-down-007.html": [ + "e9b39ec847bd11c5c23874113fbfa696d3c1ef77", + "manual" + ], + "css/css-ui-4/nav-down-008.html": [ + "9de3f3e72d237f1396a257f488440b39d7eff6c8", + "manual" + ], + "css/css-ui-4/nav-down-009.html": [ + "afb44a2aff57fe82db4d28303d71797414aceb3a", + "manual" + ], + "css/css-ui-4/nav-down-010.html": [ + "fb99b0a1ee8882f805912a7ab93c82c9a890c143", + "manual" + ], + "css/css-ui-4/nav-down-011.html": [ + "4df9181b9a3cc39b1f351c876e97e36c9f0ce2d9", + "manual" + ], + "css/css-ui-4/nav-down-012.html": [ + "1c7c0a008a49863cde0cc0cdfc1674f0fc47d660", + "manual" + ], + "css/css-ui-4/nav-down-013.html": [ + "29418276a64f375c5eccf832786c8ea9de32383b", + "manual" + ], + "css/css-ui-4/nav-down-014.html": [ + "c6278153a24485493d191d8885d924c6c88c297b", + "manual" + ], + "css/css-ui-4/nav-down-015.html": [ + "f904e5163c518673ce581122348a2e03ff2332ca", + "manual" + ], + "css/css-ui-4/nav-down-016.html": [ + "9df191bf38953fdb1841a230ca6d9429590b06da", + "manual" + ], + "css/css-ui-4/nav-left-000.html": [ + "e1118a0700e78f46480990ad563649500e02582e", + "manual" + ], + "css/css-ui-4/nav-left-001.html": [ + "f9c2a4df21b58d84c3218431df8bfb05ef12edf7", + "manual" + ], + "css/css-ui-4/nav-left-002.html": [ + "aa9edc7a2c814dba056e808bd6a2f86d1aa84357", + "manual" + ], + "css/css-ui-4/nav-left-003.html": [ + "e284972b15bd670b3807feed1a6114b739564d31", + "manual" + ], + "css/css-ui-4/nav-left-004.html": [ + "6aa49f0d92c8334aff95a61740b1eb006f6d1b1f", + "manual" + ], + "css/css-ui-4/nav-left-005.html": [ + "5108603791efa443cb887cb2987fa86e5749ca8e", + "manual" + ], + "css/css-ui-4/nav-left-006.html": [ + "e3681e4abf731cb4b62725f4786784776e04a353", + "manual" + ], + "css/css-ui-4/nav-left-007.html": [ + "9b2c699af68b90a35b01ce0584952221ed9cd113", + "manual" + ], + "css/css-ui-4/nav-left-008.html": [ + "f54bd3fe942c8edd0970d619d2378370c060a24b", + "manual" + ], + "css/css-ui-4/nav-left-009.html": [ + "77c7d64326e3037705987b825871177e11b7ba3a", + "manual" + ], + "css/css-ui-4/nav-left-010.html": [ + "dd936da3c9e8987e0dc6820a3b3ef27c6d8343dc", + "manual" + ], + "css/css-ui-4/nav-left-011.html": [ + "72a2e80caee777bbcfafbb0ff585215e30769735", + "manual" + ], + "css/css-ui-4/nav-left-012.html": [ + "24a2dafadbe7dd62a7c6dd6594b70b5e4751bc4a", + "manual" + ], + "css/css-ui-4/nav-left-013.html": [ + "c7a113934e2385447017bc1481e1425d2c81fef4", + "manual" + ], + "css/css-ui-4/nav-left-014.html": [ + "228504658b117be051baeff6142f629ae78d1c2d", + "manual" + ], + "css/css-ui-4/nav-left-015.html": [ + "4b75e893a9a6c8de4228524b760b96acea70a36e", + "manual" + ], + "css/css-ui-4/nav-left-016.html": [ + "651d1c8346a2eed890ae2cf6bd4db90ea6ac1b43", + "manual" + ], + "css/css-ui-4/nav-right-000.html": [ + "7e89c22c3c2472d4f5fbd564e3825315d75de459", + "manual" + ], + "css/css-ui-4/nav-right-001.html": [ + "f35a838abd7c2aecfcd24f1c6243fe1bb0c31082", + "manual" + ], + "css/css-ui-4/nav-right-002.html": [ + "e6b16797d864bd1ced18ad253ab52e0f57c49fef", + "manual" + ], + "css/css-ui-4/nav-right-003.html": [ + "31dbffcff7faeb6094db87645e47236d26c50a06", + "manual" + ], + "css/css-ui-4/nav-right-004.html": [ + "03fa277bf596746f3b61ee5e5be3a321d8a7bba7", + "manual" + ], + "css/css-ui-4/nav-right-005.html": [ + "d965a2305d4899a8d90e4faefda1d79053216ed3", + "manual" + ], + "css/css-ui-4/nav-right-006.html": [ + "f4a6d0adc871cfbf040ea18b9142c747012ad7b6", + "manual" + ], + "css/css-ui-4/nav-right-007.html": [ + "c64c02364cea3cd165a93cf877be323562e5eb26", + "manual" + ], + "css/css-ui-4/nav-right-008.html": [ + "73ab7ab6d230a440e93ab3e958543003b734ab8b", + "manual" + ], + "css/css-ui-4/nav-right-009.html": [ + "1192b7d91598ab6d3526e580296c3023c6a41ac2", + "manual" + ], + "css/css-ui-4/nav-right-010.html": [ + "3edd085374d6d655aaa3b568c61dcec2596b37a8", + "manual" + ], + "css/css-ui-4/nav-right-011.html": [ + "3e63e30d78a57bbedeeb9a834f8fb317737267cf", + "manual" + ], + "css/css-ui-4/nav-right-012.html": [ + "06501e7caa08668e94231bd7def9151433d89c0b", + "manual" + ], + "css/css-ui-4/nav-right-013.html": [ + "f8c8d473001ee85eebfd1f8c6a9802e8ec80f761", + "manual" + ], + "css/css-ui-4/nav-right-014.html": [ + "f166818dd0e1783b253a06c258fa1a290f3ef976", + "manual" + ], + "css/css-ui-4/nav-right-015.html": [ + "7d755c5d58d1fb7b6613c2b9efa1e2a520535bd9", + "manual" + ], + "css/css-ui-4/nav-right-016.html": [ + "2014e179db743e4dc024d2fed2fd97df7788e32b", + "manual" + ], + "css/css-ui-4/nav-up-000.html": [ + "bab571c2051c63a097b58e4377f06747e15f5db1", + "manual" + ], + "css/css-ui-4/nav-up-001.html": [ + "1e9ee078938ebe3930426e99b206bd3ff014e288", + "manual" + ], + "css/css-ui-4/nav-up-002.html": [ + "1fce38fdce1b66c65c508d82c7344dc21346fc1d", + "manual" + ], + "css/css-ui-4/nav-up-003.html": [ + "24b2fcc3d1365d0b6c12a6874154ed2570cf2d95", + "manual" + ], + "css/css-ui-4/nav-up-004.html": [ + "bc242a5091c641bdba6bc6bcc6e49fe13aefcd9a", + "manual" + ], + "css/css-ui-4/nav-up-005.html": [ + "c94c2f9cad3b09ccbe019dcf21f33d153f0a12d0", + "manual" + ], + "css/css-ui-4/nav-up-006.html": [ + "fd8885267245e5bafd6a2c82b2f793978ea908c7", + "manual" + ], + "css/css-ui-4/nav-up-007.html": [ + "9c5f8cfc0f639ed96d34e1bbb902ae72765ee5f1", + "manual" + ], + "css/css-ui-4/nav-up-008.html": [ + "cab2a75dc074657e52a230681d05187cbe679032", + "manual" + ], + "css/css-ui-4/nav-up-009.html": [ + "1c6e6bdbc6f061804b41f091e80e2a1906ef6eb7", + "manual" + ], + "css/css-ui-4/nav-up-010.html": [ + "63448df6cd508ca823c04fc7ff381d943d1b4ebe", + "manual" + ], + "css/css-ui-4/nav-up-011.html": [ + "f53598e695b27987b40931954696e2ac3d5557e1", + "manual" + ], + "css/css-ui-4/nav-up-012.html": [ + "36b0539a4f353a3d3e61d10192b03d99a85b2d8c", + "manual" + ], + "css/css-ui-4/nav-up-013.html": [ + "4e41dac5ca3f5b648fb48a37b9a41a0eb1d170f7", + "manual" + ], + "css/css-ui-4/nav-up-014.html": [ + "1e440d1596484e70a737af0eabad2494f5b4d01c", + "manual" + ], + "css/css-ui-4/nav-up-015.html": [ + "68e2e24d6a0ebd3c2ec5246a28f110aaf1fd54c9", + "manual" + ], + "css/css-ui-4/nav-up-016.html": [ + "917c171498ee00053803d6bd90f1bf47a09923da", + "manual" + ], + "css/css-ui-4/support/nav-dir-target-001-frame.html": [ + "ab56e27f58e6034f0c3c18aec5d3b594247dc3ec", + "support" + ], + "css/css-ui-4/support/nav-dir-target-002-frame.html": [ + "8302be532bc6f2de6e036d52c30a0815f5c4bc1f", + "support" + ], + "css/css-ui-4/support/nav-dir-target-003-frame.html": [ + "2199b88f0900b167bd100a01515f13035d8def4c", + "support" + ], + "css/css-ui-4/support/nav-dir-target-004-frame.html": [ + "a19162873778a13e53594d414cf3d7645d0ac7e7", + "support" + ], + "css/css-ui-4/support/nav-dir-target-005-frame.html": [ + "7bb73c3b77a09520bcc30efa00db08d7cc57c415", + "support" + ], + "css/css-ui-4/support/nav-down-009-frame.html": [ + "c92870d141222c76ffdf3a3991cfc6ad13244755", + "support" + ], + "css/css-ui-4/support/nav-down-010-frame.html": [ + "33dcfb2eca41dd433aae3dddede8d2049b06fb33", + "support" + ], + "css/css-ui-4/support/nav-down-011-frame.html": [ + "bf1cb3d249515604b2d48e87a3723ad35504dad1", + "support" + ], + "css/css-ui-4/support/nav-down-012-frame.html": [ + "30c972bc4a24110087e8c5bbf0fee5510f1ecba3", + "support" + ], + "css/css-ui-4/support/nav-down-013-frame.html": [ + "c8ee3abc1638ba49f9d248d0f1aa6c11c4e0ac00", + "support" + ], + "css/css-ui-4/support/nav-left-009-frame.html": [ + "c92870d141222c76ffdf3a3991cfc6ad13244755", + "support" + ], + "css/css-ui-4/support/nav-left-010-frame.html": [ + "5140e553106756832551c863dc0087ed069af106", + "support" + ], + "css/css-ui-4/support/nav-left-011-frame.html": [ + "bf1cb3d249515604b2d48e87a3723ad35504dad1", + "support" + ], + "css/css-ui-4/support/nav-left-012-frame.html": [ + "a26dcfa3bee1d858eb19ed9a037e8e84b97212b7", + "support" + ], + "css/css-ui-4/support/nav-left-013-frame.html": [ + "0c00e3acb82897f72b3e59d68d1836dd377479b2", + "support" + ], + "css/css-ui-4/support/nav-right-009-frame.html": [ + "c92870d141222c76ffdf3a3991cfc6ad13244755", + "support" + ], + "css/css-ui-4/support/nav-right-010-frame.html": [ + "02fff488db2ed803ae99e56ed9e96099cd1d1646", + "support" + ], + "css/css-ui-4/support/nav-right-011-frame.html": [ + "bf1cb3d249515604b2d48e87a3723ad35504dad1", + "support" + ], + "css/css-ui-4/support/nav-right-012-frame.html": [ + "3ceba251d6f27775ea5bb3e4b4a02ab4bd0046ff", + "support" + ], + "css/css-ui-4/support/nav-right-013-frame.html": [ + "6a8e603b8a76c66b46fcc88b525f3a95c05d4993", + "support" + ], + "css/css-ui-4/support/nav-up-009-frame.html": [ + "c92870d141222c76ffdf3a3991cfc6ad13244755", + "support" + ], + "css/css-ui-4/support/nav-up-010-frame.html": [ + "9277942bdf4e8a9e4aca5facbb4269f50110af47", + "support" + ], + "css/css-ui-4/support/nav-up-011-frame.html": [ + "bf1cb3d249515604b2d48e87a3723ad35504dad1", + "support" + ], + "css/css-ui-4/support/nav-up-012-frame.html": [ + "bbc21cc4304d7c5bf9f207268e5730d86c0999e4", + "support" + ], + "css/css-ui-4/support/nav-up-013-frame.html": [ + "aba357c58d6c4ce9975e2dd5dd9ef704895b4afb", + "support" + ], "css/css-values-3/OWNERS": [ "857b8aadc90a4073e122c667a554669a93886785", "support" ], + "css/css-values-3/absolute-length-units-001.html": [ + "d21dfd079ff6ac225e5f36c25e34bd994a713fa2", + "testharness" + ], "css/css-values-3/absolute_length_units.html": [ "64ea61f181e9e6c1c801ff7e10c75122beab45c2", "visual" @@ -528585,10 +536862,6 @@ "595100ad77485fe61bba6f186dc1ce255c133a4e", "reftest" ], - "css/css-values-3/attr-invalid-type-003.html": [ - "595100ad77485fe61bba6f186dc1ce255c133a4e", - "reftest" - ], "css/css-values-3/attr-length-invalid-cast.html": [ "b3330e159de0c7ff9fa0a922bbebb2e6960abfb6", "reftest" @@ -528698,11 +536971,11 @@ "support" ], "css/css-values-3/reference/vh_not_refreshing_on_chrome-ref.html": [ - "214ac04a1caed95fff6854c18a7fae9ffdca1b76", + "affece13e73e451198a986146abde869b90c64cb", "support" ], "css/css-values-3/reference/vh_not_refreshing_on_chrome_iframe-ref.html": [ - "ad8d37ad73e28b91af8b469eac6eab2bc0bdb9ef", + "81474dbdd159353cc30131e37d54556e422e3f5a", "support" ], "css/css-values-3/support/1x1-green.png": [ @@ -528881,6 +537154,14 @@ "078e1dd6dd61d36cec239ed75d02051f61fe60a5", "support" ], + "css/css-values-3/support/vh_not_refreshing_on_chrome_iframe.html": [ + "95f9582bf94c0bc60ddee79415b763af8762faf0", + "support" + ], + "css/css-values-3/unset-value-storage.html": [ + "ce34d77ec21c9b94a2ffe31d4f9e153e14605474", + "testharness" + ], "css/css-values-3/vh-calc-support-pct.html": [ "1d1b6fd96100b08b7abe0125d386edf736d57aa6", "reftest" @@ -528934,11 +537215,7 @@ "support" ], "css/css-values-3/vh_not_refreshing_on_chrome.html": [ - "c06a199c4771fe43cbcb458863590f2602062d84", - "reftest" - ], - "css/css-values-3/vh_not_refreshing_on_chrome_iframe.html": [ - "c2d5cf3948c42be36eab1ee5bd9e4758c48eef78", + "b95d1e9054aaaa9c9a780fd4852307ed3604d46a", "reftest" ], "css/css-values-3/viewport-relative-lengths-scaled-viewport.html": [ @@ -529093,6 +537370,14 @@ "13085879fd567a224901d142cee05a96836ff749", "testharness" ], + "css/css-variables-1/variable-generated-content-dynamic-001-ref.html": [ + "f1a7e50f8c66bd18ad4e94f494f0cf31c8511093", + "support" + ], + "css/css-variables-1/variable-generated-content-dynamic-001.html": [ + "b0374a1825f8dae8c03768cc1eec5297e0a05c71", + "reftest" + ], "css/css-variables-1/variable-invalidation.html": [ "11106961651b3920aa302bd42695af7fe1b7484a", "testharness" @@ -529198,7 +537483,7 @@ "testharness" ], "css/css-variables-1/vars-font-shorthand-001.html": [ - "52b5d737026e63f382b2f626fe3039a529005db1", + "ac2c476205ffb2c2f985c44cb5e4acada01b0093", "reftest" ], "css/css-writing-modes-3/OWNERS": [ @@ -530350,7 +538635,7 @@ "manual" ], "css/css-writing-modes-3/background-position-vrl-018-ref.xht": [ - "d4872271295e1c6959d7e560f21076f721bad1bb", + "8f097a15a5d6a9d9ae9c851abdb88f03e408cb9c", "support" ], "css/css-writing-modes-3/background-position-vrl-018.xht": [ @@ -531302,11 +539587,11 @@ "reftest" ], "css/css-writing-modes-3/contiguous-floated-table-vlr-007.xht": [ - "cdefb61a7766ee846c81553a6797fcb263a8dc35", + "b03e26b2eb2ae9eddd76cd4b96c004f10cfb15f1", "reftest" ], "css/css-writing-modes-3/contiguous-floated-table-vlr-009.xht": [ - "b892a1a4c51ebfe2b8446c9787d001af64283a3d", + "e4969ad20f4892e539f4b6af959f544d0a1c02e6", "reftest" ], "css/css-writing-modes-3/contiguous-floated-table-vrl-002.xht": [ @@ -531318,11 +539603,11 @@ "reftest" ], "css/css-writing-modes-3/contiguous-floated-table-vrl-006.xht": [ - "43da7e1c56b3f983b4eac3c153ff0e29c24b119d", + "64687447330f8bcf2cb03538058e329ac3eb48be", "reftest" ], "css/css-writing-modes-3/contiguous-floated-table-vrl-008.xht": [ - "4baa13869a2747e865a988e8a0fb63bf4989a0e7", + "50908668186f32ed39a7e64ad630bd9a71c85d2b", "reftest" ], "css/css-writing-modes-3/different-block-flow-dir-001.xht": [ @@ -531974,11 +540259,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vlr-003.xht": [ - "03b71cb044e731fcb8b58041f1f642f839061dfd", + "9d355624e6e9e2b868b9890aaffed418dedd81c1", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-005.xht": [ - "983c1a4f31c170fea66c38d2a626c105a7071dfe", + "6ff3ba2274767fd6b710970cad62dcd00a122a3c", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-007-ref.xht": [ @@ -531986,11 +540271,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vlr-007.xht": [ - "aec7be36f364fa6f90a8371a489b4b3a3cf9cf82", + "4ba8dc40e9c0743b6055adb173311fb2e356cce6", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-009.xht": [ - "4f4e72f788c804eec614238c4bc21c5328f2d472", + "439fe965f6ea34d25e4cc9710893a0f538eef24e", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-011-ref.xht": [ @@ -531998,11 +540283,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vlr-011.xht": [ - "3f63e7d48990c2a136fb932c5db1688eb9f35762", + "ab420fd12b1a9df50bb16434985f24edc8dcdd7a", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-013.xht": [ - "88386222e5ff936aa5d52bcc5a1bb9424f29d6d5", + "15b6d066907ab67224536a045d3d12bbfc265af2", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-021-ref.xht": [ @@ -532010,7 +540295,7 @@ "support" ], "css/css-writing-modes-3/line-box-height-vlr-021.xht": [ - "636042d0e21518748f09ef7df43d809f46c9872c", + "97661051cf530fc7810203e7068072a42570d4e8", "reftest" ], "css/css-writing-modes-3/line-box-height-vlr-023-ref.xht": [ @@ -532018,7 +540303,7 @@ "support" ], "css/css-writing-modes-3/line-box-height-vlr-023.xht": [ - "bc545a63f82b19898cb6e5a056eeda98a6e73110", + "4c6eb6c5a4e271c50f1c8e8f9b4760b6be04264a", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-002-ref.xht": [ @@ -532026,11 +540311,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vrl-002.xht": [ - "88a19212954a57a8731e0c879bfcb1ebe439eed4", + "35cbc9b97dba18aae3f1fe78b5d30112f08c0505", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-004.xht": [ - "4b28eee29924e4eebe196350c9e013b6c109ad5e", + "3fd6410b4ead23b5b122d27a6fb8bc7ba84ae65d", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-006-ref.xht": [ @@ -532038,11 +540323,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vrl-006.xht": [ - "80b3a935fd622bbf4928561d92315259a7af6eb5", + "8c4aee9b0dd61c8f2b29c8d1cad9f6b8d21d09fb", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-008.xht": [ - "ee5be203f79c6afcf49647cb20932440a2f78116", + "6a5d20d37ad23987efeae1f6e4ee17ae77ca2a6b", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-010-ref.xht": [ @@ -532050,11 +540335,11 @@ "support" ], "css/css-writing-modes-3/line-box-height-vrl-010.xht": [ - "9fa7b8b6f04afcd6f506e3d55245b36091d67116", + "4f4038c84de1d5c7fe044e0334b8f64493e21609", "reftest" ], "css/css-writing-modes-3/line-box-height-vrl-012.xht": [ - "c73fe1815124b5c6c50196d6032d9e3fa77f06f4", + "af9a1409c41728f261794835cdedbfa2078aa141", "reftest" ], "css/css-writing-modes-3/margin-collapse-vlr-003.xht": [ @@ -532198,103 +540483,103 @@ "reftest" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001.html": [ - "2adaf63d50922f66d8061db031d8846af1d673dc", + "fda6b9308b2b81c47baf638f0c92b4a15e833fe1", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001a.html": [ - "78c16633502d708e0116f0df628405198fce7947", + "92033c82920853f1983a3f04ade9c3bd542838fb", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001b.html": [ - "08545cbb5e0f01205256a19fe3be505388324733", + "1d8aadeb0e68f7b11da11ba0a4ffd62dea164914", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001c.html": [ - "52af0469482efb5147dbdc8f384fd0c44b3c43db", + "4cb5ed4df1c2e147c3e44ebc5cc0ea7ddda0f696", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001d.html": [ - "e9c2e93d418b1c9cbd6126b11360089dbd93602d", + "f744763a79077eaad0a37eb8bb6acf36160028e7", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001e.html": [ - "454ed190537cd3075c6a24f6d2061cc343eea99e", + "896248fa233a86f29c12628efd5fc6e8120b1b0c", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001f.html": [ - "cb23fb6c7bc4149a478e67c0ebd955806e1a78a7", + "071922c9de86d7b7b907a3e9313e2014711c7608", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001g.html": [ - "26c4f6535d5553ce973c5ea5146b89c3738a567c", + "da73815d6633270d06d4b85dcd1026b43c2b50cd", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001h.html": [ - "cdb811d78d6b7109b53cb4d20bb06a364a6d6d82", + "96bd59af353f87c557c5c45c1cea544ef71b6a4d", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001i.html": [ - "097b2fa0d843bd284b3a1989a02eb585bde0d354", + "8751d9ef7ecffde03e78a9f0882b751ab4cc64d9", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001j.html": [ - "bc33cb570ac84ff438cef48dab9f266ba110c949", + "6fea0068f8ec1de136912232ee195b73cdb0f7c0", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001k.html": [ - "9bb6ee871bde8587f47aec05d747e47e56c9b4fa", + "b3c0a23767d434efd61275b13064f564220d395d", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001l.html": [ - "4768b3e090a971b2325981f8b2de752ad7f7b5d3", + "53dbb64e41ddab1da163ec2a053e65bf715984e1", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001m.html": [ - "7f40e62d660600898a768ec43d6d3cc03e1304fe", + "9ac06fb0d17338daf9f49d491c265d07b0b14f8a", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001n.html": [ - "2b120f85ce79696091d4fa38a877ae02c62d70dd", + "aa044cc981347088729a48186b96ceccc91f980c", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001o.html": [ - "d2958493951375d29e923416d3e4a775b20c9f29", + "6db30cefbda0b1dd9805e9d951eb0fbcb096ba06", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001p.html": [ - "7d1d3e3be199428f3f0d3638682bbb99d0bc1bc6", + "60e78b10e371e29326a1884f7014db469733279a", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001q.html": [ - "1b073c1a2f0a5cc71c266c05e717531bbff813b6", + "c3b44523b661601242cbcd820c2cd4f76a49afd7", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001r.html": [ - "cbd3acdd080254793e87fd7fe3dfe21e564b532c", + "cd1deff02dc5de77f37c53ad5d56874c20c80d5a", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001s.html": [ - "bfbe0dcc0e6a4202d6365acc6d8d22fce12f92ed", + "e648684a3ce92763655e45ed91557899e8fa9f8d", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001t.html": [ - "822fe1f0efce56f31f0976b1da53bb93517b8b90", + "1bdb2a1b50b08f928190617c724cfbead43c1059", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001u.html": [ - "2eb755bb7e915ff918ef1092d1ebfa1e8defde31", + "5f8696abfd475bc2d70056e1c155474c4699229b", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001v.html": [ - "51000462ecc028568ede495f2ac68f493bd15e6e", + "912a3332f894531b035c92d35772539dbfa54da2", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001w.html": [ - "d24748727ce1825770059025b1f7717404943d5d", + "28441f89c8601db3c07aea2cab72af83375e42d5", "testharness" ], "css/css-writing-modes-3/orthogonal-parent-shrink-to-fit-001x.html": [ - "21ca496672899e66f235fd36577c0c01fad8c7f1", + "ee4398e9fb25878ceec678a3a756a55f814dbc60", "testharness" ], "css/css-writing-modes-3/outline-inline-block-vrl-006.html": [ @@ -534410,7 +542695,7 @@ "support" ], "css/css-writing-modes-3/support/text-orientation.js": [ - "368d5f273357ebeb737905ebb26c06c5a690f778", + "f81f0599ec6f87267af1b9f3521ed5d0d1c9338f", "support" ], "css/css-writing-modes-3/support/vertical-form.png": [ @@ -535182,7 +543467,7 @@ "support" ], "css/css-writing-modes-3/tools/generators/orthogonal-parent-shrink-to-fit.ejs": [ - "a7400b5fd3de25495f570566fd98ff0d6aa01753", + "fc4066286c9282a1fb1b1f9b5ddf34beeac95430", "support" ], "css/css-writing-modes-3/tools/generators/package.json": [ @@ -535461,6 +543746,18 @@ "cd58814cd747579216fc3d038849b2ecfaa22e39", "reftest" ], + "css/css-writing-modes-3/wm-propagation-body-computed-root.html": [ + "a212bca7bfbf52fb0358d0ea6567fa8e3df643a9", + "testharness" + ], + "css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-lr.html": [ + "a4284176396d19a960760502597a34f7852aa4b9", + "testharness" + ], + "css/css-writing-modes-3/wm-propagation-body-scroll-offset-vertical-rl.html": [ + "eba0c1019f7a6294520aadd26f67d5b9ff993f4f", + "testharness" + ], "css/css-writing-modes-3/writing-mode-horizontal-001l.html": [ "b8266a3ac8d55bcf9ee7ddddc31cdedb07717da1", "reftest" @@ -535750,7 +544047,7 @@ "support" ], "css/css3-color/t424-hsl-parsing-f.xht": [ - "2fbf518efbdae2af7cb651dd0c9c7158751e61de", + "2c02fbf1d640b5f683392be3cc31f2c70510c475", "reftest" ], "css/css3-color/t424-hsl-values-b-1-ref.html": [ @@ -535898,7 +544195,7 @@ "reftest" ], "css/css3-color/t425-hsla-parsing-f.xht": [ - "b1d4b2c4fb2cfb0cc262282ef83276e68540feb3", + "82561b7b56fbc73c227898b4492ece9a1acc4517", "reftest" ], "css/css3-color/t425-hsla-values-b-ref.html": [ @@ -537241,6 +545538,10 @@ "37366f5a6bbdf759063817e180a83e34f81ea8c7", "support" ], + "css/css3-selectors/i18n/OWNERS": [ + "529a7d4e2cfca44f7804f88e375b383e2388c23d", + "support" + ], "css/css3-selectors/i18n/README": [ "be36f3153ffc6d9bde3da5e219063f046afe9d20", "support" @@ -538217,18 +546518,6 @@ "6f3884860a84b9b6e7524c84626638e303a14660", "support" ], - "css/fonts/ahem/COPYING": [ - "1a8e3831fe53a5da6fec64a397094d9abc92cda0", - "support" - ], - "css/fonts/ahem/README": [ - "0457a7b5613236deb9d49a699edbfcef474ea408", - "support" - ], - "css/fonts/ahem/ahem.ttf": [ - "88d834aadcd7b547720992a2894b9ab3251e3e04", - "support" - ], "css/geometry-1/DOMMatrix-001.html": [ "a8cfa83e572a766b61e4eae5946e7efb62e9eab7", "testharness" @@ -538245,6 +546534,10 @@ "6041bd4e7fd1535d9c8515f1b2f07981b2bdd366", "testharness" ], + "css/geometry-1/DOMMatrix-attributes.html": [ + "433984b90fc4579257db57b07a09ae36f7e5b4d3", + "testharness" + ], "css/geometry-1/DOMMatrix-css-string.worker.js": [ "e97dcab8cdf554c5f60c12dd037ece69d7c854b2", "testharness" @@ -538257,8 +546550,12 @@ "fbcaa50f5daab1a11325cbbd46e10c524a1f6f80", "testharness" ], + "css/geometry-1/DOMMatrix2DInit-validate-fixup.html": [ + "aa00e3456bf951230fb85999874795c918964cf4", + "testharness" + ], "css/geometry-1/DOMMatrixInit-validate-fixup.html": [ - "201d59db6923ae141d980ac40ddce08375bd1900", + "bb27ad23e388ea50a26618bc50709d78997f1081", "testharness" ], "css/geometry-1/DOMPoint-001.html": [ @@ -538281,8 +546578,16 @@ "f24895dc1d994388c45fb6fa39132a7e1c03d18b", "testharness" ], + "css/geometry-1/DOMRect-002.html": [ + "ff12ef1246036cf5f94f0d03da8a136424349f7d", + "testharness" + ], + "css/geometry-1/DOMRectList.html": [ + "382b6c7ea9bc4c75d1b007b59ccdcb9c642f51ce", + "testharness" + ], "css/geometry-1/OWNERS": [ - "4b2b22591c272446136118ce3d174d1b66200743", + "173dd21a142b526b7447cc24e93a800e84f70bbc", "support" ], "css/geometry-1/WebKitCSSMatrix.html": [ @@ -538298,23 +546603,27 @@ "testharness" ], "css/geometry-1/interfaces.html": [ - "5381de7d65645da14f56f906363b00ffda90e524", + "c3ec6da200303fb99e86255eaf1da1e261374d39", "testharness" ], "css/geometry-1/interfaces.worker.js": [ "22348a0aaeec8dcd677b8f60486f2e043b8f8a86", "testharness" ], + "css/geometry-1/spec-examples.html": [ + "9cf446202e4527e26d113e36d2e7427ab32ce2f0", + "testharness" + ], "css/geometry-1/structured-serialization.html": [ - "6f38a37d56ffb9d2ddc17f7c4ed0613b7a5c8136", + "1cc9f91deb2cf68704f0f5cda77a3288f45d5c5a", "testharness" ], "css/geometry-1/support/dommatrix-test-util.js": [ - "d0f0c482648ac39ccaebe359880b079369a8ba21", + "999ac15d20bb22fcdb27ae7ebc526aea8f577b5a", "support" ], "css/geometry-1/support/interfaces.js": [ - "083416b9f77bf1d06802ca30b6231c2897f4348d", + "13d88ccf8c2f03db7e1db7f6fc704ba46a06e0e1", "support" ], "css/mediaqueries-3/OWNERS": [ @@ -538426,15 +546735,15 @@ "reftest" ], "css/mediaqueries-3/relative-units-002.html": [ - "1c2a7f8f80bdf454ff8e6ad88f6850d414939b0b", + "c533d6fead2ed27d02b826aeba0d8abbb45031a2", "reftest" ], "css/mediaqueries-3/relative-units-003.html": [ - "c8824d27b1e6e2949cdf7de040b5f2dbcd4ca7d8", + "e42e3e16ae2cc3c2c9679c653fcb9d6ab49e1c15", "reftest" ], "css/mediaqueries-3/relative-units-004.html": [ - "83fa4c3d9fbb3b08c5e0735d6505b531488a792f", + "1db0c6b7ee4aa554328cda73a7fab0bd373598c8", "reftest" ], "css/mediaqueries-3/support/media_queries_iframe.html": [ @@ -538449,6 +546758,26 @@ "4f4f13f66e77a41e97ee5035568f1e0944ec8b2e", "testharness" ], + "css/motion-1/animation/offset-anchor-interpolation.html": [ + "30eb3ea68aa502d93125d4e54ff15c0a96458cfa", + "testharness" + ], + "css/motion-1/animation/offset-distance-interpolation.html": [ + "f242f67f0d1a1c25a871d4ae949d42f9d1df0027", + "testharness" + ], + "css/motion-1/animation/offset-position-interpolation.html": [ + "6c21c93c0715af758033d7b582f072988b379b15", + "testharness" + ], + "css/motion-1/animation/offset-rotate-interpolation.html": [ + "37c091bd5a59d4853bc9f5c82e157ac3d4f29643", + "testharness" + ], + "css/motion-1/animation/resources/interpolation-testcommon.js": [ + "51a3f4808392b7bcce4f2569256c540a3be817dc", + "support" + ], "css/motion-1/offset-path-ray-ref.html": [ "dfea2bd9cadf9d1b83e95bc2dbffef3539937ff1", "support" @@ -538477,6 +546806,10 @@ "09f4897e2d2fa99303edb59e2872a9a373db3e26", "support" ], + "css/motion-1/offset-supports-calc.html": [ + "f893e408a6e958d0ac5b26489ffe10374735f053", + "testharness" + ], "css/motion-1/parsing/offset-anchor-parsing-invalid.html": [ "b48194c7ee35af7d114fd514f060ea9e8aae6372", "testharness" @@ -539018,7 +547351,7 @@ "support" ], "css/tools/w3ctestlib/Indexer.py": [ - "429ed09f00fdbb3107063b583e07d8eac9fc447c", + "7c34093692123e09035e8d322757d1a1865603ce", "support" ], "css/tools/w3ctestlib/OutputFormats.py": [ @@ -540294,263 +548627,263 @@ "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-1.html": [ - "e4b08019299f251b2b1f78e4ed6e00e6b1a24432", + "5f167290a8e0fff96660c1d6f3834382af86323d", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-10.html": [ - "573d05d34e2b2d001e3bcf135786ba6513125e56", + "13df1179a487d04b184b51869a313407cdf48fce", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-11.html": [ - "18642a0cd1ff83f21498c5d2fcc4b2e56d8daf62", + "de6c6eb0c34c82faaa74ca7ed34d1e819ef9cb6b", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-12.html": [ - "4aa1847a4835b79531259be970fa6da623ffd683", + "e213ba44ea00235462c9feed295521fe653f2a3e", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-13.html": [ - "8bdccc3b37dca395597b1bfb20f25be77565a62a", + "9401910b64ccec604bc048d6086b823ee1aca784", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-14-ref.html": [ - "0d6d2bf17823ddeb2c52b8b5a3fbb106a1ab73b5", + "e0c41c7d1ec9363b037d880657e0e181a0d52f95", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-14.html": [ - "0d657c2d443574e0881646b31c30ddbc885fe62b", + "c600097503bdff38dc268f4b4377fa5c684df86c", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-15-ref.html": [ - "ce1c706c674dfb34e7770f85fa64682de1796a90", + "00c20343e4cbc4c2c2c87d9f54536f7629162622", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-15.html": [ - "152e273ac4c8cef89660c878af8f457e9a5b7c27", + "13c0f7ccf422c9245588d83e81dfcc05d76b7f0e", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-2.html": [ - "59d2a436ff8d9a9b741e38bce33d09a5eeb0ffef", + "305733910f3bf2c0a3889c679d54d7159899205e", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-3.html": [ - "0fca663c14e1206a7d7ca6c23d220a7b1af863ab", + "e6432c6079d6cc2f3cd3574c2353d4003e424002", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-4.html": [ - "cab1fc96692923e5e8cf8e0ca49d844272b67029", + "12a0a0f2c9ea488593666a4c2ee9af34c07b85a0", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-5.html": [ - "2019b1d7e9b7e0cd1c630c54c60bfc89caf9aace", + "255e8c5ec21d9b4cf66c0a6577b27b49b9184518", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-6.html": [ - "fc87592f9a77cf74d6ab0bcf5c718d870b48ccce", + "eca811d7f25ab1f8462eb3a30175f0b9da1c1264", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-7.html": [ - "93b46d6167438e0f061bf463f5f35a92e916fd18", + "dff822e68bc08fc5a43299b36ef6908dbee3b55c", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-8-ref.html": [ - "111bdb377319e2ed730714de6bf71b0cfe5674c2", + "c145b739ba682678b7d9f7fd0ecca0748ad96e16", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-8.html": [ - "78a83467b7ca0d87aaaeac3d5edc043282619aa4", + "27f6d768ddc67fc14ee7ca3eb0854f240c947007", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-9.html": [ - "82aa9e7e8aceef6d34d4d4749efdd16e874ae120", + "7698520c971d95383777739b3a042505c6bdd145", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-block-page-break-inside-avoid-ref.html": [ - "dee091a8db848ef1340b83774737b4c9f432387a", + "46b88e89bc4498d4146a631c98348c499b417fc0", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-1.html": [ - "653bdbc83cd5eb99ee274e4a6e8e53a34476d5f5", + "d853136d910ea583c17a4a739d4e019319c096e8", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-2-ref.html": [ - "3971920b1153eabe2418b1c9db5e303b8c488cb8", + "475ee785150ecb75474eea87ba3744ee06363d22", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-2.html": [ - "5978697844c4434f91348e52ecf3e3c3d1a1708a", + "2a6baf15c0ce39ce82491fb186bdb5ec9aab87e0", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-3.html": [ - "9a9791057cd8e80d496d966ca36ffe9e08c62dba", + "3fa5a48021eb4ce82767445cf568c6a0b8a9c26a", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-4.html": [ - "83f4b3958fcbb47e1e9755d3163f97f099421bf6", + "cb6ebce8a023ca636bdde89947a84c54d9ac7539", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-5-ref.html": [ - "0f05ef82b0bf48c7d6b2c687866d57b4076edc4f", + "7030a5eefb553cfa149692ea1f2737b219c8657a", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-5.html": [ - "48cbf4b40b3a09ad99a884cc13b50fcd65775acb", + "c3125bc4cb0a96ff019e4a4c1dd697fb4f299acd", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-6-ref.html": [ - "6d13942114f74f971d739a16eab6f7b368f45612", + "920db8da9d6be4c23fffa5e1892fbc9434eb41b0", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-6.html": [ - "3d7482133885cc8a4382b8e4c748130d97d6b0fd", + "0db1ee3d037ffef1691eb51302dc21cd2761c846", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-7-ref.html": [ - "48395831cdaed18abae32eb5269ffd2c476d8741", + "d1a8405116d449a173efe12947df3702835f5cda", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-7.html": [ - "99076af8ebecc4df6988389fc6ed9a0ff5d67be6", + "227997da9f8d61033c6badc375f9254098a4b05c", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-8-ref.html": [ - "d6b77c08573ada206f15924ea5861088953c65b8", + "8afcabcdb0d59c26e38049b42cc0d5a49a6ba257", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-8.html": [ - "a87ff0053249f2752e5c3c2524ad0ed7b313705f", + "f1e90e52027349f9429f4f4a73d24cc365615e29", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-9-ref.html": [ - "31026483f18ee80e0ac7723d6a7fb13632a13748", + "7556b737511dfc97e0bd3880be7c4c8641cd94d4", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-float-page-break-inside-avoid-9.html": [ - "3376ba90eafdb984901fdca69ba7dd40a962bc56", + "afa49c092f67a226e47f865cee1bd90b29266569", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-inline-page-break-inside-avoid-1-ref.html": [ - "407b2a125b1435a8ca7fe0b3c31a68f17f3faf2c", + "dc2d651f026037400b08173ea6e3caa37f4aacb8", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-inline-page-break-inside-avoid-1.html": [ - "4ec1b253ebe3393006fe343c7298283cb6a3bc26", + "035fe2c4d538ff07db03de65330451bf7adb8c76", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-row-page-break-inside-avoid-1.html": [ - "ff1816e3ccdc344d3bc81fa1174167f99218a329", + "5760f548a6372180ba67a3307979d68dca96a3a1", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-row-page-break-inside-avoid-2.html": [ - "f8ddba7940da0f948dcac8386c71387a1d163ce0", + "c3cd757aa6c280a5da5d6bca362474bb57b4fcfb", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-1.html": [ - "50a3ecc24a4615e10d557f605a7233100ec5e56c", + "384f11d655bfdba7a725ca3120c07e6363dd59e5", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-2.html": [ - "2c58c0d437054a9fe2384fcd8f45ca2febd2ae95", + "66089b4d810e3be098b721a00c1acfe757e99c75", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-3.html": [ - "84a2fd476bd635fb0967669dd625cde336a4850f", + "3600766573575c63306ca0a0e837f125551e804b", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-4-ref.html": [ - "60ac2a7696d0027b617506a39149ddd8aecf3ee5", + "5c4c9033141cec9cd85492abb0a911e80c08f291", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-4.html": [ - "d9c87fb3a27ece6f45077c00c2f8681973cfb991", + "f379dc4e8c15011c73b1a8c36e68d321baa1e4df", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-5-ref.html": [ - "03aaf328bdb4b7649a438b29404020e48c5110f2", + "36ada19833858467356cecfb7dcc8207e36b3b7a", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-5.html": [ - "35617acaefc679da0fbc694209fa137bff0787c4", + "68607b5bb39061988a9a8c5862bf88d35430697d", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-6.html": [ - "3e8e871fb27787e834736af3d671f7e7254f7e76", + "648aa0a0c21a6c54e24ef7729daa29292d420a39", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-7-ref.html": [ - "24c53bd5d709ef3205f799f1eb01802ac95971a8", + "04b813e10c97c04d86957aa4bc3da00651fcb6fd", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-7.html": [ - "414732490d4de2d9b27d663e277f78eda4814951", + "c0cb4962090a48b4ecdebcf67248f1b71a2f6cec", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-8-ref.html": [ - "e15a19db56314596ff63dd778cad326393674812", + "9ccd76a3d7a7ca9523ebc04d5d4798bb82d01f16", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-rowgroup-page-break-inside-avoid-8.html": [ - "3a8522802c796a4ed95e4c93fd55771d49c1bc12", + "72037332e3bd9d068617d14f59203cfa35ce6d55", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-1.html": [ - "f456d5c6fc113b33ccaaf5fdd80a4627693406da", + "5cce795a43ba0eeb0ba04cd94b20b40d11eab2bb", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-2-ref.html": [ - "819d83e74de44f0ac1cd91f13963a912332a8208", + "461188c6d1cff9107cfa260621adc3ba7a1f4cb9", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-2.html": [ - "c60b7f868ceceb18db02c9dd50e12d1a3a0e8266", + "879a988b381eb86531f979f9612ef6cfacec1cb7", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-3-ref.html": [ - "46c5d46e19e0a3ee0e68bcb640df670fc10089cf", + "183997ca0a35d5551f3b7c4b6fc8da76c3195982", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-3.html": [ - "4815bed7023164118396bb6659ddec27b4165446", + "bcbc942356ddef43f57215c059fdb34c0f5fc559", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-4-ref.html": [ - "fe5c8cae7811f585a5ff76e8bf8770e9e66e4187", + "7f35fb3b7b2c41dbbf9647a078a41069c1064049", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-4.html": [ - "a17dcc0255b4fb34cd8074391c658feae43bba62", + "d18f1c4e05d023c50249d3ac56503a7e6757f6da", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-5-ref.html": [ - "84f95c890e10c5faf1c46c28a440b2f28c3cd094", + "204abe8488984c5bb452b760ab206f5f9ff863d6", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-5.html": [ - "c15af49e50dc4d38bbd967fc4f9a207d831460f1", + "07d3217544325f8f3a6f748a7be2b5dffe6010e3", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-6-ref.html": [ - "1d5d19229560979682c0afb22e2e4915a360ec74", + "9137427b3b9fd00c156f46e9277cdac99e4258b1", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-6.html": [ - "a06c8eba7abd93591dd2f76ce247d52cb574e901", + "4b3e779f2b05a21d3cb4f840f291a93dcf7ef7fb", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-7-ref.html": [ - "f03108960c0188835664433ade1377bb101f5998", + "ccda860d8bb4b82ad137e2a680082844cb55efd4", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-7.html": [ - "ec38ad5c5b60693ede3924a51688ce515bb9833b", + "b10e3e94828781210b3136e708666752e88f4b70", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-8.html": [ - "2caf007ce1003adf91f53d319979eb671ab44a8d", + "3b234a27c8f1a92ab0b315c914826dc21e3fb342", "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/moz-css21-table-page-break-inside-avoid-ref.html": [ - "0c770671686e5437f7baca2beab8ea77f56eda27", + "8958a105c537bf438ee318a0ad56e278b168a0cf", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/css21/pagination/reftest.list": [ @@ -543458,7 +551791,7 @@ "reftest" ], "css/vendor-imports/mozilla/mozilla-central-reftests/masking/reftest.list": [ - "d591c5c591aaea8725b58fc8af66819208ebd2ca", + "9943729d968c8515e79ffd1ca44ba50e0841c20c", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/masking/support/50x100-opaque-blue.svg": [ @@ -543534,11 +551867,11 @@ "manual" ], "css/vendor-imports/mozilla/mozilla-central-reftests/multicol3/multicol-height-002.xht": [ - "15988661cfe37abd0c3e8e26238b8b5c6c74ea5e", + "46fd36d04284c70506e8d8cf0ee0311c14a3f9f3", "reftest" ], "css/vendor-imports/mozilla/mozilla-central-reftests/multicol3/reference/multicol-height-002.xht": [ - "a2d8c2ad7f3a817197cecf34385547d909119820", + "30d0428647c64f8d4a56f36748a6dcc0eb90e25d", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/multicol3/reftest.list": [ @@ -544542,7 +552875,7 @@ "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/reftest.list": [ - "a4079eb56e660e9f0759e83296ea8d1277e02310", + "3d686cfc2e832a735cc69da4e62b5fc82ff981db", "support" ], "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/ruby-text-decoration-01-ref.html": [ @@ -544581,6 +552914,14 @@ "4f9be0cd4fc10ed6008d7ec2f8de48a94fb42b5d", "reftest" ], + "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001-ref.html": [ + "85a469e9e7869feae254140cd52db2b3d99694bf", + "support" + ], + "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-decoration-propagation-dynamic-001.html": [ + "aa2ca2f4711295e6380ec2ea6d04b7403a18e761", + "reftest" + ], "css/vendor-imports/mozilla/mozilla-central-reftests/text-decor-3/text-emphasis-color-property-001-ref.html": [ "f83e7f5ef7037c15e922446ede24aed63770eb4e", "support" @@ -546094,9 +554435,17 @@ "reftest" ], "css/vendor-imports/mozilla/mozilla-central-reftests/values3/reftest.list": [ - "00d76f8a726f2174d079efecd88de0ffb360f53b", + "2c5def94727ddf9e6e20ab3926803cd6782c747a", "support" ], + "css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1-ref.html": [ + "dd176574ec62fb640bd053467b49cc9f591ad157", + "support" + ], + "css/vendor-imports/mozilla/mozilla-central-reftests/values3/rem-root-font-size-restyle-1.html": [ + "2b6afe6276b93022260dd10eb4c39d858cce577e", + "reftest" + ], "css/vendor-imports/mozilla/mozilla-central-reftests/variables/reftest.list": [ "2bc1154ca1e033ded743efb780fff7808f3148ec", "support" @@ -563405,130 +571754,6 @@ "62235c50272a72b79e4cb25736f20c66db2bdee1", "support" ], - "css/work-in-progress/microsoft/css-tables/base.css": [ - "cb31986a92c4e431c1882e241cdbaf96ca882fd9", - "support" - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-1.html": [ - "09bbaf166fa04e3b35794a2a0a85541f44f811e9", - "support" - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-2.html": [ - "d53df3d1f867c5ef69324bf66d1e44eb6cc40d56", - "support" - ], - "css/work-in-progress/microsoft/css-tables/bounding-box-computation-3.html": [ - "9df872172f858cb2df9eb2673206bb427f71f81c", - "support" - ], - "css/work-in-progress/microsoft/css-tables/caption-side-1.html": [ - "6506b9d5b926c8f74235bf5eccb3437801728e3b", - "support" - ], - "css/work-in-progress/microsoft/css-tables/fixed-layout-1.html": [ - "803017420fc43c6ea36f57d009bbe9030d8a9f6b", - "support" - ], - "css/work-in-progress/microsoft/css-tables/fixed-layout-2.html": [ - "bab3af419cc2243715ddff839828169e8f0b2e83", - "support" - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/computing-row-measure-0.html": [ - "1c9027b4317dd990cd01cd7a4b2db9838a5574cd", - "support" - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/computing-row-measure-1.html": [ - "61ef69a72b0307506df6277f9fb694e4589114d2", - "support" - ], - "css/work-in-progress/microsoft/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html": [ - "442cdb710e53dc8705f4aa3641ac849ba874e5d5", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html-to-css-mapping-1.html": [ - "f11a5c7c6ce8a264789f59820f3262c4a281741b", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html-to-css-mapping-2.html": [ - "f17c742ff09402355799f190c505ffa408609157", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-1.html": [ - "d9727fd1d9c3b711360ed97ecbba24d179a08847", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-2.html": [ - "5967f05120b4338f606546070b1a889503998047", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-3.html": [ - "92f526a695fa5bc53e6e64272c7b0119e144f6f7", - "support" - ], - "css/work-in-progress/microsoft/css-tables/html5-table-formatting-fixed-layout-1.html": [ - "e06bd936c60251f5fc57433d773c961274525e21", - "support" - ], - "css/work-in-progress/microsoft/css-tables/markup-generator.html": [ - "fbaac74233746fa6a82a0ef6c8536642f87ee8fe", - "support" - ], - "css/work-in-progress/microsoft/css-tables/table-model-fixup-2.html": [ - "fbba92722349247b88b5f617b6e83e666b326331", - "support" - ], - "css/work-in-progress/microsoft/css-tables/table-model-fixup.html": [ - "52c4184ac3821b8dc0145f8b2ef0056579820904", - "support" - ], - "css/work-in-progress/microsoft/css-tables/visibility-collapse-col-001.html": [ - "1f1f0d71a8ae5047f54947874cf8eba5a8ff9837", - "support" - ], - "css/work-in-progress/microsoft/css-tables/visibility-collapse-row-001.html": [ - "a394aeb3b5549f4cbbd5752e089fb95f310d1e77", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-column-measure-0.html": [ - "04c271cc480b5daf958840ec79b953bbb48961a2", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-column-measure-1.html": [ - "15ee7b380c6de4e20cd33c8543f083eec2b91f4f", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-table-width-0.html": [ - "c1f6bd30f79ef0c6d128782cbe4fe1e79cd90c6d", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/computing-table-width-1.html": [ - "a62ae8535c9b897600dcba6c0c859cb8cd5df53e", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-1.html": [ - "4682ed687deb81cf1a0b2d4677301bf45dec7576", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-2.html": [ - "4682ed687deb81cf1a0b2d4677301bf45dec7576", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-guess.html": [ - "79ac2e7b0dee9c850c31d7cab695c7359ed06a00", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-percent-guess.html": [ - "8516ace74e2ad17055a0b68476b49b0e21fa1b1e", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-specified-guess.1.html": [ - "9f0f30a6d1f4f81206830d8168c91da4eb8cfbd7", - "support" - ], - "css/work-in-progress/microsoft/css-tables/width-distribution/distribution-algo-min-content-specified-guess.html": [ - "06eedc341154f88c9e4b0720ce3df746b201d776", - "support" - ], "css/work-in-progress/microsoft/emboxes.png": [ "285e8d52b1493075c2388f84c1c5f8b3359d736d", "support" @@ -565470,7 +573695,7 @@ "support" ], "css/work-in-progress/opera/OWNERS": [ - "3a52efa37cb05c353bb8ce78146c42db6a238b74", + "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc", "support" ], "css/work-in-progress/opera/animations/0_as_keyframe_selector.html": [ @@ -566105,2092 +574330,16 @@ "1d659bc322b61f04f442253fcc0b3de70a28ca97", "support" ], - "css/work-in-progress/ttwf_bj/Along/reference/ttwf-reftest-borderRadius-ref.html": [ - "5629b8badd92036ab58c3e03b8abef2f7ae4fb38", - "support" - ], - "css/work-in-progress/ttwf_bj/Along/ttwf-jstest-borderRadius.html": [ - "02332d1feabb8e3fcf56fb41427f83388126214a", - "support" - ], - "css/work-in-progress/ttwf_bj/Along/ttwf-reftest-borderRadius.html": [ - "05fb216e8ff5da4f8b9d1c463a9fec89474d7219", - "support" - ], - "css/work-in-progress/ttwf_bj/Chris/elementFromPosition.html": [ - "e057a8d20b11971d3acf7c6d54d6e206fc95e52c", - "support" - ], - "css/work-in-progress/ttwf_bj/Chris/reference/ttwf-reftest-borderRadius-ref.html": [ - "5629b8badd92036ab58c3e03b8abef2f7ae4fb38", - "support" - ], - "css/work-in-progress/ttwf_bj/Chris/ttwf-reftest-borderRadius.html": [ - "921a94f6a4c9776aa24ece94f0d3dca1676d726c", - "support" - ], - "css/work-in-progress/ttwf_bj/Chris/ttwf-scrollintoview.html": [ - "5d486ed5b6d1b127e2cfb5bd2446d4f8daca1c52", - "support" - ], - "css/work-in-progress/ttwf_bj/Chris/window-screen-height.html": [ - "546b06a2e3606afbfb075732f2c8755b04a80e20", - "support" - ], - "css/work-in-progress/ttwf_bj/angela/background-clip-color.html": [ - "f187c766e5652aeaa7651584f1c61e078c42ab11", - "support" - ], - "css/work-in-progress/ttwf_bj/angela/background-clip-image.html": [ - "5bcd80473626041d9ea57315c62af348f585cb0e", - "support" - ], - "css/work-in-progress/ttwf_bj/angela/reference/background-clip-color-ref.html": [ - "f56c2929351413f41c19c424e4bddc1fcedb2926", - "support" - ], - "css/work-in-progress/ttwf_bj/angela/reference/background-clip-image-ref.html": [ - "ec78b9cc7a2ed94c5e1a914b621320d2c957815b", - "support" - ], - "css/work-in-progress/ttwf_bj/angela/support/img_star.png": [ - "a74f874259ac227ec6d5ef04d17c4529ee17018f", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images-002.html": [ - "12624cd4af2fedf396b366a56b62e61147f2fd92", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images-003.html": [ - "7ad22f15cbbe7fe972aa895a50f0b960dd9e1b84", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/border-images.html": [ - "89a5af9b54bc6437fa9f51ebb57ef0275b53cbc5", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image-002.jpg": [ - "c6cb42d2d0403241f1c34c48f3754d2493b1e033", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image-003.jpg": [ - "51096d4968daf2c5766311c0025899ee33db5c4f", - "support" - ], - "css/work-in-progress/ttwf_bj/babyliner/images/border-image.jpg": [ - "2830a5fda951cdda2c473d7a68a12e03368e68f4", - "support" - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand-missing-bottom.htm": [ - "7a8d0d35f406298858181a469da9bac73cf9232f", - "support" - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand-missing-left.htm": [ - "610f0e3eb45a98a2024b4343cd24daa224a70ccc", - "support" - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color-shorthand.htm": [ - "1afbe38637bbddd805b9450d997035d4b5b4c414", - "support" - ], - "css/work-in-progress/ttwf_bj/disound/ttwf-css3background-border-color.htm": [ - "1fd21d4cb8e32247dd1cd741fe113f875c167e06", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box.html": [ - "19d29da795799fd859289856cf47859ffc5353e2", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_position.html": [ - "5d3fdcf7c9099124916bfe4b2db3068c0f358e1c", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_radius.html": [ - "357a4c7630df26e1cbc809df056df59d7ba34949", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/border-box_with_size.html": [ - "f77aa1c6b0092fa7d22a5e23168ddb6f334f71a2", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box.html": [ - "0778ce4c86a6c866e9e55738e35067a49d0bbc23", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_position.html": [ - "f473a425b75316c0e653898738d4ff92f952fa05", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_radius.html": [ - "f97ad2db691772c56a0f0d15ed125c388f431c8b", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/content-box_with_size.html": [ - "0ab4aefd6a759fa55eeb935c200eb4de3533b0e2", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/list.txt": [ - "51b104b69911943bc5469c093046d5c0eb45334a", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box.html": [ - "535715a1a94874e9c42e6a4616b4f52cfceff64a", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_position.html": [ - "c2a283798011da68803c07273a9bc05adee8d311", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_radius.html": [ - "ea0975f291c89b491902a8e4cf360fc509f4599b", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-clip/padding-box_with_size.html": [ - "49068c38bc46b0fe11205c4ad9f238b1dd270bd6", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box.html": [ - "5489d0025ee93402840add48a58a2f2d9ad57883", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_position.html": [ - "c5fe6d5a80202a11180dcf61b92417739cfc9b93", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_radius.html": [ - "69434fcaf52a8bfae1194654367ab215cb6e8c3f", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/border-box_with_size.html": [ - "78fa6eb0c6a187babd1eb08cf05e76d038671c4e", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box.html": [ - "7e600c87265ac241578117be2f731437a361eed4", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_position.html": [ - "b46d01de97a612cc00871161563129d0820de5f6", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_radius.html": [ - "6c77c5792dabb4fe28239cf47eebdb3ee35ecb92", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/content-box_with_size.html": [ - "3b57b21333f7854382cd47e1dec9f4369b95ebd2", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/list.txt": [ - "d1f96e9ca006ac04e30d1232b2ea9aec79422514", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box.html": [ - "216f6cb1f26dbf341e74b390b62bef31623c2c2a", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_position.html": [ - "a38eda56f63457063d1d672410862e2218df6da8", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_radius.html": [ - "2f2429ee4b3061964af1a68b4d2ff4467ef14398", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/background-origin/padding-box_with_size.html": [ - "dd7c33dd5f0c5b1b9b60eb6ce7e7af3d6337c1d3", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/resource/border.png": [ - "c643564c8b6ff76e3e482414f3f722abfea4d43f", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/resource/css3.png": [ - "cffdfbbfddbaab163c15a1346b07756af722b900", - "support" - ], - "css/work-in-progress/ttwf_bj/finscn/resource/ttwf.png": [ - "06529bfcb786f62f4b702d31ced5668bd3dfd76e", - "support" - ], - "css/work-in-progress/ttwf_bj/henry_d/border-image-001.html": [ - "48735d54f3a687908efb9272ad5695d5eafb5d53", - "support" - ], - "css/work-in-progress/ttwf_bj/henry_d/reference/border-image-ref.html": [ - "20fbf25db32b6e292fe214e7db4671d817588846", - "support" - ], - "css/work-in-progress/ttwf_bj/henry_d/support/bt_blue.png": [ - "b84ede428db1255ddc5279e3a1e49065345cfafc", - "support" - ], - "css/work-in-progress/ttwf_bj/henry_d/support/repeat-x.png": [ - "fd78d4ff2efd2ab86c83fca420ee1671f5d0029f", - "support" - ], - "css/work-in-progress/ttwf_bj/jieorlin/flex-justify.html": [ - "bca5db70da493941a80ea4c33cb8e1c871a1e1d0", - "support" - ], - "css/work-in-progress/ttwf_bj/jieorlin/flex-min-auto.html": [ - "5edc96a3e46fa2d0c8ff07f4080a495f89044ddf", - "support" - ], - "css/work-in-progress/ttwf_bj/jieorlin/reference/flex-justify-rel.html": [ - "4fd88473ca79960aef9a44c1c227537f359de52d", - "support" - ], - "css/work-in-progress/ttwf_bj/jieorlin/reference/flex-min-auto-rel.html": [ - "2deae7bcbc79bfb0903ab466e0a3050f03b00afc", - "support" - ], - "css/work-in-progress/ttwf_bj/jingke/cssom-view-window-pageXOffset-return-scrollX.html": [ - "9847f906c578dd764573d3a85afd620146433c7f", - "support" - ], - "css/work-in-progress/ttwf_bj/keynesqu/Flexible-order.html": [ - "229fb3a4b4c161487d9984487a729827b82ad100", - "support" - ], - "css/work-in-progress/ttwf_bj/keynesqu/reference/Flexible-order-ref.html": [ - "a55811f49a0b4cce1bb84fc36cefc60875c4df9d", - "support" - ], - "css/work-in-progress/ttwf_bj/neo_and_rayi/extensions_to_the_HTMLElement_interface.html": [ - "25ebea62b5ac021afd6119021cc74eaf6e683896", - "support" - ], - "css/work-in-progress/ttwf_bj/peter/flex-align-items-center.html": [ - "ef269a71e8994eaa7205a07814a829d11ae0ef8c", - "support" - ], - "css/work-in-progress/ttwf_bj/peter/flex-items-flexibility.html": [ - "c9205d92cd01539603f380f1a6278f45a3f9dfe0", - "support" - ], - "css/work-in-progress/ttwf_bj/peter/readme.txt": [ - "2a75563a8c299b4d550dc48d671414c3f76cc316", - "support" - ], - "css/work-in-progress/ttwf_bj/peter/reference/flex-align-items-center-ref.html": [ - "4a49ba506121217ad2ed8c0cbe3bfb7aac1d4971", - "support" - ], - "css/work-in-progress/ttwf_bj/peter/reference/flex-items-flexibility.html": [ - "cde22c71329e8e2219d32a64e19ded42e4d48ec2", - "support" - ], - "css/work-in-progress/ttwf_bj/phuangce/flex-margin-no-collapse.html": [ - "2dd7718a8c762d199fe0eec0a38bc7b422cc1d10", - "support" - ], - "css/work-in-progress/ttwf_bj/phuangce/reference/flex-margin-no-collapse-ref.html": [ - "a4f33b81904ca80623b149d957ea377e956a799c", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-repeat-round.html": [ - "58e87e661a9d30de2f7226e8c89d4d9fe5d14223", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-round-and-stretch.html": [ - "b9fcee63fb28e1b08f3bec8ca96ebed20ea64cbe", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/border-image-slice-percentage.html": [ - "d631e470cf01175f72926bf9b1ed5fd6edd0228c", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-repeat-round-ref.html": [ - "370a9d0481d0ea9c6b529705d8bfbe05a92fd439", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-round-and-stretch-ref.html": [ - "c245b8c2487c81fc110460d4756301c556c1ba28", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/reference/border-image-slice-percentage-ref.html": [ - "370a9d0481d0ea9c6b529705d8bfbe05a92fd439", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/support/border-image-round-result.png": [ - "daa6f0aaeba7a819a0a222ee93a2947f8cfa46f3", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/support/border.png": [ - "c643564c8b6ff76e3e482414f3f722abfea4d43f", - "support" - ], - "css/work-in-progress/ttwf_bj/renjing/support/borderresult.png": [ - "62cba9dc4573e93e295c86fffe950da9346f2fc0", - "support" - ], - "css/work-in-progress/ttwf_bj/tang,shaofeng/border-image-repeat_repeatnegx_none_50px.html": [ - "4e07c2d7cbdb4c46e11dd0c529ea3766cf253b0a", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/css-border-radius-001.html": [ - "2a3f3359a4737dcf387c4cfa9b2981b130f2ad6f", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/css-border-radius-002.html": [ - "fb7e3a84777551d59cacd49fdb1befadb14639dc", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/readme.txt": [ - "105bbfce95d9e9a30e8f0f9e44c5faef8410ca44", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/reference/css-border-radius-ref-001.html": [ - "9623632651093bf4504719b2450f2ec07792a0e2", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/reference/css-border-radius-ref-002.html": [ - "456cf03ce09bbc22cc2a7b9bbc3622aa1df31e7f", - "support" - ], - "css/work-in-progress/ttwf_bj/tmd/reference/y.png": [ - "48da44d12b4e410770c53f50689c1f5b1cd32bbf", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-boxsizing.html": [ - "0fd269130a76ce02824e8b3039ce74dcf20dd256", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-childmargin.html": [ - "e295faf87efbae31fe7123119f0b1032bb3efdee", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-flex-prescation.html": [ - "cc92fb2eb2318436d241910ecba07a1fd39519f5", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-margin.html": [ - "75f5e35b1375971c0267f5893aa6450b5bb712d5", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-padding.html": [ - "313fcbab7b9f6dba6fcf87ce84639dd85c9ebcd0", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-percentage-basic.html": [ - "fc3115dc59e78c85002f0c342be70e2a15335baa", - "support" - ], - "css/work-in-progress/ttwf_bj/winter/flex-flexitem-percentage-cascading.html": [ - "07d90a2aa93499ca3229767077a23b184dbc766d", - "support" - ], - "css/work-in-progress/ttwf_bj/xiaochun/background-size-035.html": [ - "d68280bbcda9a3fadfa3fb7f073fda2afb254738", - "support" - ], - "css/work-in-progress/ttwf_bj/xiaochun/bg.jpg": [ - "3ae2171caaa4e4efd309c1669dd7461e3df77172", - "support" - ], - "css/work-in-progress/ttwf_bj/xiaochun/reference/background-size-ref.html": [ - "27041db6d7f3abc1c7b55289a5e2e4dde5aa8527", - "support" - ], - "css/work-in-progress/ttwf_bj/xiaoyan.jxy/background-clip_padding-box.html": [ - "6af7e7f2d894865f5ef7f043e2ad2f3727db0d7c", - "support" - ], - "css/work-in-progress/ttwf_bj/xiaoyan.jxy/reference/background_clip_padding-box.html": [ - "1e0778a163d623d272321fdc6fd5c8732a3d4007", - "support" - ], - "css/work-in-progress/ttwf_bj/yuhong/css-backgrounds-sizingimages-001.html": [ - "3cde64cfff31a122f266c38f0bc435945282a4f9", - "support" - ], - "css/work-in-progress/ttwf_bj/yuhong/reference/css-backgrounds-sizingimages-001-ref.html": [ - "d8ea3e17a625e60b60775c3d666be6ac56ec8b66", - "support" - ], - "css/work-in-progress/ttwf_bj/yuhong/support/test.png": [ - "fbbebe5c65335c81cf6d9cd761025385804b7962", - "support" - ], - "css/work-in-progress/ttwf_bj/zhangxiaochong/box-shadow-outset-without-border-radius.html": [ - "1e710427338cc278a36ee18861c1e5dd0bf1eaea", - "support" - ], - "css/work-in-progress/ttwf_bj/zhangxiaochong/reference/box-shadow-outset-without-border-radius.html": [ - "c372b6c821f526e614c72f8ac2d172f6a238a5f0", - "support" - ], - "css/work-in-progress/ttwf_bj/zhouli/border-radius-clipping.html": [ - "49180352b5e78370562a69b4649d1dc07a9efb6a", - "support" - ], - "css/work-in-progress/ttwf_bj/zhouli/flexible-box-float.html": [ - "b0ccf708b5ef32033c732da5fa0e08808ca1ab1e", - "support" - ], - "css/work-in-progress/ttwf_bj/zhouli/reference/border-radius-clipping-ref.html": [ - "fc7beb3afaecb1f2facda42496da4531369c04b3", - "support" - ], - "css/work-in-progress/ttwf_bj/zhouli/reference/flex-box-float-ref.html": [ - "13401bfeec43c7e2458694e3019f6ff13bd9dc45", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/box-sizing-border-box-001.html": [ - "b31ddb6b5b7a7f527a359d9dc3b4b191d431215e", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/outline-001.html": [ - "a7552987c6cf47f2bd9e499580f9d2633a46bdd3", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/outline-002.html": [ - "589fea0d945067dbec945801ae8b5ac5551d2deb", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/outline-offset-001.html": [ - "c5a2fbb0fc639aed4ab8fcc49f43efd20461de5d", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/ref/box-sizing-border-box-001-ref.html": [ - "79a0a2b8bf11a8a210612d79f1ce3f6da6b4ef6b", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/ref/outline-001-ref.html": [ - "22ca261454be5cc06811b4c35e3041ee5f28823c", - "support" - ], - "css/work-in-progress/ttwf_seattle/justh/ref/outline-offset-001-ref.html": [ - "4e46126797b9d08b7529334dd4203c041bd222d4", - "support" - ], - "css/work-in-progress/ttwf_seattle/tonychyan/css-transform-combination-001.html": [ - "e5f167beddcbbebef54ca3c836de3672066f28e4", - "support" - ], - "css/work-in-progress/ttwf_seattle/tonychyan/css-transform-hover-001.html": [ - "f6ba5e9a71f338c04c797811314886bace0667ba", - "support" - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-bothlines.html": [ - "3f842fd773422ade3a4b40bbd13135160715b468", - "support" - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-firstline.html": [ - "5acdf9dd1420177f8fe43308ec9720b0afa28034", - "support" - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto-notallitems-secondline.html": [ - "3ebf80d4aa9c8d274e029f96c46e2b0984c75764", - "support" - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-auto.html": [ - "c185305ac17ff3d8b187d8273aad7c1f5ca86816", - "support" - ], - "css/work-in-progress/ttwf_seattle/vbora85/flexbox/submitted/flexbox_flex-order.html": [ - "eb33ad653f83d8027a8e41f4f937f4964371f20e", - "support" - ], - "css/work-in-progress/ttwf_sf/achicu/css-exclusions/exclusions-pos-01.xht": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-green.png": [ - "51e7b6974a09eda6cb31337717c5eaeb9c44b443", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-lime.png": [ - "b040eb633a35c0648ad72a2902361faf25bc419d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-maroon.png": [ - "f78757e5ebe897bd618d100718385c84e00f2369", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-navy.png": [ - "a3fd80b2c79866fd343e18eef5a51ed6e835e53e", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-red.png": [ - "b8da86921d04ba42f42b0a60b03c5c2172f58c2b", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/1x1-white.png": [ - "71b246439f915ad21c7d39414d9f85c8ed73b4ca", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-gg-rr.png": [ - "e4843d42a26189132e1bdd53e8618521330baeca", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-green.png": [ - "2f8eb2409b0a18e0bff90725ec7eedc16e7be448", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/60x60-red.png": [ - "415b835abaaab822aab11880354296e7356bbb0a", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/README": [ - "c46bfcee920aef0b9167764ec78c699ed217c8f2", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/a-green.css": [ - "a9716c222274ba868bfd06c05e28cb7762d93245", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/b-green.css": [ - "eb78a4d12f35b4249051826ea000c53d04df80b7", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/c-red.css": [ - "dc288b7aa49b57e0abf803741e78582ba5ceffdb", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/cat.png": [ - "461fd17b274662b88500cdf42bab7f3b79e6019d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/import-green.css": [ - "db4f420efdb292d6520be1a3bf052ed3f6f9e7e3", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/import-red.css": [ - "0f2b9133fcfa22d5506a5cee307bd1a4d50e87e9", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-gg-gr.png": [ - "d2c08ac27993be891c9f01afedc4681d73b6c6bb", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-grg-rgr-grg.png": [ - "cfb6ecc271c296c69b133a81f350a777b608bea4", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-grg-rrg-rgg.png": [ - "27080d4df556f59d4b501e03f2847bd9da5756a9", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-rgr-grg-rgr.png": [ - "c100a35c361205932c506f1b3399753b91e4c45e", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/pattern-tr.png": [ - "c1e687deee7b79ae091f2b42c4f6cff430076444", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-h-50%.png": [ - "9364be82a07500d6684a275174bcf5185444cb52", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-h-50px.png": [ - "b3d7cc680b20a5fc44ea93f7df6d33894bc7b09b", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-v-100px.png": [ - "d8b49696edb2bd614e9c00f96e7862798b6e621f", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/ruler-v-50px.png": [ - "eb299dc261ec04c8f2c11afb6f7a1c2ec147587b", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-purple.png": [ - "ef0619128f22e05920930420b7d96f91f860d904", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-teal.png": [ - "92efae44b710cf1ddd9ba96e593dae03fb2519c4", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/square-white.png": [ - "2f93fcc1462ba32b9b7899e5e78c869e529e68ee", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/README": [ - "18698bf71d328054eba0b473486058bc9286c1a4", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/swatch-green.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/support/swatch-red.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-blue.png": [ - "e79958e10feeeed3db88dee9bae9ea80055593c5", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-green.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-lime.png": [ - "ee2cc3dcd6d8dda7c0e4ef3bbc7e63c74118211d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-orange.png": [ - "10768a5177b772013e628c7397ae64725057295d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-red.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-teal.png": [ - "994cd98028aff20822f2dca5a6058fb616bf5ce4", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-white.png": [ - "5bccb1922de065e551d7d106e6493bb91040f3da", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/swatch-yellow.png": [ - "9cc73897c2e1fc45f5224d81d02a6b87bf72b1fa", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-bl.png": [ - "16e4eaa4864c10e72433e575f59c9b67763fe06a", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-br.png": [ - "37f65e7a21d9b9b2daa508f193b8f665c58a1ce9", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-inner-half-size.png": [ - "4ed63dd2bb54a8efc166719e00e1e27406b0ee59", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-outer.png": [ - "a0b8dfa40065b27f1d939ce0aab39ada3933c574", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-tl.png": [ - "956e5156fd8c0e75b1c0f3b8b3b900b653663f74", - "support" - ], - "css/work-in-progress/ttwf_sf/betravis/support/test-tr.png": [ - "078e1dd6dd61d36cec239ed75d02051f61fe60a5", - "support" - ], - "css/work-in-progress/ttwf_sf/chrissanborn/css-transform-scale-001.html": [ - "53ab522b158a025114eda53359e56dc9fd09722e", - "support" - ], - "css/work-in-progress/ttwf_sf/chrissanborn/reference/css-transform-scale-ref-001.html": [ - "c017e29e830d1d655da880de8724c3458908cadf", - "support" - ], - "css/work-in-progress/ttwf_sf/chrissanborn/reference/css-transform-scale-ref-002.html": [ - "f4636bd7bb85a86d7c6f59e739df75043a1702da", - "support" - ], - "css/work-in-progress/ttwf_sf/cjgammon/css-transforms/reftest/transform-origin-01-ref.html": [ - "fce8f9666c43ef68c14cf2f877d80954c21f9a03", - "support" - ], - "css/work-in-progress/ttwf_sf/cjgammon/css-transforms/transform-origin-01.html": [ - "6a182ba5ea92086d69f688893f4f5d48d1ee4a00", - "support" - ], - "css/work-in-progress/ttwf_sf/cshoop/medialist-creating-object-001.html": [ - "6186630d5620d20d8e84d055b3b8171f63d8372e", - "support" - ], - "css/work-in-progress/ttwf_sf/david/background-position-center-001-ref.html": [ - "145109c370850966318df2d890cd99760fd78239", - "support" - ], - "css/work-in-progress/ttwf_sf/david/background-position-center-001.html": [ - "ed942e5dee576261aa0b4ea676adf4a78aa29264", - "support" - ], - "css/work-in-progress/ttwf_sf/david/border-bottom-left-radius-001.xht": [ - "0b0beae9c2e39017fae4dec95e02cfc012683de8", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-green.png": [ - "51e7b6974a09eda6cb31337717c5eaeb9c44b443", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-lime.png": [ - "b040eb633a35c0648ad72a2902361faf25bc419d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-maroon.png": [ - "f78757e5ebe897bd618d100718385c84e00f2369", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-navy.png": [ - "a3fd80b2c79866fd343e18eef5a51ed6e835e53e", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-red.png": [ - "b8da86921d04ba42f42b0a60b03c5c2172f58c2b", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/1x1-white.png": [ - "71b246439f915ad21c7d39414d9f85c8ed73b4ca", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/20x20-green.png": [ - "524a74a7759d730be8e2c85c04d23940c26b8911", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/20x20-red.png": [ - "32cea4ee0ecc6103820c2699755e61e3a0b82ec0", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-gg-rr.png": [ - "e4843d42a26189132e1bdd53e8618521330baeca", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-green.png": [ - "2f8eb2409b0a18e0bff90725ec7eedc16e7be448", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/60x60-red.png": [ - "415b835abaaab822aab11880354296e7356bbb0a", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/a-green.css": [ - "a9716c222274ba868bfd06c05e28cb7762d93245", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/b-green.css": [ - "eb78a4d12f35b4249051826ea000c53d04df80b7", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/c-red.css": [ - "dc288b7aa49b57e0abf803741e78582ba5ceffdb", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/cat.png": [ - "461fd17b274662b88500cdf42bab7f3b79e6019d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/import-green.css": [ - "db4f420efdb292d6520be1a3bf052ed3f6f9e7e3", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/import-red.css": [ - "0f2b9133fcfa22d5506a5cee307bd1a4d50e87e9", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-grg-rgr-grg.png": [ - "a188423017146630d9cf6c89e738b5decb7011d9", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-grg-rrg-rgg.png": [ - "27080d4df556f59d4b501e03f2847bd9da5756a9", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-rgr-grg-rgr.png": [ - "1966920d714455be9bbdfe2aa409fbe557adae44", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/pattern-tr.png": [ - "c1e687deee7b79ae091f2b42c4f6cff430076444", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-h-50%.png": [ - "9364be82a07500d6684a275174bcf5185444cb52", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-h-50px.png": [ - "b3d7cc680b20a5fc44ea93f7df6d33894bc7b09b", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-v-100px.png": [ - "d8b49696edb2bd614e9c00f96e7862798b6e621f", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/ruler-v-50px.png": [ - "eb299dc261ec04c8f2c11afb6f7a1c2ec147587b", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/square-purple.png": [ - "ef0619128f22e05920930420b7d96f91f860d904", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/square-teal.png": [ - "92efae44b710cf1ddd9ba96e593dae03fb2519c4", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/square-white.png": [ - "2f93fcc1462ba32b9b7899e5e78c869e529e68ee", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/support/swatch-green.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/support/swatch-red.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-blue.png": [ - "e79958e10feeeed3db88dee9bae9ea80055593c5", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-green.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-lime.png": [ - "ee2cc3dcd6d8dda7c0e4ef3bbc7e63c74118211d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-orange.png": [ - "10768a5177b772013e628c7397ae64725057295d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-red.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-white.png": [ - "5bccb1922de065e551d7d106e6493bb91040f3da", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/swatch-yellow.png": [ - "9cc73897c2e1fc45f5224d81d02a6b87bf72b1fa", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-bl.png": [ - "16e4eaa4864c10e72433e575f59c9b67763fe06a", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-br.png": [ - "37f65e7a21d9b9b2daa508f193b8f665c58a1ce9", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-inner-half-size.png": [ - "4ed63dd2bb54a8efc166719e00e1e27406b0ee59", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-outer.png": [ - "a0b8dfa40065b27f1d939ce0aab39ada3933c574", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-tl.png": [ - "956e5156fd8c0e75b1c0f3b8b3b900b653663f74", - "support" - ], - "css/work-in-progress/ttwf_sf/david/support/test-tr.png": [ - "078e1dd6dd61d36cec239ed75d02051f61fe60a5", - "support" - ], - "css/work-in-progress/ttwf_sf/divya/index-001.html": [ - "0f5a451a6059a217e25faca46cac97d621dbf9ef", - "support" - ], - "css/work-in-progress/ttwf_sf/divya/index-002.html": [ - "ac716bec977b04836ae8e70f4f5dd5915417677a", - "support" - ], - "css/work-in-progress/ttwf_sf/gangleton/reference/transform-translateX-002-ref.html": [ - "f1da9fba771d775c22c6f43211f897de7f05ac1d", - "support" - ], - "css/work-in-progress/ttwf_sf/gangleton/transform-translateX-002.html": [ - "1237faf6168b28884eb36f89c733d65f1fdea249", - "support" - ], - "css/work-in-progress/ttwf_sf/girlie_mac/css-transforms-skewx90.html": [ - "9784708d76678941720dc840e4db47c633304741", - "support" - ], - "css/work-in-progress/ttwf_sf/girlie_mac/css-transforms-skewy90.html": [ - "66e0ccaea3ec6734475e096ba3cf62613f80c907", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-TODO": [ - "2b37b92ee536afa1f5d6f4870032eff31e9db998", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-README": [ - "66c4070388f6e5bb3382642dca421abc4a424501", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-001.html": [ - "50651e6bbb806585f97aa3ca4696caa2c0dda86f", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-002.html": [ - "b032747b03e99fab4fd1469c61ccb8e40cbdf607", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-003.html": [ - "5a5a5c741b5784eb1052e073710d253ea500fdea", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-004.html": [ - "7955f0c545345018865c65691f44ce84d2be881e", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-005.html": [ - "70291b12bca5124e4efb26e21fa14f3f9abf3416", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-bounding-box-README": [ - "0d40a19a4424d525c4e1f7e24a56be3550431ba2", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-001.html": [ - "bcef08bb9a7fefec4d86e853bfc1a72ffd2a2f4b", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-002.html": [ - "adb4490c7f398b771a1a0d1867484c49ce156fe6", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-003.html": [ - "d1c2bb88cddaaab612c29e459f835254629be726", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-004.html": [ - "23cd276f011506a24c99aafe29a7bb3630c12dc9", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-005.html": [ - "af606c2f583a977ab638871a7b91b940e171affb", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-006.html": [ - "74b8d8c1ecadcd160cf8f8dade60f5a6871a0780", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-007.html": [ - "f1e9a32f9029d7d5aca58b29527881a7535f92ba", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-008.html": [ - "bb7a847bc7bf45c065682b8b45a25d24deed846e", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-009.html": [ - "7cb9fe79167e6ed200e39adf26a2a176572d812b", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-010.html": [ - "48aa78f5be913bd3592ce5490dcc01b596d0df4f", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-011.html": [ - "3eac9fd7d61d6e04c4b018eea5813930f5565683", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-012.html": [ - "5435418045a61084314d627321005caafc9434f1", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-013.html": [ - "c177837ade77b3e2a02d39157d26214036e3ee5b", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-014.html": [ - "d2f4408d1994a878b8a4858740de365353efa713", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-015.html": [ - "9d331147583f5178b97454e8484f5550c1c62013", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-016.html": [ - "954c5d89b23fbacc945e3b3413167616ca54b364", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-continuous-README": [ - "f34c562382843b951b43c759eddd8ec03519ab51", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-001.html": [ - "73527dddc474f2a187680f0070122f48e7b6223a", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-002.html": [ - "67e6cec779d1b20f0bf3e735643f6dde78472e91", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-003.html": [ - "50382882a4c74d0a22786f72b721f4500f74f0ea", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-004.html": [ - "ed3fad686d12c21c8bebfa8d754cd2d93e2067eb", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-each-box-README": [ - "239844169f3883bc027034492031298b7868db99", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-inline-policy-fixed-001.html": [ - "1b43bdd09f739123ec87296f63fb01b2fcc9323a", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-001.xml": [ - "136eecccb3bf305ee209aa71e407d492e3f3b8ba", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-002.xml": [ - "b7f93a21cf8805f8827443424139437bda8c0780", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-003.xml": [ - "a646bde01d1599f003ab8e71578168b0acb611d5", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-004.xml": [ - "ab8dda91f701a71e0f318bda70804ba0b23f6f70", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-005.xml": [ - "6039544ec28b781c29c25e5e6e2b72f0d81a2d40", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-006.xml": [ - "cc5e929bbe575809a136d5d9aaa0dfebd1376134", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-007.xml": [ - "e5309bc3807adc81cff7cc6f01802dda0c3232a9", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-008.xml": [ - "6a132e7c45b14a3f4709dba4a14a371d86b0b3a6", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-009.xml": [ - "709e16e05d8c6a805d22c710868cf97eb4f3eb53", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-010.xml": [ - "2e5e41721b92298d8694c245cbd49836c5cd1cf9", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/background-multiple-README": [ - "df9c7bf069b9391ac29e1367841b4e52633b00cf", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/border-style-001.html": [ - "9fa25c3bb0f9ba71e7986ea3f274e5e596856ad6", - "support" - ], - "css/work-in-progress/ttwf_sf/hixie/border-style-002.html": [ - "354015dc9755610c721df5ab1a650089faefd4dc", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-container-margin.html": [ - "4702e7999299f87ee8bbfef43015e35f089098a8", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction-modify.html": [ - "d48842d27047ef10050ad731709b74aaf3ff3ba0", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction-with-element-insert.html": [ - "5366d04ca2bb18f6f7666767378eca289f5b6ced", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-direction.html": [ - "bc874745b67f463b0ec900b4df578063b4810cbc", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/flex-item-change-width.html": [ - "90af342f4b02f57b5865dc92d17d7f200199cf3f", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-container.html": [ - "92eb0066fe278a9bd1c71a4665304a72aee3b6fe", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction-modify.html": [ - "8fe76d57346dd14dbd5db296e130a8bcec289df2", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction-with-element-insert.html": [ - "227004b2fa1cee9b810fde5d1606e7c3a9517257", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-direction.html": [ - "37ee87562daeb948f79fc50c331e8ff56432e606", - "support" - ], - "css/work-in-progress/ttwf_sf/houzhenyu/reference/flex-item-change-width.html": [ - "cc57d780a0652aea12bdcd69be33f83185b4de46", - "support" - ], - "css/work-in-progress/ttwf_sf/jeffreyatw/support/rectangle-100x60.png": [ - "03d965b5f66e61948a47e0b28c35c496bc9bff0c", - "support" - ], - "css/work-in-progress/ttwf_sf/jeffreyatw/support/rectangle-96x60.png": [ - "36050bffda9382cfd978dc82a2f0244a535a6a46", - "support" - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-180-degrees-001.html": [ - "e6b35c523b9b57fa5306bc12f80170526905f3ea", - "support" - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-270-degrees-001.html": [ - "700c7ec85a9a8e1fc7dc34b66aeb65e7e9264169", - "support" - ], - "css/work-in-progress/ttwf_sf/lmcliste/css3-transforms/reference/rotate-90-degrees-001.html": [ - "572947a7e34bf440db2f83f31c89f39b5da74854", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/background-attachment-fixed.html": [ - "a58fbdae78de02cd041ad3d3704f212a58793ca7", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-border-box.html": [ - "02b2abe1dae43e71651400c54bd28da96dd4bb81", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-content-box.html": [ - "2e140225cfaed337d56466c9519ff475eebdd04b", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/background-origin-padding-box.html": [ - "a6efff7c261e0ea7e7d1ea90ad347305641ba411", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-border-box-ref.xht": [ - "f660dc0a05496fe4919cc3b985b770735adb3932", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-content-box-ref.xht": [ - "d89de4a7353b0c29fb9bd3737b2dc0884f3127c1", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/reference/background-origin-padding-box-ref.xht": [ - "11b2ad8a61bfef085e9c8fb80f74a76908fb2279", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-green.png": [ - "51e7b6974a09eda6cb31337717c5eaeb9c44b443", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-lime.png": [ - "b040eb633a35c0648ad72a2902361faf25bc419d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-maroon.png": [ - "f78757e5ebe897bd618d100718385c84e00f2369", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-navy.png": [ - "a3fd80b2c79866fd343e18eef5a51ed6e835e53e", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-red.png": [ - "b8da86921d04ba42f42b0a60b03c5c2172f58c2b", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/1x1-white.png": [ - "71b246439f915ad21c7d39414d9f85c8ed73b4ca", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-gg-rr.png": [ - "e4843d42a26189132e1bdd53e8618521330baeca", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-green.png": [ - "2f8eb2409b0a18e0bff90725ec7eedc16e7be448", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/60x60-red.png": [ - "415b835abaaab822aab11880354296e7356bbb0a", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/README": [ - "c46bfcee920aef0b9167764ec78c699ed217c8f2", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/a-green.css": [ - "a9716c222274ba868bfd06c05e28cb7762d93245", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/b-green.css": [ - "eb78a4d12f35b4249051826ea000c53d04df80b7", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/c-red.css": [ - "dc288b7aa49b57e0abf803741e78582ba5ceffdb", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/cat.png": [ - "461fd17b274662b88500cdf42bab7f3b79e6019d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/import-green.css": [ - "db4f420efdb292d6520be1a3bf052ed3f6f9e7e3", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/import-red.css": [ - "0f2b9133fcfa22d5506a5cee307bd1a4d50e87e9", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-grg-rgr-grg.png": [ - "cfb6ecc271c296c69b133a81f350a777b608bea4", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-grg-rrg-rgg.png": [ - "27080d4df556f59d4b501e03f2847bd9da5756a9", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-rgr-grg-rgr.png": [ - "c100a35c361205932c506f1b3399753b91e4c45e", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/pattern-tr.png": [ - "c1e687deee7b79ae091f2b42c4f6cff430076444", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-h-50%.png": [ - "9364be82a07500d6684a275174bcf5185444cb52", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-h-50px.png": [ - "b3d7cc680b20a5fc44ea93f7df6d33894bc7b09b", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-v-100px.png": [ - "d8b49696edb2bd614e9c00f96e7862798b6e621f", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/ruler-v-50px.png": [ - "eb299dc261ec04c8f2c11afb6f7a1c2ec147587b", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-purple.png": [ - "ef0619128f22e05920930420b7d96f91f860d904", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-teal.png": [ - "92efae44b710cf1ddd9ba96e593dae03fb2519c4", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/square-white.png": [ - "2f93fcc1462ba32b9b7899e5e78c869e529e68ee", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/README": [ - "18698bf71d328054eba0b473486058bc9286c1a4", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/swatch-green.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/support/swatch-red.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-blue.png": [ - "e79958e10feeeed3db88dee9bae9ea80055593c5", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-green.png": [ - "c51a03a807743f59e3027371ccfbd8e80235a485", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-lime.png": [ - "ee2cc3dcd6d8dda7c0e4ef3bbc7e63c74118211d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-orange.png": [ - "10768a5177b772013e628c7397ae64725057295d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-red.png": [ - "eedea3e9a99c18f5fc2de3796be2c6f9da2ea07d", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-teal.png": [ - "994cd98028aff20822f2dca5a6058fb616bf5ce4", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-white.png": [ - "5bccb1922de065e551d7d106e6493bb91040f3da", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/swatch-yellow.png": [ - "9cc73897c2e1fc45f5224d81d02a6b87bf72b1fa", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-bl.png": [ - "16e4eaa4864c10e72433e575f59c9b67763fe06a", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-br.png": [ - "37f65e7a21d9b9b2daa508f193b8f665c58a1ce9", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-inner-half-size.png": [ - "4ed63dd2bb54a8efc166719e00e1e27406b0ee59", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-outer.png": [ - "a0b8dfa40065b27f1d939ce0aab39ada3933c574", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-tl.png": [ - "956e5156fd8c0e75b1c0f3b8b3b900b653663f74", - "support" - ], - "css/work-in-progress/ttwf_sf/mejarc/support/test-tr.png": [ - "078e1dd6dd61d36cec239ed75d02051f61fe60a5", - "support" - ], - "css/work-in-progress/ttwf_sf/miked782000/transform-oragin.html": [ - "64fee586204eafc20dc79c8f81d9dc708291e858", - "support" - ], - "css/work-in-progress/ttwf_sf/miked782000/ttwf-reftest-rotate.html": [ - "34455e4fbd092e67b1d335a46eaf8fee70dfb0bf", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-cssText-serialize.html": [ - "b75d5a569b70f42bad2c91ab8e0523b4c65df9d0", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-cssstyledeclaration-set.html": [ - "12f5dce3d37a718ac5c872f662cc9f3d9cf09179", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-fontfacerule-constructors.html": [ - "4d3690e3ac97f2d05c7381ec2f52aa597d5dddf9", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-fontfacerule.html": [ - "965a8f6289fa5c6e34bfd447de3b8ef86573fea1", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssom-setProperty-shorthand.html": [ - "14c752e5dbeab2d58983d53aceab08519379bf0f", - "support" - ], - "css/work-in-progress/ttwf_sf/paulirish/cssstyledeclaration-mutability.html": [ - "2e00f38e66c50a54a865c8ca6a020c5ae09a4d00", - "support" - ], - "css/work-in-progress/ttwf_sf/ssreed/diagonal-percentage-vector-background.html": [ - "bf9cb9c9a3943707545948772911b4399821d28f", - "support" - ], - "css/work-in-progress/ttwf_sf/ssreed/diagonal-scaled.svg": [ - "fbd0e22b5fb86620319e808b80dfec4abc904b83", - "support" - ], - "css/work-in-progress/ttwf_sf/ssreed/reftest/diagonal-percentage-vector-background-ref.html": [ - "9ef1aaab9f7f7cc51e832477ca3e44f2d50807f1", - "support" - ], - "css/work-in-progress/ttwf_sf/ssreed/reftest/diagonal-scaled-fixed.svg": [ - "5907bbac7ecb95f5dde1fe95e44d52355e878726", - "support" - ], - "css/work-in-progress/ttwf_shanghai/Zourui/background-color-transparent.html": [ - "fbc7a0cea92ba9412076746c4fe7566fcbc92614", - "support" - ], - "css/work-in-progress/ttwf_shanghai/Zourui/background-origin.html": [ - "82b286919ba6c35f9ce44995ddb3b48753411761", - "support" - ], - "css/work-in-progress/ttwf_shanghai/Zourui/reference/background-color-transparent.html": [ - "720d114264f5818a0a2f5863af1f6cdee56abb7a", - "support" - ], - "css/work-in-progress/ttwf_shanghai/Zourui/reference/background-origin.html": [ - "a4d93f3b2e8f5b28d11b39c3ae4f3d2ea2a0a530", - "support" - ], - "css/work-in-progress/ttwf_shanghai/mark/css3-box-shadow-outline.html": [ - "9776cdf06cddb7f7074f7c61e00ca8cb4c3b365c", - "support" - ], - "css/work-in-progress/ttwf_shanghai/mark/reference/css3-box-shadow-outline-ref.html": [ - "a5083581bcc90200997182b2ecc3a5c357b7f2ba", - "support" - ], - "css/work-in-progress/ttwf_shenzen/keiko-kiki/refrence/ref-shape-circle-001.html": [ - "6bf7c5ec77b050b1e1b55409a14500ac2757a68d", - "support" - ], - "css/work-in-progress/ttwf_shenzen/keiko-kiki/shape-circle-001.html": [ - "f0ae5c838b44732c2d64b378133be6ef9a60e521", - "support" - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/dish-isolated.png": [ - "05db76fc630f7aaab9943b4ecfc2937d999e6038", - "support" - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/shape-outside-invalid-ellipse-000.html": [ - "a5c177f92a772c232207e5fa074d7ef2b9f9f2cc", - "support" - ], - "css/work-in-progress/ttwf_shenzen/loutongbing/shape-outside-invalid-ellipse-001.html": [ - "a563ed10d71ff7cd45a2a4140d5e864383dd00cc", - "support" - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters-001-ref.html": [ - "b30f1d90aaaad148c31bf5ccf76693c574873fbd", - "support" - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters-001.html": [ - "326245b4c8bf083b9ce71e71da39c14236fb582a", - "support" - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-and-grapheme-clusters.html": [ - "8da5eb4f57dcb8f29a578e973bf95e70fe7cfbab", - "support" - ], - "css/work-in-progress/ttwf_shenzen/markqin/letter-spacing-value-1em.html": [ - "a8b54e9ddfa515595668a2c912ad88f8ec1f4d5a", - "support" - ], - "css/work-in-progress/ttwf_shenzen/markqin/where-is-letter-spacing-applied.html": [ - "62dbec6d3b8ac00a4838259419ca1ddcab13b4a8", - "support" - ], - "css/work-in-progress/ttwf_shenzen/onlymollah/shape-outside-negative-center-positive-radius-ellipse-000.html": [ - "847b29460e44d85be19cda8ca7c9333ffb1a86a7", - "support" - ], - "css/work-in-progress/ttwf_shenzen/smallni/letter-spacing-value-1em.html": [ - "a8b54e9ddfa515595668a2c912ad88f8ec1f4d5a", - "support" - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/gradient.png": [ - "6d7fdbbd93b51dc43eca2a07673724a7733f3b38", - "support" - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/mask-test-01.html": [ - "1a047bc7e6223d9a9596bd89fe3c62a510980aa4", - "support" - ], - "css/work-in-progress/ttwf_shenzen/yanghengfeng/mask-test-02-mask-box.html": [ - "c7630a93cc31ba7254b2e17ccb7c0a27b0904549", - "support" - ], - "css/work-in-progress/ttwf_tokyo/hayashih/padding-box-001-ref.html": [ - "1d1e1daa82096ca3001ff6195b518b34a2b1a242", - "support" - ], - "css/work-in-progress/ttwf_tokyo/hayashih/padding-box-001.html": [ - "dc4dfb59f317e56c56d8a30d821f349fa0a5299b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/hiromitsuuuuu/test_font_face_parser.html": [ - "98b0dd59c56635a1cf49958f34cf9570a708ebdd", - "support" - ], - "css/work-in-progress/ttwf_tokyo/kasshisatari/border-box-001-ref.html": [ - "abf8ab0565006bb633b907443978786cc6f6e4a3", - "support" - ], - "css/work-in-progress/ttwf_tokyo/kasshisatari/border-box-001.html": [ - "762397dbaac4145fb4def03dab73c871dc2a208d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/ahem.css": [ - "b8a049c3a68728a3853ad3d0a68c4b43acd3d3b8", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-2-ref.xhtml": [ - "03d79f7e0c7d5ce4f7c6ce36bdf2d0dfbe5a59b8", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-2.xhtml": [ - "f0e026f8ad5a661d0b5c59748728ca618c9258ec", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-3-ref.xhtml": [ - "88d7c9c39d8e8061864afb451018346fdd8b43c2", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-3.xhtml": [ - "f79e42a16d64840b23eaf864372673d89881a280", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-4-ref.xhtml": [ - "3141af29d18e50afe441204fdf1d500ed46bba59", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-align-self-baseline-horiz-4.xhtml": [ - "8e6a7521be9f3f5b5fb7434bbe88306df0c1c769", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-horiz-2-ref.xhtml": [ - "6f55e1a875d249684c209b4c6495476a17495ae5", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-horiz-2.xhtml": [ - "30d1ae626a1c6f816d3593cb0d997bd637389161", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-vert-2-ref.xhtml": [ - "9a10ae6def517ef3d94c2e54fa48ea5ef1783331", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-canvas-vert-2.xhtml": [ - "e9f3705d1c881059816098a26f62abe5da8ce6c6", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-horiz-2-ref.xhtml": [ - "ed20a8b86e57eb24452c7c5305b48f533e3382a9", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-horiz-2.xhtml": [ - "1146e89ab7e9b4d2f02952046f2d942652e5c13e", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-vert-2-ref.xhtml": [ - "5127559ac748647678ddb357ed38af4f1095b781", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-fieldset-vert-2.xhtml": [ - "10d9b3233526275c014606e8fd6fd1f76f1a9fe5", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-horiz-2-ref.xhtml": [ - "03209bd2ff73bb8e42049330c9a6824aef0b91c4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-horiz-2.xhtml": [ - "b338e8b2b0e6e3b945d31c9bd58b3ecbaa2f36ae", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-vert-2-ref.xhtml": [ - "0c0f62d86d00960cf645eb25ae6822dfbeec7ced", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-iframe-vert-2.xhtml": [ - "de5dc253a84a9be3a2b3f37a2ae774b17cdca879", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-horiz-2-ref.xhtml": [ - "6a9ad987c1c2ad41bde4ef5fef6c2c2acbae135d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-horiz-2.xhtml": [ - "6349059314821a35676e07edad4af00f67362e28", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-vert-2-ref.xhtml": [ - "0737dd744e8548c2b2e291524c0918f85aade573", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-img-vert-2.xhtml": [ - "80c1a0aca822baed5beb69f29a2f140bc74a622a", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-horiz-2-ref.xhtml": [ - "ab09cca00ad2b1e87197fca06db1ea55923ab5e0", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-horiz-2.xhtml": [ - "1845f433b726cf5bbafb13eb556201e1d9611be2", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-vert-2-ref.xhtml": [ - "667165c6e52e5bece02d692caae04b88c7851e73", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-textarea-vert-2.xhtml": [ - "fa1c6f3e9a72f6bc2d28b2d2717601f45beac6b0", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-horiz-2-ref.xhtml": [ - "77c3c4df2bd8a0d0a4dd67bb9953a48d112c16bf", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-horiz-2.xhtml": [ - "937b1922310136bfcc7caaae52939860205fc80b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-vert-2-ref.xhtml": [ - "4f324501d61766509261483094fa0f532ba3e57b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-basic-video-vert-2.xhtml": [ - "0f6683a42537fb73026d4fbeea1899f092e7565b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1-iframe.html": [ - "c717a2bceb39ee48d778ceeaaef7b66a419c020f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1-ref.xhtml": [ - "c7187582a9991b4eac5fb4dadaf441c50efbdc7d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-1.xhtml": [ - "a83be3905e667085d205afa0b68a2d17ba50892d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2-iframe.html": [ - "04a0d85452288be2763c83e5a6e36f713e3456e4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2-ref.xhtml": [ - "c7187582a9991b4eac5fb4dadaf441c50efbdc7d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-2.xhtml": [ - "14f273776591a654a4781a3a43a5df47e896fb9f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3-iframe.html": [ - "e90ac4f4a90f1e1c7dc4a7a6bb65cd0359474d8f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3-ref.xhtml": [ - "c7187582a9991b4eac5fb4dadaf441c50efbdc7d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-3.xhtml": [ - "03553da0dbb26e31e65b08fabef6e59495b4159e", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4-iframe.html": [ - "921ec19e0681dc146ca0f426b60a118203eb0442", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4-ref.xhtml": [ - "c7187582a9991b4eac5fb4dadaf441c50efbdc7d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changeFrameWidth-4.xhtml": [ - "38fd18dc3992376d811dfdcfb0647f877dda4e44", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1-ref.xhtml": [ - "e5d9c4c09573c91f171637d5ef25d280a2a5c65a", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1a.xhtml": [ - "add9274565845593c7f7aea10550c8b78f6b7cab", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-changePadding-1b.xhtml": [ - "4f6e5e99484281fc06c3bd9fc0b576e7ab341085", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-1-ref.xhtml": [ - "aa21aecca47e0101b0c4130fccdfa8eafd1423ef", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-1.xhtml": [ - "6b58bf8054a71109ff8bd7e9210c1cd186ce544b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-2-ref.xhtml": [ - "0378c15b6b3436c4ac39b136563de3a48805a1b5", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-2.xhtml": [ - "66fdbcf9f9d2a9537b7cc8f8bad65db0ba7418fb", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-3-ref.xhtml": [ - "b6e2421b23b9c1bf3ba6c134e1c79e4e469365c2", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundDiv-3.xhtml": [ - "4cf6c4e0f7d4709eea9897777c0c604f58d16d84", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-1.xhtml": [ - "7ab556c581a92f945ac1dd499da2666d4c0addd4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-2.xhtml": [ - "de9d3d7bbfd6d589fff375e8e6af27f991324997", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundSpan-3.xhtml": [ - "42f2d092b7a4097e83bdd570a4636fab3a318e19", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-1-ref.xhtml": [ - "736d7d83c0cd6c38e997de47ac6945183c3f5c2d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-1.xhtml": [ - "0f7a04f836d347a2fa9fdf5dd555ef13f137d6af", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-2-ref.xhtml": [ - "de3f28500d288d7171661b1a3450195a76c0c922", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-2.xhtml": [ - "b242bc1bf649c07472938483ddb693a89263dc16", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-3-ref.xhtml": [ - "8e6bbff368926628d933931c1eb61553fdde1cf6", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertAroundText-3.xhtml": [ - "ffe07fd56802960c4c9603938f69e631ea38cc4e", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertEmptySpan-1-ref.xhtml": [ - "901e389a4cfaf2428432e23d5507bdc27b729188", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-dyn-insertEmptySpan-1.xhtml": [ - "30794350abcb2ac469661238dfa23af80666be9c", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1-ref.xhtml": [ - "65a2a517b33347c68e8f329a4bab9f3c721c7740", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1a.xhtml": [ - "0be3c73db1365a48363b0567a1708b8918be6d2f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-empty-1b.xhtml": [ - "c179b2e74e3894203d09a553f538b4dbf8afb9b3", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1-ref.xhtml": [ - "860c6a61c1e87959bc4aa96f4eb93dbbad6cdca6", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1a.xhtml": [ - "d9fa626ac5235d79685d50a230ce3b9fb5693b73", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1b.xhtml": [ - "367a93fb2e08a4f0df66d803ccffca7dd6952093", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1c.xhtml": [ - "92753f6560994803a86d56d285f0e9170477dae3", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-1d.xhtml": [ - "db4c51b309f60a7b062923af3931eb9cee0687df", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2-ref.xhtml": [ - "ff7dc91dc0dbf636ec3d740e07a407268d4d66a9", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2a.xhtml": [ - "e4e140faa0645fe29b5da21448696773c3f921d1", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-float-2b.xhtml": [ - "a023aee828ec62d0a42d9205de70b65d51e28c23", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1-ref.xhtml": [ - "c297baf53886a6f51b465dedb1a8e51d9465c0b4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1a.xhtml": [ - "9945f2ac1d8d723a1655c6a07474f76239c37c1c", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-1b.xhtml": [ - "7272e26faa2961c26e0d7468046c0246c72fe13b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-2-ref.xhtml": [ - "281163d0e4188aec3b35cc332e3bca8bdf9385a2", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-2.xhtml": [ - "ed39ff2ef46aa3dbee446c8689aab9884c930e5a", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3-ref.xhtml": [ - "ff54df75ff9827cda0e9180f328d0e315134b077", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3a.xhtml": [ - "85dbbe71c0fb74d4efc7e1d3ef8584f95a45564f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3b.xhtml": [ - "6408d3b53a4207e6f221eb25b84b7c04c4e8778b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-3c.xhtml": [ - "bc5108852517f151196bbdf107e9e76747edc65f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-4-ref.xhtml": [ - "f96bc9d2935d9885e27099c8ad2accb164ed6bbc", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-4.xhtml": [ - "63d97328b014dced510025e39a067b234c797263", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-5-ref.xhtml": [ - "02c134ab97e3822e3d0277c8ee10ad3cb0e073b1", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-inlinecontent-horiz-5.xhtml": [ - "f867cbc59519c474c7a1503b7705a6ad22d79ce1", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1-ref.xhtml": [ - "2183b2270b4bf90e83e78fd3a23cd64f5c2f925f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1a.xhtml": [ - "43db81090946f8a68ddaad5d21df93c9e4aa1320", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-1b.xhtml": [ - "2ab3f98a8ed2632333333e85af6c39d8c7cb2e46", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2-ref.xhtml": [ - "1e187e5395ab75149d26d6540979c87c8aebee8d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2a.xhtml": [ - "278f4e7d3075694193d9917788034d1a2d36209e", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-intrinsic-sizing-horiz-2b.xhtml": [ - "602fbd445c1585344ab6b6b29332924271fb0a22", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-invalidation-1-ref.html": [ - "89c4b5ce733ca8d3284393d982531eb0f4f626b0", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-invalidation-1.html": [ - "e3f0b9866457d4bc62f860782fbf897e01fe5fba", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-horiz-1-ref.xhtml": [ - "e9500860dca0a357421d2a192822ebb6062a725f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-horiz-1.xhtml": [ - "a7cc488ca39a3c58187c013ed8f1a9d1bb20fa83", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-vert-1-ref.xhtml": [ - "ef018ecc1917414eb212929605549c2e53a6f3a1", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-minSize-vert-1.xhtml": [ - "b13d6fa5419dc5fd246daaa379e7e998fd90dce4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-paint-ordering-3-ref.html": [ - "24f351e4568e5b6b1927bb0c25948330cfa8c991", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-paint-ordering-3.html": [ - "3545bdd440263683a068a5a3442b9a976a74b7a8", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-1-ref.xhtml": [ - "9762999f108f9a6bea7de631d95b9a35a51ffa70", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-1.xhtml": [ - "2b42ee89a4af92d35bfec9fe5552a75e72380d2d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-2-ref.xhtml": [ - "456f0c9b3251bb885385fe54765c8db2d853f58e", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-2.xhtml": [ - "9448a92467ea60b3c72b9b825a800f6b52acc3bf", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-3-ref.xhtml": [ - "ecb9238df406d6c9ed475d69917608fd8d1865e0", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-3.xhtml": [ - "ae3acf8e498836f926f917eb767fa1758b68a8fe", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-4-ref.xhtml": [ - "831791670735223d881077b3b20ec3210dad543d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-absolute-4.xhtml": [ - "3b3e67de169d53309b44cf6b3a6185331a7f9cd6", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-1-ref.xhtml": [ - "4f79e3c308d66c32d90777efd782c0f3bce1dd1b", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-1.xhtml": [ - "0d6370d067cc508fa1aea70f87d6a8656e1bc5a6", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-2-ref.xhtml": [ - "dd69fe4d6b54d51cfa867189a7fd0854e40320dc", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-2.xhtml": [ - "c752cd955a668509da4259d03988879c66b10070", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-3-ref.xhtml": [ - "e9c8719352213f857590b6e08cd89872d383d268", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-3.xhtml": [ - "95197a5d423cc43a449ae37c46731abdabf4a268", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-4-ref.xhtml": [ - "386ebc49bfc8195877cf9dbe90915b7126349a65", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-position-fixed-4.xhtml": [ - "2278d22efb3cd27bc6a3dd5589bff5c57cc89cef", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1-disabled-ref.xhtml": [ - "c21ba9bdfdf0bbac732b67e07c1d5ee58db88e6d", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1-enabled-ref.xhtml": [ - "d23176bdaa127a0a8b20fec89f1165f2eca33f04", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-pref-1.xhtml": [ - "a733071069d920089eded4d20df0d5e2a2059938", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1-helper.html": [ - "8aebf0924edd15f0602ec8c5af0be8f214cf3d44", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1-ref.xhtml": [ - "3f288560e7af41190b49308591828f7fcc199060", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-resizeviewport-1.xhtml": [ - "5b4ba2f275e68f9eccdbdbaaf9bb500bec4f1e31", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-1-ref.html": [ - "9e70368f07cf78194b3f95e5593d0836227152eb", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-1.html": [ - "848d4b85265e5301073cf6aedd2ac98c288c7889", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-2-ref.html": [ - "748ce2b4d0e0a9e5c9d5e2a88c8d0896f7be4d51", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-2.html": [ - "f6d3f04f00e21f19c5cd32deaa1e8ed4a319a435", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-3-ref.html": [ - "7c80b4671cd489dbaa82feb635969871a7fa1dd5", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-3.html": [ - "0cdf8242e5618c10035ed5be4439fc1357f44cfd", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-4-ref.html": [ - "0985e0a16d2ad2b9d5566a637f208327e36b0081", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/flexbox-widget-flex-items-4.html": [ - "77c1723b46f97c2ede3af64ff76b56c5d987c617", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/reftest.list": [ - "71e86ec2e2abcff095b7bf6bda8e413a7a39449c", - "support" - ], - "css/work-in-progress/ttwf_tokyo/mozilla/solidblue.png": [ - "b0b2ba76fa77230137451abec8e92de03e4359cc", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/CSSOM/samples/CSSStyleDeclaration-setProperty.html": [ - "abaa929e3325ab151f5bacef2b255aa00c7b0de4", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-001-ref.html": [ - "909953519c0f0ce9ad6b950322c27b7d72639512", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-001.html": [ - "34d7b32ad62bc4a7a2766935c4fa2fcb31ba4f06", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-002.html": [ - "aff47d8476495cbd8d620687c706fac0882998c9", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-003-ref.html": [ - "db0af87e6fdefa197893bcf42251c783c8f9b2e3", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-003.html": [ - "8036417e5070bfbe69025a141ffba4c69fc64960", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-004.html": [ - "cda09df5947c38ea52708db6175535e5022b70f8", - "support" - ], - "css/work-in-progress/ttwf_tokyo/starters/css-text/white-space-processing-005.html": [ - "8ed420c032c45e8aa5b8691cde4992b06a67cc0f", - "support" - ], - "css/work-in-progress/ttwf_tokyo/t32k/css-fonts-font-face-rule.html": [ - "1ce82379930675373fbae9c59135d2a1d35cfa28", - "support" - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-18n-ref.html": [ - "71111a37e184a2ae9c123b4b37f1d52450788cbc", - "support" - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-18n.html": [ - "ff1d0b7c30b0f54c83df17236a13c770b1296dff", - "support" - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-fallback18n-ref.html": [ - "c22fc5b8c6fae6c30382336c1de62d0de9178164", - "support" - ], - "css/work-in-progress/ttwf_tokyo/takuya/font-family-fallback18n.html": [ - "c0e7ffc3849463b430b08fc7ba4dada987315ec3", - "support" - ], "cssom-view/CaretPosition-001.html": [ "182826b894852721a2efa7eaa0a3437904f13dbc", "testharness" ], + "cssom-view/DOMRectList.html": [ + "020d13088ba7b4b58ecb80bef3656a5a415b03ea", + "testharness" + ], "cssom-view/HTMLBody-ScrollArea_quirksmode.html": [ - "cfe4e07fb9efa140a55175d3cf50ceaced93e1c9", + "6de6ee944522c61bc45335df91db210fd066b4f3", "testharness" ], "cssom-view/MediaQueryList-001.html": [ @@ -568202,7 +574351,7 @@ "testharness" ], "cssom-view/OWNERS": [ - "083538f652edfeea9bde3d5d9f56667bc3773f6a", + "cf93c0eefa7ac990a83355eddb8b22fa4baddf53", "support" ], "cssom-view/Screen-pixelDepth-Screen-colorDepth001.html": [ @@ -568217,6 +574366,10 @@ "8dfaa313b4abad30281d07ce22ac06a61754cc06", "testharness" ], + "cssom-view/cssom-getClientRects-002.html": [ + "da348da01e09474f652ff1dfb6869665740668d5", + "testharness" + ], "cssom-view/cssom-getClientRects.html": [ "f4e750bc1267f5c519a513ef1f25bf3660365788", "testharness" @@ -568241,24 +574394,56 @@ "bf1c490777f450275a95ecfc6d6d2c0d055aca82", "testharness" ], + "cssom-view/elementFromPoint-002.html": [ + "36d7e75021f7f6ab8f89b2654ba3c8f818af16b8", + "testharness" + ], + "cssom-view/elementFromPoint-003.html": [ + "a689737bd60877e181a8a7ff27774ab383c3de0b", + "testharness" + ], "cssom-view/elementFromPoint.html": [ - "e22ae99aa1fba51807aec245b810db5d584ac037", + "0f78405640523cf451b19ea0348b8216139b8168", "testharness" ], "cssom-view/elementFromPosition.html": [ - "d90dff8b15ec2977f341a7add9c7d627b62d9d0f", + "2bb07e21ddfbc24dabc39fa261c720a36f56a933", "testharness" ], "cssom-view/elementScroll.html": [ - "416cff5602d8836fcc7c2369e6f5abd86e43eed5", + "2119d689cc369bd6632ee1a9525bcbf7d1d4ba65", + "testharness" + ], + "cssom-view/elementsFromPoint-iframes.html": [ + "ac39d7c8c7dfa49bc1e32b542082922a2a6a283f", + "testharness" + ], + "cssom-view/elementsFromPoint-invalid-cases.html": [ + "7a0f96cbdc976149833ab904e44cc981ca2eaa2e", + "testharness" + ], + "cssom-view/elementsFromPoint-shadowroot.html": [ + "e87feae5f1e6add43a315b8a3a7035e75708354a", + "testharness" + ], + "cssom-view/elementsFromPoint-simple.html": [ + "19a0b3be6c48753390e72565e5c5020b35e54da5", + "testharness" + ], + "cssom-view/elementsFromPoint-svg.html": [ + "2aef08e76167d67ca80f2f993d249692c7cc8ff8", + "testharness" + ], + "cssom-view/elementsFromPoint-table.html": [ + "b3edbc3743a4c62125580846346f28aa8652242e", "testharness" ], "cssom-view/elementsFromPoint.html": [ - "d7d35ebb7041d1a0b67d01a51ab125eee5a8e7b2", + "72967af1e05060624a2eaacd059a59bcedacd934", "testharness" ], "cssom-view/historical.html": [ - "1d88b7050e61c06aae97c42251401e1d6acb7f06", + "a7a39c209b62ff516b955bc16c28ea0f5b94d8ac", "testharness" ], "cssom-view/htmlelement-offset-width-001.html": [ @@ -568269,6 +574454,10 @@ "81c8e70138fc30d0954d9de692ee396310586c7f", "support" ], + "cssom-view/interfaces.html": [ + "d74bbaf34040d130444915b4432c529a73d9604c", + "testharness" + ], "cssom-view/matchMedia.xht": [ "3330cf1603555d50d097cdc584cf1c193c8b32d3", "testharness" @@ -568289,8 +574478,24 @@ "b2261ec702116c211ab5ac6fbb53698dfe60a7be", "testharness" ], + "cssom-view/resources/elementsFromPoint.js": [ + "0c31158817d4d6f9e59df0d2ebe0e41c6ce41bb5", + "support" + ], + "cssom-view/resources/iframe1.html": [ + "ec93f617bdc7b0055d96c7b00ab7832cca1c1af0", + "support" + ], + "cssom-view/resources/iframe2.html": [ + "0a8784c474ccdd4a3e76cb936855a8ef59566217", + "support" + ], + "cssom-view/scrollBoundaryBehavior-manual.html": [ + "987051cdbad355cbb1bbb8ea1030a3b17e533f09", + "manual" + ], "cssom-view/scrollIntoView-empty-args.html": [ - "c1bd398158cc935c8c69cb0291c2ef0e0faa6bad", + "57e22136750f54145c37722674389590b7f340b6", "testharness" ], "cssom-view/scrollIntoView-shadow.html": [ @@ -568317,10 +574522,30 @@ "a799c737e7962865c3ed3e380a664cafe97dcfe8", "testharness" ], + "cssom-view/scrollingElement-quirks-dynamic-001-ref.html": [ + "61f1de81876db66564e3edb8945312ed213d0b30", + "support" + ], + "cssom-view/scrollingElement-quirks-dynamic-001.html": [ + "2bc3eee1754a051874ae5e8e229c661d7d8a9c1f", + "reftest" + ], + "cssom-view/scrollingElement-quirks-dynamic-002-ref.html": [ + "85d4a5786e41af9ff89d6622fa329fbf79303c35", + "support" + ], + "cssom-view/scrollingElement-quirks-dynamic-002.html": [ + "fcb2ceb93ba7b84c86e4c00e59e8febdc8ff8fed", + "reftest" + ], "cssom-view/scrollingElement.html": [ "e3bc7ab9a646c1275e5dab9394df97d72ef8a42e", "testharness" ], + "cssom-view/scrollintoview.html": [ + "6ff3bd8afc87c9f678115e18d3ff8b5331f81c00", + "testharness" + ], "cssom-view/support/1x1-green.png": [ "51e7b6974a09eda6cb31337717c5eaeb9c44b443", "support" @@ -568501,10 +574726,6 @@ "7f3440e65abbe692e3c28f1f1d04671054ecc815", "testharness" ], - "cssom-view/ttwf-scrollintoview.html": [ - "55d874f53db3c8ed03fff063584eecbcda10d2ce", - "testharness" - ], "cssom-view/window-screen-height-immutable.html": [ "3193a200624217a260e17660006e9ce31a52814c", "testharness" @@ -568557,12 +574778,12 @@ "21d9e43514fb3a7fbf8933429242dc544224ef24", "testharness" ], - "cssom/MediaList.xhtml": [ + "cssom/MediaList2.xhtml": [ "277ec40d3a64d9881e594901a6bcdcd6b70405db", "testharness" ], "cssom/OWNERS": [ - "504fa320d984433da43ab370215ecc2ee29ef66d", + "f131f271cb2f747e845584abcc445348e8c86521", "support" ], "cssom/StyleSheetList.html": [ @@ -568601,6 +574822,10 @@ "965a8f6289fa5c6e34bfd447de3b8ef86573fea1", "testharness" ], + "cssom/cssom-ruleTypeAndOrder.html": [ + "3940c95b6c5664b0efee76cc90ffc466c218366f", + "testharness" + ], "cssom/cssom-setProperty-shorthand.html": [ "14c752e5dbeab2d58983d53aceab08519379bf0f", "testharness" @@ -568618,7 +574843,7 @@ "testharness" ], "cssom/getComputedStyle-pseudo.html": [ - "6c74e57a2e32a13cc3b7e955a2d89dafdf6d1730", + "98f4a9a445621ae328a317402bdfb62c83de6b43", "testharness" ], "cssom/historical.html": [ @@ -568633,10 +574858,6 @@ "fe12bc0005ccfccfafd4f23644b28fbb5f5e33d1", "testharness" ], - "cssom/index-003.html": [ - "f55d9bc5b2e25b1af5169ecc164f62b6a95abfe5", - "testharness" - ], "cssom/inline-style-001.html": [ "377c8610bc597d47a93f70a9cf95b3c7657d8319", "testharness" @@ -568658,7 +574879,7 @@ "testharness" ], "cssom/interfaces.html": [ - "5876c88acd95d18166fdd049bdb3f09cdde4eb3f", + "c1dfd96239986c9c57d7b07caebbd1fc9654e0b9", "testharness" ], "cssom/medialist-interfaces-001.html": [ @@ -568726,7 +574947,7 @@ "support" ], "cssom/stylesheet-same-origin.sub.html": [ - "719c525b1af3b6b46dfeeb0627034d799bab50b5", + "c8112887da9ee152a9ebe64988fd29cb2c27b9ba", "testharness" ], "cssom/support/1x1-green.png": [ @@ -568909,6 +575130,10 @@ "078e1dd6dd61d36cec239ed75d02051f61fe60a5", "support" ], + "cssom/support/xmlss-pi.xhtml": [ + "d25c88a9ce946cf0e2fde88062b7438b2df9c678", + "support" + ], "cssom/ttwf-cssom-doc-ext-load-count.html": [ "800db5cd4f7342d8c4e5309d4035182ce42f7251", "testharness" @@ -568969,6 +575194,10 @@ "ad030517981b11892126023bc758b7fe323a3d14", "testharness" ], + "custom-elements/historical.html": [ + "991ebcff1d8b59a7a4d959f3061a17e0e8a83704", + "testharness" + ], "custom-elements/htmlconstructor/newtarget.html": [ "11b7927c9a2946c752f56e5b44cfb4051ab8b6d6", "testharness" @@ -569018,7 +575247,7 @@ "testharness" ], "custom-elements/reactions/ChildNode.html": [ - "90995dda943b6fa08e16f99afc2948b63c3cb4b9", + "7c0f92f4447c3abb74cddc7a111d7a0c5993b166", "testharness" ], "custom-elements/reactions/DOMStringMap.html": [ @@ -569122,7 +575351,7 @@ "testharness" ], "custom-elements/upgrading/Node-cloneNode.html": [ - "3bc50b2f5d2affc43807fedb8d54f1e52b38d047", + "cc121ea56de1b8e1074062b5dda69f57e2add665", "testharness" ], "custom-elements/upgrading/upgrading-enqueue-reactions.html": [ @@ -569138,7 +575367,7 @@ "support" ], "docs/.ruby-version": [ - "6a53a60564f3c6b4956718496467be313e77067d", + "1398f232620ec3c548dc2756fd74cfb365773033", "support" ], "docs/CNAME": [ @@ -569150,7 +575379,7 @@ "support" ], "docs/OWNERS": [ - "f44b20b9ca4ae973a8a1da3a8d37e4c9dbb0dfdb", + "8b8fcd1bcd07619951c92029a3f5cad01fa75d44", "support" ], "docs/_appendix/github-intro.md": [ @@ -569214,11 +575443,11 @@ "support" ], "docs/_running-tests/index.md": [ - "8c996a7b797bec83c579f5fd643fdfca32a30cc6", + "15811229e77d2949a6cb5d1848cff7136d8f11af", "support" ], "docs/_writing-tests/ahem.md": [ - "f3c2b3315367f25f4b29900a4ff37c7b82979e19", + "97ee326d501aea007b5f87ee98d0ee6ca303cbb1", "support" ], "docs/_writing-tests/assumptions.md": [ @@ -569233,12 +575462,16 @@ "05dbc66f5b2a1a590432d4669753d16b9d2b5da2", "support" ], + "docs/_writing-tests/file-names.md": [ + "c5ee71530be36dd025c542ddaadfb20c15a6e88c", + "support" + ], "docs/_writing-tests/general-guidelines.md": [ - "7574493bd02c0586f61424de2e2f3f337f67f270", + "2c0af71d17ceab3abf736ff6e7b979b809dc1a0b", "support" ], "docs/_writing-tests/idlharness.md": [ - "9f908f014553757d12fb91626a31a8312ec75bc5", + "a28a8990c4e802a555b2bd0b0f185e01c9b00417", "support" ], "docs/_writing-tests/index.md": [ @@ -569246,7 +575479,7 @@ "support" ], "docs/_writing-tests/lint-tool.md": [ - "76bb45b6385e589efcfadd523dac8babd07b16d6", + "96cf62f747c7367e81c6001831bd3f22ae62f0fa", "support" ], "docs/_writing-tests/manual.md": [ @@ -569262,7 +575495,7 @@ "support" ], "docs/_writing-tests/server-features.md": [ - "b99519a3280770fb339c31237f1d90fa523e3644", + "d89a6d340ebb3808293d5b480772a65e765945a7", "support" ], "docs/_writing-tests/submission-process.md": [ @@ -569270,7 +575503,7 @@ "support" ], "docs/_writing-tests/testharness-api.md": [ - "41fd0824ee16043f2b59ce51f00f42785e8ed0ee", + "5fa854f33ee9141f2226fa1e1b4e5aa44c3b75c7", "support" ], "docs/_writing-tests/testharness.md": [ @@ -569350,13 +575583,17 @@ "support" ], "docs/introduction.md": [ - "6c7c15823a502b51b84bde1da8be9bcfb3012cdd", + "b877d57dfe88a167dd7ff229d3bdf9fd22c76e8f", "support" ], "dom/OWNERS": [ - "9b55eeb7739453218526eab2d6d00aedc475303a", + "2bfae729fb0eab4081f06e51ae5640b49e012b8e", "support" ], + "dom/abort/event.any.js": [ + "25e9c1104acb9b0092d1303190588a3953cf635d", + "testharness" + ], "dom/collections/HTMLCollection-as-proto-length-get-throws.html": [ "487f3991b116ceb503352ed025961282a8761e95", "testharness" @@ -569505,6 +575742,14 @@ "5da96a9be09ad5dc69438ba9bd6b2ab58cf77ca1", "testharness" ], + "dom/events/Event-timestamp-high-resolution.html": [ + "689ee67c1e9a45378cc2fb35384a774515a1d641", + "testharness" + ], + "dom/events/Event-timestamp-safe-resolution.html": [ + "dd22e8532f7ae8424d0a8ec898841a1c7545d020", + "testharness" + ], "dom/events/Event-type-empty.html": [ "504518675cd65f5f694653f035130509cbf421c7", "testharness" @@ -569549,6 +575794,10 @@ "85dea0178b16b5c3e8ddbfa9a8b4bd8424bc0a3d", "testharness" ], + "dom/events/EventTarget-constructible.any.js": [ + "cd6977c89454651d094f8679c71b5ba512dd687f", + "testharness" + ], "dom/events/EventTarget-dispatchEvent-returnvalue.html": [ "70fedeb118930fdc57292ce5f2bfe621f63c2563", "testharness" @@ -569566,11 +575815,11 @@ "testharness" ], "dom/interface-objects.html": [ - "144554e0a9d53cdbb2c1f01d3dc169010db693b3", + "05963c8b0a839f3e07b5478d99fc034e4654b515", "testharness" ], "dom/interfaces.html": [ - "f8eb7f5fcfdc9ca4a500d5e43855a24a169c81cf", + "7d00e3a778083a91156f4e042c7abd270060a7fc", "testharness" ], "dom/lists/DOMTokenList-Iterable.html": [ @@ -569658,7 +575907,7 @@ "testharness" ], "dom/nodes/DOMImplementation-createDocument.html": [ - "b03938e18d60802ba8ba3c0c7e8fd7714dd72768", + "3da48c26f9e3c3bed13a43ca0674e05a2b611fd5", "testharness" ], "dom/nodes/DOMImplementation-createDocumentType.html": [ @@ -569666,7 +575915,7 @@ "testharness" ], "dom/nodes/DOMImplementation-createHTMLDocument.html": [ - "90be3c69aaccfa46c4ac0e2eb04921f19999f1dd", + "0015e6ffbdcbdcb6ea9eb3a1557e19f76d13a6ae", "testharness" ], "dom/nodes/DOMImplementation-createHTMLDocument.js": [ @@ -569706,7 +575955,7 @@ "testharness" ], "dom/nodes/Document-constructor.html": [ - "38aa896f335ff68927e72af1c5de552e56ef195c", + "638599e01c32e6566a4c445c8042e5b129ca60f5", "testharness" ], "dom/nodes/Document-contentType/contentType/contenttype_bmp.html": [ @@ -569717,12 +575966,8 @@ "3ca3dbdee476c0652c301bc9029392a042b1fb63", "testharness" ], - "dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html": [ - "f1dab25ef39e57dbd446e56f8d1eccd5a66300d7", - "testharness" - ], "dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html": [ - "c6ecfbf45d1d50826964d4ced0d242c7cf0bf9db", + "83a3bb9787d53d6f7e20d2c3bfaa802b58d896a0", "testharness" ], "dom/nodes/Document-contentType/contentType/contenttype_gif.html": [ @@ -570006,11 +576251,11 @@ "support" ], "dom/nodes/Document-createEvent.html": [ - "9274ffffe1b08dee78b64ffc70582957f0386bca", + "9d128acd63f3e972334d9a034e0c222495fd927e", "testharness" ], "dom/nodes/Document-createEvent.js": [ - "6e7d9350e2fd9ffad36fddd4d90438d620c7dbf3", + "5a8ecc8e5627e340eb10fdc91675968dc9b8fb98", "support" ], "dom/nodes/Document-createProcessingInstruction-xhtml.xhtml": [ @@ -570138,7 +576383,7 @@ "testharness" ], "dom/nodes/Element-classlist.html": [ - "c197df35960b77a7794eed10a1a927867a6658f4", + "10a0336430514dbbe8e837472c4476254ea8f8fc", "testharness" ], "dom/nodes/Element-closest.html": [ @@ -570221,8 +576466,12 @@ "252ff76fd5ebecbe451151fa7b7b6acef44f1a45", "testharness" ], + "dom/nodes/Element-matches-init.js": [ + "ddce738f5820e51c5132356273e62235f2c8d0e4", + "support" + ], "dom/nodes/Element-matches.html": [ - "1c3babeb4f7c2a9f2a35d96aa6eb456f88966cbd", + "c3d29ce89418e989a6ecba94771f643298128a26", "testharness" ], "dom/nodes/Element-matches.js": [ @@ -570278,7 +576527,7 @@ "testharness" ], "dom/nodes/Element-webkitMatchesSelector.html": [ - "31934621453740439f9b318c0bb8b180ac3071c3", + "4893646fbb75af660d00070d704bf41a7ba77078", "testharness" ], "dom/nodes/MutationObserver-attributes.html": [ @@ -570322,7 +576571,7 @@ "testharness" ], "dom/nodes/Node-cloneNode.html": [ - "f35c88d16e9a3bfc47eb6965d13076f537a20c3c", + "d4ab5a700e36fa6b8c26ffc6703d2a9020b5336e", "testharness" ], "dom/nodes/Node-compareDocumentPosition.html": [ @@ -570654,7 +576903,7 @@ "testharness" ], "dom/nodes/selectors.js": [ - "15faac9fc281d4a0e5c525292f691fbcdf84bfc9", + "61d049342078d7e7f46c5916460aa34e878904ed", "support" ], "dom/ranges/Range-attributes.html": [ @@ -570798,7 +577047,7 @@ "testharness" ], "dom/traversal/NodeIterator.html": [ - "86f51fa036aeda8fa544509e32b3b7e41a831f6d", + "eb86c6666fc081eb37edaca8f53adb72993faf8e", "testharness" ], "dom/traversal/TreeWalker-acceptNode-filter.html": [ @@ -570838,7 +577087,7 @@ "testharness" ], "dom/traversal/TreeWalker.html": [ - "539f28f8c9c46049e3866ba847fbe47a13ebe7bd", + "75038e47051a5667e305b363e73034342aa0a073", "testharness" ], "dom/traversal/traversal-support.js": [ @@ -570910,7 +577159,7 @@ "support" ], "domparsing/XMLSerializer-serializeToString.html": [ - "f981058d771b4e6a0936e9f496527fe6177b2479", + "121db7defe0663346fd83ba832e09d20ce6d41be", "testharness" ], "domparsing/createContextualFragment.html": [ @@ -570941,6 +577190,10 @@ "b420f01bdc20c9acd0787767f32a32e89224d755", "testharness" ], + "domparsing/innerhtml-mxss.sub.html": [ + "c85fb326dcab0bd83ac1e2264747642c1e4b2b82", + "testharness" + ], "domparsing/insert-adjacent.html": [ "e5e03abc181a33da94810491d77060922b905d1a", "testharness" @@ -570970,7 +577223,7 @@ "testharness" ], "domparsing/xml-serialization.xhtml": [ - "71944bd6e03639c4736db03b651e265d103cf5cf", + "b62d4cf898f819ccaf02769de3af12cdc80cea7e", "testharness" ], "domxpath/001.html": [ @@ -570989,8 +577242,8 @@ "4842d40e22e25ee72536946d785a3cd03bc6a11d", "testharness" ], - "domxpath/interfaces.html": [ - "6848bd27f62d93fa527684c5625a42f4dc6470c2", + "domxpath/interfaces.tentative.html": [ + "e9539407a212ee2c3603b15d30f7840e0824d01d", "testharness" ], "domxpath/xml_xpath_runner.html": [ @@ -571241,6 +577494,10 @@ "821cc4fefcfce96832c1a4547698801b554ae426", "support" ], + "editing/data/insert-list-items-in-table-cells.js": [ + "f6e8969d30a53e42c6adace5bd9598862b92c611", + "support" + ], "editing/data/inserthorizontalrule.js": [ "118414ee839b94b9a747e0dfd2068d728c171db7", "support" @@ -571437,6 +577694,10 @@ "1bed1283ad3b220b2949c0720cba60105c888ec2", "testharness" ], + "editing/run/insert-list-items-in-table-cell.html": [ + "7bb730a43273a9220ef491511acbdd5c91fbc9b7", + "testharness" + ], "editing/run/inserthorizontalrule.html": [ "49b66e6425c8d7d8c3c7b63070a745483bcfc46f", "testharness" @@ -571534,11 +577795,11 @@ "testharness" ], "encoding/api-invalid-label.html": [ - "03709b6005a96c42a80c4db5a71874fb3d0c3f6f", + "38912a0e00f769ff9c116a5871b3691d059a4ef9", "testharness" ], "encoding/api-replacement-encodings.html": [ - "6a7d970c4228c341332acc2779fb94416c7d380a", + "ea956ff139f386abf52226d981dbb5ec0e3f2a38", "testharness" ], "encoding/api-surrogates-utf8.html": [ @@ -571549,6 +577810,38 @@ "b9635c43ce159e1961106b039dce0e3d04fade34", "testharness" ], + "encoding/eof-shift_jis-ref.html": [ + "55ac2be8c2cce3bae0ea1e61f5c330c38adc1e9e", + "support" + ], + "encoding/eof-shift_jis.html": [ + "c5f6bd10724c2186f9c3347a8eca29627c8fcb5d", + "reftest" + ], + "encoding/eof-utf-8-one-ref.html": [ + "88e83397cb0e375bc9c84ddedfe60aa5cb11a667", + "support" + ], + "encoding/eof-utf-8-one.html": [ + "8f89ca912cc4d01dc9cb72e027aef26e1d0cb2a6", + "reftest" + ], + "encoding/eof-utf-8-three-ref.html": [ + "48dbb873550d0fb33c45a4ab4fff03654b1732b2", + "support" + ], + "encoding/eof-utf-8-three.html": [ + "b04b8002836ea0f476b65270bb2b5797ffec5fdd", + "reftest" + ], + "encoding/eof-utf-8-two-ref.html": [ + "ef39f0e0af97a88ceaf652a9df0b2cd07719bff5", + "support" + ], + "encoding/eof-utf-8-two.html": [ + "dd855efd3ea7bd865c35c105506473fb7731bc36", + "reftest" + ], "encoding/gb18030-encoder.html": [ "6f091a64de33492bd17ecbd37f5db0fff9af499a", "testharness" @@ -571562,7 +577855,7 @@ "testharness" ], "encoding/iso-2022-jp-decoder.html": [ - "551248ae4bf66d051697af82978f21c6d4812d1a", + "c189c2f99ee066e9419fdebef5d620edf97cd785", "testharness" ], "encoding/iso-2022-jp-encoder.html": [ @@ -572301,8 +578594,16 @@ "22f0299c5a8741c6585c3f56b471d6970d0bb499", "support" ], + "encoding/replacement-encodings.html": [ + "10ebae214ee7307c8087206a318ce8b5765ed8e9", + "testharness" + ], + "encoding/resources/decoding-helpers.js": [ + "e8e58f30dff991e6aa6a20553081a1754bf02300", + "support" + ], "encoding/resources/encodings.js": [ - "27b7c95700ec1b5bfa45257574a01cf9ff30ca96", + "66626403db30a2778878a187df339b0bfd767495", "support" ], "encoding/resources/single-byte-raw.py": [ @@ -572313,8 +578614,40 @@ "f94642c1168f0c3d51a97c61c32ccec7627a0cf0", "support" ], + "encoding/resources/utf-32-big-endian-bom.html": [ + "e428533955536e3cf6bbf419aeb2555f96b5ecfa", + "support" + ], + "encoding/resources/utf-32-big-endian-bom.xml": [ + "589c6770f4a150b81aa659d911a3c5c9b225ed6c", + "support" + ], + "encoding/resources/utf-32-big-endian-nobom.html": [ + "8096ff53475f7b14a58d92f2adf18d41afd85588", + "support" + ], + "encoding/resources/utf-32-big-endian-nobom.xml": [ + "b0a3c5cac44538fcc406141594de0e7766033a68", + "support" + ], + "encoding/resources/utf-32-little-endian-bom.html": [ + "670d1ed741f53318a4b6d81c8716ca2fe8d50e99", + "support" + ], + "encoding/resources/utf-32-little-endian-bom.xml": [ + "c1e0bfcdfa5362bdcf3a9a465da3c3e489e5941e", + "support" + ], + "encoding/resources/utf-32-little-endian-nobom.html": [ + "8ffd4f3df1709d9b8b3ee44a165adfe335e56c1b", + "support" + ], + "encoding/resources/utf-32-little-endian-nobom.xml": [ + "79133d037352faca749753860fc9146e111ca083", + "support" + ], "encoding/single-byte-decoder.html": [ - "ca7c90ca9a5617b3c59b692707481ff0391fe2ef", + "2f64550e5e845fa2de949577f0756a021bede269", "testharness" ], "encoding/textdecoder-byte-order-marks.html": [ @@ -572361,178 +578694,18 @@ "2a65ef4f2ef610cffcb121998b7397568c197afb", "testharness" ], + "encoding/unsupported-encodings.html": [ + "7fecb06dda9672e97759aaa8bc18e636b6b1480a", + "testharness" + ], + "encoding/utf-32.html": [ + "d2d4255745538e257877dab134f0604d40ee4972", + "testharness" + ], "encrypted-media/EncryptedMediaExtensions.idl": [ "ef1f1432c42fc6d01f3bfbd576fa5c7de349de96", "support" ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-async-creation-with-gc.html": [ - "4bf7d927ae93edf03588ce712b7e27f37859b18a", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-async-setcert-with-gc.html": [ - "170de67a99dd81e377a623533ca00af6719cd6d9", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeys-with-session.html": [ - "601cb2597fe11b1f8cb154eeb6c2695578c8d553", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeys.html": [ - "4cb533e0d57649061786ab287ca2f5ed090e0873", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-reference.html": [ - "ca8196c6c789a19c0c794621e869775b2a3bcfa5", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-release-noreference.html": [ - "d4cd32f329466db1f102b21b4e41b58b97877a4f", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-mediakeysession-release.html": [ - "82c9c656d979220ccb82c184958f0d11a42e6a65", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-multiple-mediakeys.html": [ - "5acbbaef680c82548547dc50d5f3ee74a3b72b51", - "support" - ], - "encrypted-media/Google/chromium_specific_disabled/encrypted-media-lifetime-reload.html": [ - "2c53d399a2e912386140cca469abd2fbc4dddbf2", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-check-init-data-type.html": [ - "4fa60672a3924b333b9c5e36c5d3cc7eadb7f6f5", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-clear-key-invalid-license.html": [ - "41d9eab593a085430785ee2a67fc32c574602d2b", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-clearkey-update-non-ascii-input.html": [ - "158e0ca659711220f915f49f04aa437d99c6a9fd", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-events.html": [ - "c5d7bd409b2bdf27e4c8940eb5e15909ae87cd83", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-generate-request-disallowed-input.html": [ - "74cac87a8e39dc2d85be5ad988941bea111f4f21", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses-multiple-sessions.html": [ - "3cc12d72464372f31ff1c5e83b2b206aadf8b74e", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses-multiple-updates.html": [ - "f3dbde8b9547006d15a31edde8715f24fceab81a", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-keystatuses.html": [ - "32e620b28b00b303a4201776d1a81e8a2b5e24f7", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-not-callable-after-createsession.html": [ - "71e8a6af936282d387ec3a447f3e01e2c1ac3eae", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-onencrypted.html": [ - "49851872e6fabdfe26aa0d586f9f5a9dfbf15a33", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-encrypted-and-clear-sources.html": [ - "e827dcd75b1f2346af3144ec3ebaabd8c4cab460", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-multiple-sessions.html": [ - "c7ffa43ac0ae56b7963d7a778620a770c8a02017", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-setmediakeys-after-src.html": [ - "4f7c2fa646541f43f15a4388f2dd3e0e8a14fe2e", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-setmediakeys-before-src.html": [ - "8e3486fd92e20266d5c349a1d4e5b29a542f63ef", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-playback-two-videos.html": [ - "e65661fed4695cd7f48336ca93ac2ef26f6972ce", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-requestmediakeysystemaccess.html": [ - "34f70ddbe8ff6446a6ddfa5063f940b44a6d8ce8", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-reset-src-after-setmediakeys.html": [ - "e39afa26d69eac1df32ed29c538143c3e7b4481d", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-session-closed-event.html": [ - "85fc8a51e8695a6a7693d9454be641b81e78388b", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-again-after-playback.html": [ - "da42d7b56708d2e59ae5d8e31652503543afae1a", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-again-after-resetting-src.html": [ - "43e42c6656c11ab484c0241e49a2f6e787748d0d", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-at-same-time.html": [ - "35543cce1af1162a91074eebb79eddf60f7b2ff7", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-multiple-times-with-different-mediakeys.html": [ - "346f5299bd52389afcb1b8a60277aa8b2f348c79", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-multiple-times-with-the-same-mediakeys.html": [ - "ceb74fe2cbc893811994762f6036eb81689ef963", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys-to-multiple-video-elements.html": [ - "2fcdf02ec3eba9939085f69c08e387650f6b9037", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-setmediakeys.html": [ - "919f2e188651fa149768e2c44ec2b1651af640e9", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-syntax.html": [ - "24b6b998dd24262266d7db59ad145b9bd593dd3b", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-unique-origin.html": [ - "c431ff8f40b11154c77379417d0daf847b9f8d10", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-update-disallowed-input.html": [ - "62eec52b508eafc22fb2d87b508f5783074cf94a", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-utils.js": [ - "269a439028fa20fc47749d41e0996e552c95f053", - "support" - ], - "encrypted-media/Google/migrated_to_root_disabled/encrypted-media-waiting-for-a-key.html": [ - "e816554176c28647fb99dddd024891d707a17f37", - "support" - ], - "encrypted-media/Google/webm/test-encrypted-different-av-keys.webm": [ - "60180fbdbe12fbff4fd522f1f5e5b3819353cedf", - "support" - ], - "encrypted-media/Google/webm/test-encrypted.webm": [ - "18e27236cc12e8b7cdc03e4d054aac4267d5b948", - "support" - ], - "encrypted-media/Google/webm/test.webm": [ - "f911e3e592b8bffe019df73dc6b760ecf32e7a75", - "support" - ], "encrypted-media/OWNERS": [ "be399305ba6e44e2637e9eff68a95f018c8154a8", "support" @@ -572969,6 +579142,10 @@ "85124d35b37f14c143e1fcb2965f131a8f2a3391", "testharness" ], + "encrypted-media/encrypted-media-default-feature-policy.https.sub.html": [ + "aa376680149e53e4839dc48b45291264fa5d6960", + "testharness" + ], "encrypted-media/idlharness.html": [ "69456d56a5485b04465f4f6ee4abc80388703fd9", "testharness" @@ -573221,6 +579398,114 @@ "17c7a7646bd10a09035bfbc48f6a29c033b44bda", "support" ], + "entries-api/OWNERS": [ + "892d667b4e54cc48435f07f8a2f443b8b67f33b7", + "support" + ], + "entries-api/errors-manual.html": [ + "baf8ef0435c4da686a5ed5e728a22fee317c2548", + "manual" + ], + "entries-api/file-webkitRelativePath-manual.html": [ + "d9d64ee2a22291df02e5fda92eb33c036ca07314", + "manual" + ], + "entries-api/filesystem-manual.html": [ + "fe56daafee4f7c23f875d4c24c68fa3e3b4c4049", + "manual" + ], + "entries-api/filesystemdirectoryentry-attributes-manual.html": [ + "855122ab0d4790fb0d48ffb8b6d97536455ed22b", + "manual" + ], + "entries-api/filesystemdirectoryentry-createReader-manual.html": [ + "b93968171378f0d2ff27bacf7e60a8572634c935", + "manual" + ], + "entries-api/filesystemdirectoryentry-getDirectory-manual.html": [ + "59522acf10160f6cd651abb78d02ce9270814d52", + "manual" + ], + "entries-api/filesystemdirectoryentry-getFile-manual.html": [ + "d2b2d4609831db0105c5c6a0f793ba3f646a3072", + "manual" + ], + "entries-api/filesystemdirectoryentry-getParent-manual.html": [ + "115031830a8232983d10992abb367abdd8038313", + "manual" + ], + "entries-api/filesystemdirectoryreader-manual.html": [ + "7466297ac6444c4f072b5cca00e5fa1922c3e63e", + "manual" + ], + "entries-api/filesystementry-attributes-manual.html": [ + "87c24ffc18dcf0bc52c7c19f20e13d1a5a2f0238", + "manual" + ], + "entries-api/filesystementry-getParent-manual.html": [ + "bd201000007e44bd8ad7638cef2d0e9d59b08779", + "manual" + ], + "entries-api/filesystemfileentry-attributes-manual.html": [ + "c0a146470cf512eecb674bb4144377f693bf2b5a", + "manual" + ], + "entries-api/filesystemfileentry-file-manual.html": [ + "e08af68d276923d00e7ac34e7e62284c8399f4d8", + "manual" + ], + "entries-api/filesystemfileentry-getParent-manual.html": [ + "b0b391227a3dbbbb81f4d5601f7678597321d411", + "manual" + ], + "entries-api/interfaces-manual.html": [ + "2e92f27db496e6463372faaabf733fd5b3bf7d94", + "manual" + ], + "entries-api/interfaces.html": [ + "0ba0779cb78e322054b7c4d268d0697b747d6cb9", + "testharness" + ], + "entries-api/interfaces.idl": [ + "7fc7361fd635d7377169a756c3369c082f41d5d2", + "support" + ], + "entries-api/support.js": [ + "e8a802cfcd96ceb96db13d86548513f2df4d7654", + "support" + ], + "entries-api/support/a/b/c/3.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/a/b/c/d/1.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/a/b/c/d/2.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/upload.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/upload/file.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/upload/subdir/1.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/upload/subdir/2.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "entries-api/support/upload/subdir/3.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], "eventsource/OWNERS": [ "33d87cb2e49f774dbe822d1d6c0291c646a76785", "support" @@ -573234,7 +579519,7 @@ "testharness" ], "eventsource/dedicated-worker/eventsource-constructor-non-same-origin.htm": [ - "559eef919d29e8db8d0e8c58d71803d3ceb9d761", + "9614ac5ce1967bbbcae6a1cc8d64465579f6410d", "testharness" ], "eventsource/dedicated-worker/eventsource-constructor-url-bogus.htm": [ @@ -573274,7 +579559,7 @@ "testharness" ], "eventsource/eventsource-constructor-non-same-origin.htm": [ - "a4c501a1bd6dbc04dbead8326b5f804a2b832be1", + "6585a2c3f3335dacf045db66d4754e9a1d808cbd", "testharness" ], "eventsource/eventsource-constructor-stringify.htm": [ @@ -573365,6 +579650,10 @@ "5704f240a4b83319e1ad436caebec40f5005e946", "testharness" ], + "eventsource/format-field-id-null.htm": [ + "07ae9f25d3b1c85b2518bb92a3dcd0250b8c08dd", + "testharness" + ], "eventsource/format-field-id.htm": [ "a33303664c6604026bcde699386d8d64647066d2", "testharness" @@ -573462,7 +579751,7 @@ "support" ], "eventsource/resources/last-event-id.py": [ - "9f4a48ce1f216200763937429f5a70d2f356b611", + "60b7b62c4f825b69f8354729a0fb6d9c216b2d05", "support" ], "eventsource/resources/message.py": [ @@ -573490,7 +579779,7 @@ "testharness" ], "eventsource/shared-worker/eventsource-constructor-non-same-origin.htm": [ - "a9814bf1b62a81a39012d85d4a2daa4e58e2e298", + "f3ce1138c30cb749d35b9843364a5b9735646a4c", "testharness" ], "eventsource/shared-worker/eventsource-constructor-url-bogus.htm": [ @@ -573537,20 +579826,96 @@ "eb60703976142de7a5565928a25d875ef142da0a", "support" ], + "feature-policy/OWNERS": [ + "51fd9c99d8f327e033d8bb1a2500b5143d333287", + "support" + ], + "feature-policy/README.md": [ + "711c323f1690b0dbe780461241ad825cdd3cf274", + "support" + ], + "feature-policy/payment-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + "8595732f7794f10107ef234fe6e37cc12c80eeaa", + "testharness" + ], + "feature-policy/payment-allowed-by-feature-policy-attribute.https.sub.html": [ + "7f00979fb8e60e938bfa816786705c95e611d2f3", + "testharness" + ], + "feature-policy/payment-allowed-by-feature-policy.https.sub.html": [ + "762f4d517150b10438fca8571204caae79e00278", + "testharness" + ], + "feature-policy/payment-allowed-by-feature-policy.https.sub.html.headers": [ + "038c90f26cb5c16047c294aa35a0b0251324dbc6", + "support" + ], + "feature-policy/payment-default-feature-policy.https.sub.html": [ + "6980a706cca09eaeb2d63d6780a5e0a89ff52fa5", + "testharness" + ], + "feature-policy/payment-disabled-by-feature-policy.https.sub.html": [ + "942104579b3710532d35bab01f9f387d5ed04fe0", + "testharness" + ], + "feature-policy/payment-disabled-by-feature-policy.https.sub.html.headers": [ + "09f612159dc367bad5febc8e0a724f0a284517d5", + "support" + ], + "feature-policy/resources/feature-policy-payment.html": [ + "958b32f77b02f2ff80cf174aadac62237d79056b", + "support" + ], + "feature-policy/resources/feature-policy-usb.html": [ + "96ae900bcde19a4ffcab30f1d01b393e07936e99", + "support" + ], + "feature-policy/resources/feature-policy-webvr.html": [ + "57a94b461d4be6a179a53d199dfdd9a2b096d0fb", + "support" + ], + "feature-policy/resources/featurepolicy.js": [ + "c8fac11b41aa98314aeca32d88e3027ba6aa92d1", + "support" + ], + "feature-policy/resources/redirect-on-load.html": [ + "5d9d75fc156f6d5a934a1aca7aa2b4a8e238dd4f", + "support" + ], "fetch/OWNERS": [ - "e62831c5bfccaebe49384f42c515ece1b65244bb", + "41230bc6bb795469b2d6534b00db50477637e1ee", "support" ], "fetch/README.md": [ "cc3f679ff78bf2e3b39cf967102c257b84fd7680", "support" ], + "fetch/api/abort/cache.https.html": [ + "9465007a35059e9d72d4ab1dd8bff0d44f47c3d6", + "testharness" + ], + "fetch/api/abort/general-serviceworker.https.html": [ + "ea0eda077eb4a5a234ad3b97595da16aee178fc9", + "testharness" + ], + "fetch/api/abort/general-sharedworker.html": [ + "96563c4324949b5dece964eaf6df0b25324e8365", + "testharness" + ], + "fetch/api/abort/general.any.js": [ + "784c14c7fd5a605d380584aeefb35392579f21d9", + "testharness" + ], + "fetch/api/abort/serviceworker-intercepted.https.html": [ + "ee3512098bed44d034d9a0e6f2ccdbd5a07c7e42", + "testharness" + ], "fetch/api/basic/accept-header.any.js": [ "ab322023411faca98534f620806b2418a6767e64", "testharness" ], "fetch/api/basic/block-mime-as-script.html": [ - "1dd503f1537b09f7aa875ea9a636d587b03601e3", + "63ec2123a1f652ddd34d63bed20494068222c98d", "testharness" ], "fetch/api/basic/conditional-get.html": [ @@ -573574,7 +579939,7 @@ "testharness" ], "fetch/api/basic/integrity.js": [ - "cc098024968701fc4069ea3d70d2c16743731309", + "c697c5f11dec146f814d19472a8b94b0f50b1ae5", "support" ], "fetch/api/basic/mode-no-cors-worker.html": [ @@ -573690,7 +580055,7 @@ "testharness" ], "fetch/api/cors/cors-expose-star.js": [ - "393131f216961ca07a225d61a5b51726d8b02c51", + "2403a7d229377d03230f32383e71960e32a84271", "support" ], "fetch/api/cors/cors-filtering-worker.html": [ @@ -573725,6 +580090,10 @@ "7e1bcbd453f80a91f1d61d9a0330854cb2b8a572", "testharness" ], + "fetch/api/cors/cors-preflight-cache.any.js": [ + "734ea38e3bc892c8639033a434ef8de4f4987875", + "testharness" + ], "fetch/api/cors/cors-preflight-redirect.any.js": [ "f4800ef50b830a0dd8b036dcf3e58304c5c7bd8a", "testharness" @@ -573734,7 +580103,7 @@ "testharness" ], "fetch/api/cors/cors-preflight-star.any.js": [ - "5516bbb914b5d2a847d800d5c0f49a6da23b88e7", + "fd336bff06ef9d08b9a728592c9e7bf0c43496db", "testharness" ], "fetch/api/cors/cors-preflight-status.any.js": [ @@ -573782,7 +580151,7 @@ "testharness" ], "fetch/api/headers/headers-combine.html": [ - "0edea47e706ac6fae40ae78665f6a839f04c2b22", + "e0baba8cbe0564aec32db8b893844b99e0fae6c4", "testharness" ], "fetch/api/headers/headers-errors.html": [ @@ -573798,7 +580167,7 @@ "testharness" ], "fetch/api/headers/headers-record.html": [ - "a1daa97525019a1ff4b2951d788c97f6394bf705", + "25ab8a6a8988b529c7023ed50a62f0ac46e20b8e", "testharness" ], "fetch/api/headers/headers-structure.html": [ @@ -574086,15 +580455,19 @@ "testharness" ], "fetch/api/request/request-error.html": [ - "0831d11ecf78cddcc2aef2e2adef09429d918922", + "ec4b12f1eca0a0c64c04269f67194cdc90571e0a", "testharness" ], + "fetch/api/request/request-error.js": [ + "8a4d36d8d179473c04b1f640ebc898c1b10c4b1d", + "support" + ], "fetch/api/request/request-headers.html": [ - "0a645876664c428f6ac8d170e991ccf257bb307e", + "ca4f2d4b881202dc965ac13a06609ac6a2684ffc", "testharness" ], "fetch/api/request/request-idl.html": [ - "56e19a129457bc9dcecf28fd472fd7ae608337ef", + "b2f1431738bd7f389ab43cf8c10aed3b0d12abb8", "testharness" ], "fetch/api/request/request-init-001.sub.html": [ @@ -574114,13 +580487,21 @@ "testharness" ], "fetch/api/request/request-structure.html": [ - "f1e332f5d3a7ee414fa01411b2534884d10462e9", + "cc2471d809fcf7842c38762614c656bb45bb0fc7", + "testharness" + ], + "fetch/api/request/request-type-attribute-historical.html": [ + "68620f3ea16b7ae1a9f1efde1cd0bb47f1150b9f", "testharness" ], "fetch/api/request/resources/cache.py": [ "3cd7d5191fe33b2f2dab571a4b006d8332fdf42e", "support" ], + "fetch/api/request/url-encoding.html": [ + "1f8a8e00c5c1ba5ae9995ca6561801479b487b3a", + "testharness" + ], "fetch/api/resources/authentication.py": [ "b915aef6ecaacf3484e7a1144ed4769c4ff36539", "support" @@ -574129,6 +580510,10 @@ "a916571cccadbe7dcc59ae1fa60f968b28d1ef47", "support" ], + "fetch/api/resources/basic.html": [ + "eccdc121af21a750b7b75697402fc90b54c070cc", + "support" + ], "fetch/api/resources/cache.py": [ "fe01c89d7bef1b6385f29250a0b458024b3e28ca", "support" @@ -574145,6 +580530,14 @@ "edc7a1d75d7c438ca3cca59f81d03058b3c2758f", "support" ], + "fetch/api/resources/empty.txt": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "fetch/api/resources/infinite-slow-response.py": [ + "dee0fa986bf9ce4fd5cd5127a9945caf1b1a4e6f", + "support" + ], "fetch/api/resources/inspect-headers.py": [ "c9ac2870a45253664da7de1aaf82626fdd1482bb", "support" @@ -574154,7 +580547,7 @@ "support" ], "fetch/api/resources/preflight.py": [ - "80ac2baa426c8760e4f6eb3cda3121e044988113", + "de99c8990074a9f248989cebe7cf1adb0f4ec84b", "support" ], "fetch/api/resources/redirect.py": [ @@ -574162,13 +580555,25 @@ "support" ], "fetch/api/resources/script-with-header.py": [ - "0c988e869e2e7af06bef67a2eba8211554b38323", + "07a90ffa656f67c9774d8080f80456e81750dc0c", + "support" + ], + "fetch/api/resources/stash-put.py": [ + "c7619b1c9d5616bfcdd4c1dc8bc680ab291c8e7e", + "support" + ], + "fetch/api/resources/stash-take.py": [ + "96cf0b3e0ef753633f3ea84e3e0fba95c38ecc6f", "support" ], "fetch/api/resources/status.py": [ "d521bae08fa1ee19e7bbf4301157703e567ad5c6", "support" ], + "fetch/api/resources/sw-intercept.js": [ + "833e7b3a3cd91a6b0482e1a1159aaed59fd63341", + "support" + ], "fetch/api/resources/top.txt": [ "af2c7b4ca07ae6c74d261bc745e174df8ab3ffef", "support" @@ -574178,7 +580583,7 @@ "support" ], "fetch/api/resources/utils.js": [ - "1027bd5e728ae008520ce151722760dbb53a2368", + "d9e65bbd408a906a4d14aa40d4ed20ea2ed9f585", "support" ], "fetch/api/response/multi-globals/current/current.html": [ @@ -574198,7 +580603,7 @@ "testharness" ], "fetch/api/response/response-cancel-stream.html": [ - "3269c6c337a392f95e852d4f6904c51a90e7f652", + "453323c2a0f9a908966df3cb53211c0b0a1fa19d", "testharness" ], "fetch/api/response/response-clone.html": [ @@ -574210,7 +580615,7 @@ "testharness" ], "fetch/api/response/response-consume-stream.html": [ - "7dd429b389a997a879362629985089bad495a227", + "7e990d212ef225ac8475803e01b1772086dbc08d", "testharness" ], "fetch/api/response/response-consume.html": [ @@ -574226,7 +580631,7 @@ "testharness" ], "fetch/api/response/response-init-001.html": [ - "e1d9ffd41e8ff0871b27ca7d33f088a124c09f4b", + "a45bf860ad19e31ff95c3add7b6f4ad7c0573254", "testharness" ], "fetch/api/response/response-init-002.html": [ @@ -574261,6 +580666,10 @@ "8177830f646faeb4678a7c5706e2e9c60e1f1078", "testharness" ], + "fetch/api/response/response-stream-disturbed-6.html": [ + "af3dcd2f8918b5c1365191490d127dcf2cc35cd9", + "testharness" + ], "fetch/api/response/response-trailer.html": [ "9597194813fc6ce3e63a7622eb61f791b8746ec7", "testharness" @@ -574377,8 +580786,12 @@ "94af02c5ca5146386acd4fae5856f89cd244bed1", "testharness" ], + "fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html": [ + "92c4633c3d684de4b1d959dbff4f2bab1eaf15a0", + "testharness" + ], "fetch/security/dangling-markup-mitigation.tentative.html": [ - "1321f79af7ba2b5140605a88f3ea8c92cc1f4de6", + "f7eb7151eb44f6b879beb325e923507f9430a3a5", "testharness" ], "fetch/security/embedded-credentials.tentative.sub.html": [ @@ -574389,6 +580802,10 @@ "09ab38acc0bc980af3e96a61390cd000885b2fe5", "support" ], + "fonts/Ahem.ttf": [ + "cb13ce54ae0c997d219670e6583637967170e40d", + "support" + ], "fonts/CanvasTest.ttf": [ "10a7017b4caead6817aa08b25f14950e6402dd95", "support" @@ -574397,6 +580814,10 @@ "946f23f945163bf9f9da080291b21473f6e1cbd0", "support" ], + "fonts/README.md": [ + "eb192c5fe03811a1b69578c92bf77d8abab89f29", + "support" + ], "fonts/math/axisheight5000-verticalarrow14000.woff": [ "5dbb41e35c4d0676c528c5be029ea90319fc200a", "support" @@ -574682,11 +581103,11 @@ "manual" ], "fullscreen/api/document-exit-fullscreen-nested-manual.html": [ - "5ddaf5fd8c2aef02fc4cefffa80a569e513a5491", + "12715d90017a74434cfab8276acfab5419d39a7b", "manual" ], "fullscreen/api/document-exit-fullscreen-timing-manual.html": [ - "e152a235daa9e5721695c6f347fddd3f111180fc", + "9102264efe1ef6fb7394bfe987637fef359fc8c9", "manual" ], "fullscreen/api/document-exit-fullscreen-twice-manual.html": [ @@ -574701,6 +581122,10 @@ "380e2bef1b6b4ec75dcf041f3ed0185a5805ae44", "testharness" ], + "fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html": [ + "466e83807599b602d1d329a90087cea7f34d0573", + "testharness" + ], "fullscreen/api/document-fullscreen-enabled.html": [ "dd76a7198bdc882285bbc01e8ee6379c52237350", "testharness" @@ -574713,12 +581138,12 @@ "ed8836f302fffdaa407bf9bf7799effa17fb6823", "testharness" ], - "fullscreen/api/element-ready-check-containing-iframe-manual.html": [ - "96f14dfff180ed3a78dd5df378c712800a8e1fd8", + "fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html": [ + "f62f912aeff6cd173e6e43aa9634568e32c0104c", "manual" ], - "fullscreen/api/element-ready-check-enabled-flag-not-set-manual.html": [ - "ca0144cfc4bdb114c6fe22ebe5fe65eff9cfc1bd", + "fullscreen/api/element-ready-check-containing-iframe-manual.html": [ + "96f14dfff180ed3a78dd5df378c712800a8e1fd8", "manual" ], "fullscreen/api/element-ready-check-fullscreen-element-sibling-manual.html": [ @@ -574733,6 +581158,14 @@ "80bd222b0199b284ea5b554e2798860773d51ea2", "manual" ], + "fullscreen/api/element-ready-check-not-allowed-cross-origin-manual.sub.html": [ + "38efc0453dd398700e0b2d2518f6348162b5e06e", + "manual" + ], + "fullscreen/api/element-ready-check-not-allowed-manual.html": [ + "ca0144cfc4bdb114c6fe22ebe5fe65eff9cfc1bd", + "manual" + ], "fullscreen/api/element-ready-check-not-in-document-manual.html": [ "a840821f2e75f14d43d385f79de359c37e529921", "manual" @@ -574742,11 +581175,11 @@ "testharness" ], "fullscreen/api/element-request-fullscreen-and-exit-iframe-manual.html": [ - "870575cb59c5a7f76097e19da8b3854120d6cb86", + "6b06ccdca77fda2a6777a6b22ca1dd6baadd65f7", "manual" ], "fullscreen/api/element-request-fullscreen-and-move-manual.html": [ - "29fb0d686ac510d169fbc10ca98eaed599f292df", + "5a4ee7d6ebcb448b58f61c9334f0585dba49a3f0", "manual" ], "fullscreen/api/element-request-fullscreen-and-move-to-iframe-manual.html": [ @@ -574761,6 +581194,10 @@ "86c1ac20aa86e860cfa8f05a9873f3a3cddbdcd9", "manual" ], + "fullscreen/api/element-request-fullscreen-dialog-manual.html": [ + "46033232549f3b3333443a97d23d0229c9705b24", + "manual" + ], "fullscreen/api/element-request-fullscreen-manual.html": [ "ed7683b3c4a7134b640e07a7329a21361b122402", "manual" @@ -574773,12 +581210,16 @@ "8991e8df530fa7c24a9e084f2ab17fa9c70fb120", "testharness" ], + "fullscreen/api/element-request-fullscreen-null-ns-manual.html": [ + "5fe4a901e450a2f3e52866bc61324571866fb879", + "manual" + ], "fullscreen/api/element-request-fullscreen-same-manual.html": [ "10b6ff2c859c50516209735dd1bdc3ea4d24f330", "manual" ], "fullscreen/api/element-request-fullscreen-svg-rect-manual.html": [ - "c22355542ab46b4981dbca8c30b8e44da258998f", + "2efd96350b1c3de0efc1e2b3d1aa603cfe7e7738", "manual" ], "fullscreen/api/element-request-fullscreen-svg-svg-manual.html": [ @@ -574786,7 +581227,7 @@ "manual" ], "fullscreen/api/element-request-fullscreen-timing-manual.html": [ - "4c4b93ed28a9c778a80f277e39b2f406900baf28", + "4ecd76a2ef773172d45f656f52a7358be2a4568d", "manual" ], "fullscreen/api/element-request-fullscreen-top-manual.html": [ @@ -574809,6 +581250,14 @@ "9d9bec938f185b2461da4d00a5683ad5d07ee577", "testharness" ], + "fullscreen/api/resources/attempt-fullscreen.html": [ + "33e277b3f06677f14eed442ecce76b408e7e006e", + "support" + ], + "fullscreen/api/resources/report-fullscreen-enabled.html": [ + "ba59db02939bc5ba00825befe4777c66cee64b4c", + "support" + ], "fullscreen/interfaces.html": [ "f6f0dbc8a505896a0e7ec7aca2746bbd5c1eb7d9", "testharness" @@ -574817,6 +581266,10 @@ "818cb1b5db729db4959591dc75d4bb1ae3c7542d", "manual" ], + "fullscreen/model/move-to-inactive-document-manual.html": [ + "552d65141acc2221e8407316c02e0d4cf17db7eb", + "manual" + ], "fullscreen/model/remove-child-manual.html": [ "b1142930c6c972057213bd477cf116fcc9e7fc2a", "manual" @@ -574837,6 +581290,14 @@ "c7fc8323d503adb6d7f0c390a8add90c5c9e8082", "manual" ], + "fullscreen/rendering/fullscreen-pseudo-class-manual.html": [ + "258b3c119a6a9ea7220a339b0d8e4964b8fb2a5e", + "manual" + ], + "fullscreen/rendering/fullscreen-pseudo-class-support.html": [ + "0cdfe5cf8321b6c46a75a2f75f6224970368d4ae", + "support" + ], "fullscreen/trusted-click.js": [ "e401e8e8bcd97446991398d6021a9bd712c923c5", "support" @@ -574846,35 +581307,35 @@ "support" ], "gamepad/events-manual.html": [ - "681164d632f32528a17a58325fd8c3f33ae6217b", + "3a3873da02cde40cd459bcb4d692546f1d862d3d", "manual" ], "gamepad/getgamepads-polling-manual.html": [ - "f671c5211d4af9b43061143d5efb51f88820726d", + "5d3f77b11fa30687bf6e9042c51d88ce51c9cf6a", "manual" ], "gamepad/idlharness-manual.html": [ - "7f517fdc63f99ada3c56633daf16f15fd65ac638", + "b7feb12fc02bc656eb41f406999481d204293c08", "manual" ], "gamepad/idlharness.html": [ - "5a3fc1b9be284ad92d9cc252325e6f8eae02e1cc", + "c9d8668d614404f24a8bf15d803e07e2ff6debd4", "testharness" ], "gamepad/timestamp-manual.html": [ - "97bd408b075ab77dde7602073a6757f722ecc1ad", + "b2432e7ea263fb80be42e7eecf93a9d885c0205d", "manual" ], "generic-sensor/OWNERS": [ - "0a3ea46f600d1af4fb6f4a9777812476c3c66fcc", + "b1349055762c7d44414c0c11fb8500d5eee9a75f", "support" ], "generic-sensor/generic-sensor-tests.js": [ - "7b36a69dd7d9148f70a1d40d4108dcd747cb2913", + "0b89e14eadd32fd23202977471c9913f5213dce4", "support" ], - "generic-sensor/idlharness.html": [ - "0e3f29a3a065a3db2f6e0e77d9c6bbdf47bf5ca8", + "generic-sensor/idlharness.https.html": [ + "fdb816b5036bae53a60672d3b6910ddb06dd9d51", "testharness" ], "geolocation-API/OWNERS": [ @@ -574938,7 +581399,7 @@ "testharness" ], "gyroscope/Gyroscope.https.html": [ - "03510d4964a52a53fc7648b5435e810e75ea747a", + "504abfa42529e08576e49c3296464bcea5fe0b8a", "testharness" ], "gyroscope/Gyroscope_insecure_context.html": [ @@ -574950,17 +581411,13 @@ "manual" ], "gyroscope/OWNERS": [ - "36770a71443523aa2f91f9958ba24066f0b4dcec", + "b119dbb984792f33c6e7463f3105d37c3c3b7ad8", "support" ], "gyroscope/idlharness.https.html": [ - "567b200f0ea88894bbffbffb6d20ea546f516e7d", + "2aedb883f553cae594afb7c5ef59222c0ee3fefb", "testharness" ], - "gyroscope/support-iframe.html": [ - "b02be6c1cdae86e449b8bf635e18e0b60957bb81", - "support" - ], "hr-time/OWNERS": [ "b82f9756b15ef3ea45fb250e304031d9ceaee9c7", "support" @@ -574970,7 +581427,7 @@ "testharness" ], "hr-time/idlharness.html": [ - "b56993b32650d40226e08beee147bc28c76cfa22", + "337a75247a6b53a7649c7fdf41c2dcdcf093ac11", "testharness" ], "hr-time/monotonic-clock.any.js": [ @@ -574985,8 +581442,16 @@ "289c39cd0c74f3ca28fe5087b75ef01135396594", "testharness" ], - "hr-time/window-worker-time-origin.html": [ - "556079c9d81c55df55c69738384991d31cad2c77", + "hr-time/timeOrigin.html": [ + "f2258619e00dd12ee38958bf251c72acab60baa2", + "testharness" + ], + "hr-time/timing-attack.html": [ + "1d3d88e71fb886374b50c6dc2c1141a80c8c0a06", + "testharness" + ], + "hr-time/window-worker-timeOrigin.window.js": [ + "51267d21c761c3ccaee34bc4d5e533e69d739bc5", "testharness" ], "html-imports/OWNERS": [ @@ -575238,7 +581703,7 @@ "manual" ], "html-media-capture/idlharness.html": [ - "32b3d387100f0e7ecda93d1fb88351680b259df0", + "d6f14981f18dda4e5720cf3e9bf4d4724746664d", "testharness" ], "html-media-capture/support/upload.txt": [ @@ -575246,7 +581711,11 @@ "support" ], "html/OWNERS": [ - "0a32a8fdeb92636cbd5e751c4bd44458d7274abf", + "29a1a9d837b3231ac7d1663c0ea8e41e8ce9d525", + "support" + ], + "html/README.md": [ + "2912eef6630f88093ef850036e7ec812a31f06f1", "support" ], "html/browsers/.gitkeep": [ @@ -575278,7 +581747,7 @@ "testharness" ], "html/browsers/browsing-the-web/history-traversal/PopStateEvent.html": [ - "2a7ed0827fc61af7b3bdd238577887aff1902ea7", + "5a9c575a86adbbbca30734992b4d80c22f3973a1", "testharness" ], "html/browsers/browsing-the-web/history-traversal/browsing_context_name-0.html": [ @@ -575393,6 +581862,14 @@ "d049bc03734690b94017819ed70b1104378cc9b4", "testharness" ], + "html/browsers/browsing-the-web/history-traversal/support/window-name-navigation.sub.html": [ + "79ba1608590fae1fae8aacdf809b00741e101066", + "support" + ], + "html/browsers/browsing-the-web/history-traversal/support/window-name-test.sub.html": [ + "841e6ebed7f83a59b4942be07452ad5c9b8f6519", + "support" + ], "html/browsers/browsing-the-web/history-traversal/unset_context_name-1.html": [ "b3aba3e8d9c277aaf30f8cc6860431ba793ab283", "testharness" @@ -575401,6 +581878,30 @@ "d6a35d1de53be20dd8171b06349edafa4ae32a87", "support" ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html": [ + "16dfcc1f1628c9dab89470a421138ffde85e866a", + "testharness" + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html": [ + "74c59d584d8523ce523a26452767d6212d010234", + "testharness" + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html": [ + "498803de18a2ac26f3d5bb19a470ad058cefa9ac", + "testharness" + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html": [ + "2b0496b919110cc5996c79afdd420905e1d48ea6", + "testharness" + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html": [ + "74ec6353b0b0afa070c745125c09b91d870f38c7", + "testharness" + ], + "html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html": [ + "8865745d26bee3955927f4c9d35a5174578238ce", + "testharness" + ], "html/browsers/browsing-the-web/navigating-across-documents/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -575713,8 +582214,20 @@ "7e24cd47a4ae882b40f7f8798a44faf05f034c3d", "testharness" ], + "html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html": [ + "fb63063e0ff1ca6aaa350fae9b8f01bed5f9771f", + "testharness" + ], + "html/browsers/browsing-the-web/scroll-to-fragid/navigate-helpers.js": [ + "5b318196cb31c35e1b39eccd9e6a131a882f1a90", + "support" + ], + "html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html": [ + "99a355c63562aded2e2b252d989de332e8c12a0d", + "testharness" + ], "html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html": [ - "0af4162b8729fa5a8db73b24469fa91cc012fef8", + "ac172eb5c05ee24b8e3059cbc68851729f1be943", "testharness" ], "html/browsers/browsing-the-web/scroll-to-fragid/scroll-to-anchor-name.html": [ @@ -576225,6 +582738,10 @@ "e8adb6c9e141f07fef45d815a082fffdaed76f49", "testharness" ], + "html/browsers/history/the-history-interface/history_properties_only_fully_active.html": [ + "9e7b6ac657bca8ec1ecf009a5049f1cbd914fec8", + "testharness" + ], "html/browsers/history/the-history-interface/history_pushstate.html": [ "841c9f9cbe19892f9981932ceef07dc30985cf8a", "testharness" @@ -576697,6 +583214,34 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/browsers/offline/appcache/workers/appcache-worker.html": [ + "d4dc559a600b1d197e7b31f960b396da3faa4e42", + "testharness" + ], + "html/browsers/offline/appcache/workers/resources/appcache-dedicated-worker-not-in-cache.js": [ + "4f2e89ef4b23ff17d6c333831cdd81ebf46a9315", + "support" + ], + "html/browsers/offline/appcache/workers/resources/appcache-shared-worker-not-in-cache.js": [ + "e0ca1027ad1077119b95f6a56055417452ab4b04", + "support" + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker-data.py": [ + "5686f9536fc98675e737d703d054370b1398399a", + "support" + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker-import.py": [ + "8dced5671671d536c1e0bb554bf919f7f2f3861e", + "support" + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker.manifest": [ + "284dcbf9adad4bc5d823e654ca889c08f679735c", + "support" + ], + "html/browsers/offline/appcache/workers/resources/appcache-worker.py": [ + "8681ab72485c543d1e22de75cee685478090a848", + "support" + ], "html/browsers/offline/application-cache-api/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -576914,11 +583459,11 @@ "testharness" ], "html/browsers/origin/cross-origin-objects/cross-origin-objects.html": [ - "02e290c300057b9520390e55833194908d74ca76", + "9202ebf4d640ffccec49451bae23526c24a1053b", "testharness" ], "html/browsers/origin/cross-origin-objects/frame.html": [ - "dc9cd0af288e67202b3db551516613a2707201c5", + "7f982fe347ac7fbc14e853d14a2535685a970395", "support" ], "html/browsers/origin/cross-origin-objects/win-documentdomain.sub.html": [ @@ -576926,7 +583471,7 @@ "support" ], "html/browsers/origin/origin-of-data-document.html": [ - "360415417ed0dadfaf947954fbd0cf801dbd5bdc", + "9fec457691ac4b071e9bc8de1ebf6f13dbadd4e5", "testharness" ], "html/browsers/origin/relaxing-the-same-origin-restriction/.gitkeep": [ @@ -577266,7 +583811,7 @@ "support" ], "html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html": [ - "b4aed70f7618d5d5e29350f19b4c1d45c045f9cb", + "8738c9e53e1c71b6b15ea0c3f2f0f9b0e4522144", "testharness" ], "html/browsers/the-window-object/named-access-on-the-window-object/test.html": [ @@ -577326,11 +583871,11 @@ "testharness" ], "html/browsers/the-window-object/window-indexed-properties.html": [ - "22d5cb06bfc4724d27f565b8ffa2280bf2e8538b", + "06d489f3668c963c46c1ed31e9263d8717eab4e7", "testharness" ], "html/browsers/the-window-object/window-named-properties.html": [ - "03bab12397e43003c6a4d768d2faa580501400bf", + "21bb2b7a30381decf8b55152ba33cd723b67b8d5", "testharness" ], "html/browsers/the-window-object/window-open-noopener.html": [ @@ -577718,7 +584263,7 @@ "testharness" ], "html/dom/documents/dom-tree-accessors/Document.currentScript.html": [ - "c7bbd7f042cf5b674217b4435be00b1dfd3af900", + "b8c28696c0974a392a9a62e079934641f57415b5", "testharness" ], "html/dom/documents/dom-tree-accessors/Document.getElementsByClassName-null-undef.html": [ @@ -577858,7 +584403,7 @@ "testharness" ], "html/dom/documents/dom-tree-accessors/nameditem-03.html": [ - "6692f5b790960145e7a94b25227682237cbb4862", + "0887edcb756daa6447497510ea7c8a3967ae8c2f", "testharness" ], "html/dom/documents/dom-tree-accessors/nameditem-04.html": [ @@ -577878,7 +584423,7 @@ "testharness" ], "html/dom/documents/dom-tree-accessors/nameditem-08.html": [ - "5ae6d9718f6568cf9c42a7ebdf2cbae767c68852", + "ffb7fbed3b9e0f2a73907358234136d5a62b6943", "testharness" ], "html/dom/documents/loading-xml-documents/.gitkeep": [ @@ -578470,39 +585015,39 @@ "testharness" ], "html/dom/elements-embedded.js": [ - "e6a9921095e294494dd68c7defdba546ad0c81af", + "5d5d208f38657e9fda1741654909c29807e67d13", "support" ], "html/dom/elements-forms.js": [ - "a8b9288119430a636870a095c7fc2de686808490", + "ed722f36a003a8407c1c4a13f8c75880c4fa9c11", "support" ], "html/dom/elements-grouping.js": [ - "bfcba8c36c5f335f98097716685e15ecb2111ac3", + "29f046b3d2ad973439bfa05724c10796f3560651", "support" ], "html/dom/elements-metadata.js": [ - "7e6becc4e2f4136a1c64d28724d1f21160900dd1", + "f7d5c16c0e69c67a1b49b7a4ed28c14e4f3cf469", "support" ], "html/dom/elements-misc.js": [ - "59a2e8a1f2eddff79c28c72a7ac7aabb0d3dd87e", + "42b4ea21148dd17c442932ba8cb5e6e49db81a93", "support" ], "html/dom/elements-obsolete.js": [ - "fb3e79ce5681b0f20ed06b0d6878aa476e773faa", + "0db0f58ec0efeea46ff53f07f717797b62e4244c", "support" ], "html/dom/elements-sections.js": [ - "c611c450215141a6ad885286d5293007c7c786aa", + "19d908d792ecee4315eee3fa706b5eef5c1557cb", "support" ], "html/dom/elements-tabular.js": [ - "d48ca746757d7745c2ed7bdab4d8403e05a890d0", + "fe1dfcb1eeea3406987df8f05da234155e1e1a8b", "support" ], "html/dom/elements-text.js": [ - "14f242041b89a16a5342a81802fffef4a88be113", + "04b456ecdbc8028566ab39c9d2ffb92a3b6e6d9b", "support" ], "html/dom/elements/.gitkeep": [ @@ -579297,16 +585842,20 @@ "a4f99553c0cdf1c1efab08c85b9e3211b42d5412", "support" ], + "html/dom/historical.html": [ + "75fd4e5379337af2ebcb3cd7d62dbf3d726c4036", + "testharness" + ], "html/dom/interactions-with-xpath-and-xslt/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], "html/dom/interfaces.html": [ - "4c0db96824033d94b98123954254930fb742d7e3", + "c937f2d908ecfae269b95ade6c830414acf0a005", "testharness" ], "html/dom/interfaces.worker.js": [ - "9e91d411453d4fdbcead08ad9daccbe2d9d7a975", + "e0916d634075e22c3542de6729ea762ed4b8f8ed", "testharness" ], "html/dom/new-harness.js": [ @@ -579314,7 +585863,7 @@ "support" ], "html/dom/original-harness.js": [ - "2fe3c2879943e09252123e3c5a16e83ee524afcc", + "d93d680a6ac93c9029cbbca69208cb4f2c94209c", "support" ], "html/dom/reflection-embedded.html": [ @@ -579358,7 +585907,7 @@ "testharness" ], "html/dom/reflection.js": [ - "406cdc2d3a78d7a16d6f6e41430992a36678eb84", + "4d841fe21eb604a563fc4d864e7db13c43de4621", "support" ], "html/dom/resources/self-origin-subframe.html": [ @@ -579414,47 +585963,47 @@ "support" ], "html/editing/dnd/canvas/001.xhtml": [ - "1be7627b79e1b9feddf35bba80ad1927751d410a", + "25faa1e8b5768b4f363e6378275e88378fa28c39", "support" ], "html/editing/dnd/canvas/002.xhtml": [ - "f234a6fd66fe891d3988f29604d78b3f229793c3", + "208ebfcc5e0c70af3259b80d3d3d17551da14585", "support" ], "html/editing/dnd/canvas/003-1.xhtml": [ - "c1d762365128b712d1bec611508e4fc478859b94", + "a4c1933a42fd075efdab5f9a09e02fd7f78ef2f7", "support" ], "html/editing/dnd/canvas/003.xhtml": [ - "9b535ff567cfc74e1f250255d46b7ee5caa84934", + "b694ab3fb1f5da5abec397012c277d2f3244bb57", "support" ], "html/editing/dnd/canvas/004.xhtml": [ - "e9fb6e92505ac2857f3b16b66381590b918a900b", + "3742c51de7b898ef55255b8054d07f2dbd0bd11c", "support" ], "html/editing/dnd/canvas/005.xhtml": [ - "ea313b5304e41dc583d77b5921458f66ab8c395d", + "41ee6b6af56063ce6906a9397cd0dd49c151af4f", "support" ], "html/editing/dnd/canvas/006.xhtml": [ - "f3ca0c3a2bf1e1ca9bcc4433a5824ed608b5650b", + "636d9f561ea73fbf9c76b866b2bdb5169a64f63e", "support" ], "html/editing/dnd/canvas/007.xhtml": [ - "096ccd27482ef1f6fc08cce96e380a518d22d324", + "e8de510b0ea745c4ef0ac4c848f218ebd2c83dff", "support" ], "html/editing/dnd/canvas/008.xhtml": [ - "0da2981bef5f73bd1335af972903aa2a3f6c67c1", + "0fecba9a80d3168aaea464b2d7a18863fb14ee84", "support" ], "html/editing/dnd/canvas/009.xhtml": [ - "cb80e22f43a4d4ef3b4ab4fff8953adb5bfbc26d", + "6d7ad147b1577f15cda3ca8cadc7c3f8402d80d3", "support" ], "html/editing/dnd/canvas/010-1.xhtml": [ - "183878e7af9f67876d11d954e5d69edb5d507a59", + "5dec52bd28e2364695bade6dbd8b7987780402ca", "support" ], "html/editing/dnd/canvas/010.xhtml": [ @@ -579466,111 +586015,111 @@ "support" ], "html/editing/dnd/canvas/012.xhtml": [ - "e811b0316aea33583ad588361b714a2d63374435", + "858dcb5e7ac5bd7353d57013bbdece2492438b7b", "support" ], "html/editing/dnd/canvas/013.xhtml": [ - "0eb0c10dd95d1917017396778889611632e39bd2", + "9e28ff8902aa788e14cfdc8f610c5c440e32cbf2", "support" ], "html/editing/dnd/canvas/014.xhtml": [ - "3b2be9c21d4d7e8db9c74775f678d840a3ec484f", + "078e533b53ded409757e28dfaeb831267cf89b78", "support" ], "html/editing/dnd/canvas/cross-domain/001.manual.xhtml": [ - "223cfc670bf6bf646e60f7999445f27b4462572d", + "0244b56893aca3f8ecc753ba6fb8a39c52d109b1", "support" ], "html/editing/dnd/canvas/helper-drag-me-green-box.xhtml": [ - "589965e23ff624365929851f545368da8dede88d", + "ae2bb9c800762c962da939661eac8ccf84359c8c", "support" ], "html/editing/dnd/canvas/helper-drop-here-canvas.xhtml": [ - "5186014cc341959a0ef1168ef35b80ec3be4f774", + "7f47dfa25d6e8ad4254b346e78a85970a4b15f0e", "support" ], "html/editing/dnd/crashers/dialog-001.html": [ - "aa39f8276af4880e6a16d50937a5d418e4dd2b4c", + "e44bf65332c62960e7524729160d0e6020ff3172", "support" ], "html/editing/dnd/cross-document/001-1.html": [ - "6c893edc75f7182c4ecc91e58b810d1a38b2ee54", + "c50fd160222c5cf3903092e8a310a75f78d03302", "support" ], "html/editing/dnd/cross-document/001.html": [ - "586342248b107f101a0ffd92ea3def6305669776", + "c1127e71064fca74a252ede3790007e548eb99bc", "support" ], "html/editing/dnd/cross-document/002.manual.html": [ - "a9d3e3b030c8492ea865d306435fe3c75fff845f", + "5085fe6eabdbd399fe0b0e1e0b8ea4462da55fce", "support" ], "html/editing/dnd/cross-document/003-1.html": [ - "f4a06dc49c7bd8f9708ade6db0a81d685d7e6349", + "c97f84e931d99e45861f487f46dbaeb599faf27d", "support" ], "html/editing/dnd/cross-document/003.html": [ - "42ce27ee00176b87d5c6f356b5b0388e838bc855", + "2b79c202f553036e4611cef7679da03f1ffc6b7f", "support" ], "html/editing/dnd/datastore/001.xhtml": [ - "6ada93c303445aeacceee4dec72d6d5138d4e117", + "cbfe1701d57968874c26a82f30acfede67946494", "support" ], "html/editing/dnd/datastore/002.xhtml": [ - "c056b4bbf65857556f5b694c8b098e47119e1d82", + "9e72ebc2633f17597d0284c853d3b5cad8d7ee45", "support" ], "html/editing/dnd/datastore/003.xhtml": [ - "f7061f419ad5220110c8e521d030ebdded10cdf5", + "b732ffdae1a675e1d0f61fa9240ec7b874a52a3a", "support" ], "html/editing/dnd/datastore/004.xhtml": [ - "f9c62ccbeba2ef4667a425ae547edd670c37b99f", + "ef0cbd76359951f75b21c9f249bbe5c1054f0f5b", "support" ], "html/editing/dnd/datastore/005.xhtml": [ - "ef97a94405ef0448702c466673e116f587528e5b", + "b8b6fdcd3d2f25b6faf662a09ab2999944b76469", "support" ], "html/editing/dnd/datastore/006.xhtml": [ - "c569325cc53e928e8eb0a319f012078193cfde57", + "0b132084e5d296fdb72c011a2f14f3e5400c7453", "support" ], "html/editing/dnd/datastore/007.xhtml": [ - "4cff7acf01277bf30665efd12dbc14db76e58c2f", + "7592c0eea5e8284a88380d92820cc8aea1c07b4b", "support" ], "html/editing/dnd/datastore/008.xhtml": [ - "bef29ac28a91f50586f48a72809d614ad5e57a37", + "e8a938415e69e5e2409fa9ace70385cb8b8c0330", "support" ], "html/editing/dnd/datastore/009-1.xhtml": [ - "a4a93b9ff882f1019cc076ce5ccf70b7d750b1e6", + "7999b9d244baa5b08abc3f778697ca7504d1f05a", "support" ], "html/editing/dnd/datastore/009.xhtml": [ - "3554d41bb02ffa0ce8ead9cf592d0fa5a4cd51a9", + "19683782c5f97a11d6387aaf04b2b88d4f8e00cc", "support" ], "html/editing/dnd/datastore/010-1.xhtml": [ - "ee71ceb72d678a3dc3548a8685fdaf95a67acc17", + "f9edcf322b957fedde46ad9a1c9c06743a4c1fa6", "support" ], "html/editing/dnd/datastore/010.xhtml": [ - "379158d4db7a985268f0736b60903e7aa3877bcb", + "839fdc009e72608d941f196f554e2306cb18f435", "support" ], "html/editing/dnd/datastore/011.xhtml": [ - "7d64aaba2698dc607ab65c07ea6438f3965c2cce", + "164426a072d0ab8316dfb972421beea259d0c14a", "support" ], "html/editing/dnd/datastore/012.xhtml": [ - "c82c70e029c4c53525216b28bdfe65e225be5ebf", + "441571cf63003deebbfda89733b4bff09a887873", "support" ], "html/editing/dnd/datastore/013-1.xhtml": [ - "01b8b51fc67e005915a8cf4ca5b50722a5b28dcf", + "062116bd5c236902d9a264f4ac1b4156dd105ca4", "support" ], "html/editing/dnd/datastore/013.xhtml": [ @@ -579578,7 +586127,7 @@ "support" ], "html/editing/dnd/datastore/014-1.xhtml": [ - "788340ff047a2f8699f6e2ea46bd63e40d7b2c1f", + "84b4d06f0cc71e054ea17399bde5a407f6ca5e21", "support" ], "html/editing/dnd/datastore/014.xhtml": [ @@ -579586,179 +586135,179 @@ "support" ], "html/editing/dnd/datastore/015-manual.html": [ - "cff27c8b20b2144096042db4ffaa669c5f37c00e", + "e83d2bbe807f1e3e0ab85e7ddcc4d260ccd02ab5", "manual" ], "html/editing/dnd/datastore/016.xhtml": [ - "edf4f8f459927e30c750f0fff7598e1efe1174f2", + "2f991d03217f2c7e224e4bda30b8323368623863", "support" ], "html/editing/dnd/datastore/017.xhtml": [ - "0d5e354c89d6c39a9e88339bfa72acb76a7e21f3", + "3c4af572ccbc3222d1b4d98478aa4a5aa0bf4b6a", "support" ], "html/editing/dnd/datastore/018.xhtml": [ - "e5d800f1664a201731a408bd5bd94e83b171f086", + "2c751723f131d65546cf7e461b709035241233b9", "support" ], "html/editing/dnd/datastore/019.xhtml": [ - "45ce63e603ddf2d02b2dcafda94458645cfad293", + "be50162e53455ad33c00c1f86180ef1353586ed2", "support" ], "html/editing/dnd/datastore/020.xhtml": [ - "90642648299a8d7c8bddfd849cc2c1ccd392a9bc", + "4e4029fd4daa875c9850ae77228c39bac2db62f1", "support" ], "html/editing/dnd/datastore/021.xhtml": [ - "21a7f617c49913aabde18b8277e501464cb98422", + "8ff6517eebc02b23d93c6ed2e4a612e097f4b6e4", "support" ], "html/editing/dnd/datastore/022.xhtml": [ - "acadc5df571b3870f4ce004d95f9d3c3957f2972", + "64dc1b3382a73bd0815fc3f97fe542281831a622", "support" ], "html/editing/dnd/datastore/023.xhtml": [ - "e530e1c958bdc7d03a9041b0467e8ca6e5a5d00e", + "1b5d31c97332dc077c4176e0b6cf57bbccac5c0b", "support" ], "html/editing/dnd/datastore/024.xhtml": [ - "b8818503f0302da271bc8009a7d14107cd0be21d", + "b41f9d3b352e56528b4f444b8d3b8349f65e28c0", "support" ], "html/editing/dnd/datastore/025.xhtml": [ - "bf3c728d9c3876ef9d38fca686385071237aa5a1", + "2f457c9ee14af9ec3ff717411d0d47bf5e306094", "support" ], "html/editing/dnd/datastore/026.xhtml": [ - "649ecd3f7db2dc928b6b68c2d9ac4b38481f9c50", + "439fb6ac660d7f1e360da13a3d3a9f27abd0f9bf", "support" ], "html/editing/dnd/datastore/027.xhtml": [ - "e22380b9dfc402b65227c478e03c25b173068aa3", + "234b8cb4049f8fbe10d8a1454dfbeec126eb3484", "support" ], "html/editing/dnd/datastore/028.xhtml": [ - "bef72fbd38a8dad5fd8f2d7490f8e5172ccd927c", + "9a0a3f5cb589be346592037231758e7a1d8b5e84", "support" ], "html/editing/dnd/datastore/029.xhtml": [ - "656af596fe19424e16c200a6b8123c22cf5e0912", + "8bfb9934d0619b6ff8e56148d0e47f0e54ad672b", "support" ], "html/editing/dnd/datastore/030.xhtml": [ - "4d82f0c1ca17a08a2835470d719c8b3716e5e586", + "a8be17fffcd504adecc98cae68b051d8d01275a5", "support" ], "html/editing/dnd/datastore/031.xhtml": [ - "602725c1632fd796b037e9568f42308cbdb1cb43", + "68dc1f705a6a40ddf58c08373cea219efbe38881", "support" ], "html/editing/dnd/datastore/032.xhtml": [ - "473ad78a90f7c373343b036d80943a76df8c7c0f", + "fb66aee18cbcfb81438c71873d269feb10fa1483", "support" ], "html/editing/dnd/datastore/033.xhtml": [ - "805924d92f90ef9a193ee818678c7120f7e9d62e", + "59bd90bf64dcc0187ab086b419097d7cffdb092c", "support" ], "html/editing/dnd/datastore/034.xhtml": [ - "6fd9493dbfdfc0a2c21bc62609866ca2ac36ffce", + "24c3d37f0ef1fe9e786a635558178f2aeb7cc091", "support" ], "html/editing/dnd/datastore/035.xhtml": [ - "591694a55debdd8dc4d516d8843ccb793cb57823", + "fc3fbdf760497041250d16ca1c0deca0b9aff964", "support" ], "html/editing/dnd/datastore/036.xhtml": [ - "34a3d5c5465d52ed0c9cea1ff2cd95c68fed0022", + "c4699f0292687a2d14968361fa33270e364f2a85", "support" ], "html/editing/dnd/datastore/037.xhtml": [ - "a75b03371ed99117f450d0ed8a7a73fa51e7481d", + "9c935b1e37ad18d8e2813a58deb1b34221831482", "support" ], "html/editing/dnd/datastore/038.xhtml": [ - "6348d44b7b70c52e1ee12ad2d7fc572e9d2ace99", + "1a8bf0c644a7be3303f6900ba36a8d478cd4166c", "support" ], "html/editing/dnd/datastore/039.xhtml": [ - "52d561699193c2930fbc6f03f9508beee61730b7", + "074f91b9f492391604f46479546df38042fe4dbe", "support" ], "html/editing/dnd/datastore/040.xhtml": [ - "b9c076d77017dbaeedf472d6ec3bfe6160e9a32c", + "9317095e8fb3c757038c269c71c5d12d817db080", "support" ], "html/editing/dnd/datastore/041.xhtml": [ - "92e4d94ed77a53d3a653017316a3c5d787153aec", + "338346dff3930e13435509ae3be7a867c2dd2357", "support" ], "html/editing/dnd/datastore/042.xhtml": [ - "cf0686e1b9cb042e87cae8b748ed5b9a828fe144", + "e874d3f6a68549b11941c56ff31cec5a73939410", "support" ], "html/editing/dnd/datastore/043.xhtml": [ - "6c1361b97c157e9d0f965cc858017ef6c068eea2", + "1246ee7632e388f4f004fada7de2f031e2e9829a", "support" ], "html/editing/dnd/datastore/044.xhtml": [ - "96d64f9d8b572fc7fdfec3bff35ad8b8c4f173a2", + "620113902d06e9084155f46686a038afd0452551", "support" ], "html/editing/dnd/datastore/045.xhtml": [ - "e0e5deb255222eb43b97e24cab4ab5f269406544", + "641af47539d994e0af43127a99cb6903d2028a32", "support" ], "html/editing/dnd/datastore/046.xhtml": [ - "19ca0b50603252a91c9a976d39542f196cac93f5", + "0be3a775f70c2ebaea5896ac23e6a25bbed9efb5", "support" ], "html/editing/dnd/datastore/047.xhtml": [ - "ca517ff634ffa17a6090538b48dec7881adb5607", + "73afbbe96610b15316dba954d7fc26e40a350f7a", "support" ], "html/editing/dnd/datastore/048.xhtml": [ - "3c95ee13d0b59c5a019b77e93f213bc9a0cfa444", + "99bc91a0f95a473481b4fb756f3e22696bbb4aa0", "support" ], "html/editing/dnd/datastore/049.xhtml": [ - "eb545d66ee312900feb05713aab5a05e0c79d7da", + "f9c711d777180ce4474d928f995c81eb092ef1df", "support" ], "html/editing/dnd/datastore/050.xhtml": [ - "ce37877ea50a51ed1030e97e00ec91d950e37823", + "4037bd19d75d76fbe16f9f74d92f28f13a3a31e7", "support" ], "html/editing/dnd/datastore/051.xhtml": [ - "387c6203e0fa4aa2359c9868d20968a494433922", + "b2d0f1cac0ad502b90a9ea6ccdc57d4b9d45d518", "support" ], "html/editing/dnd/datastore/052.xhtml": [ - "b9e652b527bef1aae8f431a5a6dfc623ca686c6b", + "62e03b7674a47ddc8ba866cbedcb92dc7623da1e", "support" ], "html/editing/dnd/datastore/053.html": [ - "9ed87e247826530f266634b28708c072c9fc3ac7", + "1ba076ae17da301816f8c2ff55e57497bf97079c", "support" ], "html/editing/dnd/datastore/054.html": [ - "b96eb8f1313cb8de44cfb40c3d7584428aefc3e9", + "ad145d08fa1138a08aa80794891bb1d3eaba509a", "support" ], "html/editing/dnd/datastore/055.html": [ - "5b3b90c0eb8ca85784b9ddf5a4ca2e95b323676c", + "97e3264ff26d2ddb7be954b96b9871a4f05a97e1", "support" ], "html/editing/dnd/datastore/056.xhtml": [ - "65cec0766726a1f4b05eab24023ab3e2a8d61354", + "dcf99c6c630abe58a33deafa4627d1e925515621", "support" ], "html/editing/dnd/datastore/057.xhtml": [ - "2be05f0a14707ba23b8e876f4d7aedbd47cc0135", + "edf84eb03b6b4e58971c21318933e8d9825721ca", "support" ], "html/editing/dnd/datastore/058.html": [ - "3b920bebf4ac1d4f70df4f2fc7189e5d0c697e4d", + "13057825bd2f336ef6a7416706d2ab2e35699ae0", "support" ], "html/editing/dnd/datastore/datatransfer-constructor-001.html": [ @@ -579770,7 +586319,7 @@ "testharness" ], "html/editing/dnd/datastore/helper-drop-box-here.xhtml": [ - "1e499a114f3c920085a511689b4e39cc37969957", + "8fa0b1f257d5b9658e9bd4d344ffeb55445a3bfc", "support" ], "html/editing/dnd/dom/draggable.html": [ @@ -579782,7 +586331,7 @@ "testharness" ], "html/editing/dnd/dom/specials.html": [ - "bb40f046d5e9870380b10f7d8451accc022ee165", + "57c2ec32caff6ecf676ff2bd5b526d690284019c", "testharness" ], "html/editing/dnd/draggable-areas/border-radius.html": [ @@ -579810,159 +586359,159 @@ "support" ], "html/editing/dnd/drop/001.xhtml": [ - "2b74abc5eee9ab3e9fa5d7de22692ec79336af78", + "24e397850658b6053de04bbfdd29022524be3d40", "support" ], "html/editing/dnd/drop/002.xhtml": [ - "6e527248081a6ac9ca4bdf4915d055269477fb0b", + "5684c0f5f5b64e88ceb751e10f39cf0d49b855d8", "support" ], "html/editing/dnd/drop/003.xhtml": [ - "51d5e2fa022a5687201519d95af8efad852c026c", + "fbbaf3f7eb0bbacf3736e383049ad9aabfbf77a8", "support" ], "html/editing/dnd/drop/004.xhtml": [ - "64576e451a193b073b97a8dc6cc0075fc83a7fcb", + "7266f31a33822481284c04fb968f3590f3d1b341", "support" ], "html/editing/dnd/drop/005.xhtml": [ - "1edab5af8b06bac648a66f82236d43ed79b22018", + "92cb23dfc05bc31c57f01e66775d7f96930df626", "support" ], "html/editing/dnd/drop/006.xhtml": [ - "ac331203b470abd8c4bf35990c7f1c8d985546c0", + "6e8290ab04a3f8e658a0d30ec9250eab8d3f6135", "support" ], "html/editing/dnd/drop/007.xhtml": [ - "38563ca8843131922ce77915efe3d5d11eba1f26", + "c5d10cbef1fd6098274d763454f0a71a4503dee6", "support" ], "html/editing/dnd/drop/008.xhtml": [ - "a4d47dc35a02c118e0f5341ffaf49a0e99ba0ec7", + "3f58baf2a6ac2e915d6a00a546ac9ffd7cbe141f", "support" ], "html/editing/dnd/drop/009.xhtml": [ - "87a0d351120ff077c4cd023a10fafcd5cb3df3ba", + "b047bf84999de310acdde45e2608fb48f12993f4", "support" ], "html/editing/dnd/drop/010.xhtml": [ - "6cbf6c0a31054c3f3001f545ea37d86c669d5e76", + "c631a158e3f05be04f5a4d6a98ec9a698ba83039", "support" ], "html/editing/dnd/drop/011.xhtml": [ - "560f3aea6c1ccbb013f991897245ada3dfa89b6f", + "888897e501b49725e721a00d60045a0a6c24520c", "support" ], "html/editing/dnd/drop/012.xhtml": [ - "65928f2e142622e761fd902d1bd6a9bb2090c0d4", + "aa5fc552a18a226f36e50a7340d6965c1f9f6f49", "support" ], "html/editing/dnd/drop/013.xhtml": [ - "55f7e76af0a9c837e7045d61fe2ae140a4d6760d", + "fd127d85e5d969ffec5ddee7c667cd5cbb68bfcd", "support" ], "html/editing/dnd/drop/014.xhtml": [ - "376d2c35a74f22a8394ae0b03301a9897da2c218", + "31a3486801913119659be7ec1381ba3be2608441", "support" ], "html/editing/dnd/drop/015.xhtml": [ - "241932648916d3ebc90eed21d4b87ec93a00d262", + "ac7f273c0dacdcce78820c36bb67aff647d11cd2", "support" ], "html/editing/dnd/drop/016.xhtml": [ - "57e127d0727ea57696da2a187b5186c5b47ab7c4", + "db024d42c52be91b9a9738253a1b6c0e6a78484e", "support" ], "html/editing/dnd/drop/017.xhtml": [ - "87b1dfb5654e2abb63e2d971a5c89f52ed6ce7d4", + "c20f7ab937b9d611e204808c1dc0f32ef2b9fac1", "support" ], "html/editing/dnd/drop/018.xhtml": [ - "6f456ee9073f733291422817bc02148e3f67509b", + "27f1222021882b0cc46a24861b0d2e57bafd16d8", "support" ], "html/editing/dnd/drop/019.xhtml": [ - "ffcb1f247f80d478e4693d0b41343ac6909cb114", + "a8cb06c46b3f0634ad6650278d4b44008c7bedc0", "support" ], "html/editing/dnd/drop/020.xhtml": [ - "ad8fabf96313af648f69e9e72d6d95859bbcfe04", + "4c1fa13a3bc2f8d67e77e818c1aad0088a0a9a47", "support" ], "html/editing/dnd/drop/021.xhtml": [ - "17d0a028e1993686310e260d6bac7f86595913bf", + "1be0403c49267faba196f8cef27b6052e22b6101", "support" ], "html/editing/dnd/drop/022.xhtml": [ - "e13f6895ee96a24f3f7c5dced0e47776ff7f8e81", + "d9201be6529872cac83ceb5f3ac381ba463d35f8", "support" ], "html/editing/dnd/drop/023.xhtml": [ - "20ae0c62b88b3c37d8409192b1dd2676c0477a67", + "ca8c969c96c703eceae44aadabe5a78f8d5fc9a7", "support" ], "html/editing/dnd/drop/024.xhtml": [ - "713aa16f34d004a2a366baaa87411ddb8d5149c1", + "4e56ffe57f1b1f26f8914b4b35adf9d7c704e4a1", "support" ], "html/editing/dnd/drop/025.html": [ - "a8eb922f0a718eb3309f5695cb47fa6eed29ed7b", + "919a5fb16761c6d1eb8f1773d909453a13463569", "support" ], "html/editing/dnd/drop/026.xhtml": [ - "5d253fb6736226833969d2c5d1f48f84116dd9fc", + "44136d8d16ed2b4e08b1ec3e5ebb511118e9abf5", "support" ], "html/editing/dnd/drop/027.xhtml": [ - "969ac5055934d99d03a147ac816e5ebebcdd142f", + "7324b4d272fcfe4ec1d71648327e215aedbf275f", "support" ], "html/editing/dnd/drop/028.html": [ - "2f6f9d7be9a718d35ac61911edaa9cccf7e26830", + "fb26a6d104f1fb191100547f336d13dd97dc3a43", "support" ], "html/editing/dnd/dropzone/001.xhtml": [ - "05a1316e0bcd5cf809163ff3122c3ee07ba4fa17", + "38d79aae8f3d56968d8986025054ddbbb747f050", "support" ], "html/editing/dnd/dropzone/002.xhtml": [ - "7f0781b0a40a43fc473b624de0ee0206624913f8", + "44b291ee5a51105907b17f0e691cdae46f03e57f", "support" ], "html/editing/dnd/dropzone/003.xhtml": [ - "b29a01b43b94dbbe14ff350b9b8bcfea205c8452", + "c0b249b4ec5dea43e0056e6943aa74df95012e7e", "support" ], "html/editing/dnd/dropzone/004.xhtml": [ - "3acda27a371529e9b8ea5e356807de538a771454", + "b6301de35bb5d2930e57fdc59c0db4e6d6104126", "support" ], "html/editing/dnd/dropzone/005.xhtml": [ - "45ae9fed34960b94f45814566026e46249a0d6f2", + "633f73e16434c6c30ccf6b3f6e9b6d1fdf817c1c", "support" ], "html/editing/dnd/dropzone/006.xhtml": [ - "7c18415c9c5aec973ca451a6b88083bf602cd1dd", + "87097f7c2d92f35fd8a983ce5e02cb021b8efd12", "support" ], "html/editing/dnd/dropzone/007.html": [ - "be82258ff1f8af84b921f884d8ff1caa510ebe3b", + "3e87148c605eb3371091bb6fc371850b6ec0191c", "support" ], "html/editing/dnd/dropzone/008.html": [ - "e013a7b2096975f4ae8a8ce42a8a09202b758f26", + "8ddc3e93df7e8916894ba3801e43d3e66b78c4d4", "support" ], "html/editing/dnd/dropzone/009.html": [ - "9e58e53347c70e2994d44b578aa5fd3d8309dca7", + "ab37e7ed86b74fb7fa84c20eed26c4f39c6e9b9c", "support" ], "html/editing/dnd/dropzone/010.html": [ - "2b7c3a4f357b66129c778e9545ec4cdb4878c8ba", + "30fb52bc55bf02f84e378e3349b32043dc6f59eb", "support" ], "html/editing/dnd/events/001-1.xhtml": [ - "e53e5f7f02e79d26d0c03bbfb17774223ee2a1e4", + "827b751a01bfffcf86c41f931a5a81bc2321da5f", "support" ], "html/editing/dnd/events/001.xhtml": [ @@ -579970,7 +586519,7 @@ "support" ], "html/editing/dnd/events/002-1.xhtml": [ - "5a5725f77d998ac27cc1c2e3d7a4a99819f38f11", + "63705a995d1f6ae0520b868b2547d1e79fc7d07f", "support" ], "html/editing/dnd/events/002.xhtml": [ @@ -579978,7 +586527,7 @@ "support" ], "html/editing/dnd/events/003-1.xhtml": [ - "1369cc8644efd1570dd5ef3c052444cc3c8f7bca", + "96ea6854e84e1413152b5c3b1b01cc6ea5b2af30", "support" ], "html/editing/dnd/events/003.xhtml": [ @@ -579986,167 +586535,167 @@ "support" ], "html/editing/dnd/events/004.xhtml": [ - "13064c739d98dc443392edcb8c2ecadc24d09774", + "c3506bb0049272373ac42d553b072aa159e114f3", "support" ], "html/editing/dnd/events/005.xhtml": [ - "f80626443852d4a535b8116940b938560636a3bc", + "b4e1157d2f0126e9f71eb32c895fc1a6ba7b8199", "support" ], "html/editing/dnd/events/006.xhtml": [ - "e422e7d7d1611b265ee8c94a71d6b447fd1ebb24", + "c6e79411523b04c5e847bb6d3be4cb899a7f03af", "support" ], "html/editing/dnd/events/007.xhtml": [ - "dc57e0784a950ec9a5ffa7a888573f8f98f21b61", + "b67e51e7cc1b9c64950e77ddf12fcc14ec717ba0", "support" ], "html/editing/dnd/events/008.xhtml": [ - "71b1252ac1fd78b016aa51f7dcffa5bc394adb50", + "56c35c09149431ab5a409f68ed0d909c3113c1e7", "support" ], "html/editing/dnd/events/009.xhtml": [ - "7775804f1501774eaf0bfdf978b524414a213cfc", + "1e326ab75e407fd89fa54957542311ce5bb91cec", "support" ], "html/editing/dnd/events/010.xhtml": [ - "a5d45c19227b7729a39661a3fdab1a9a3939f28c", + "c8bd7d148f420202fc27b4aac700b1715d0f7d59", "support" ], "html/editing/dnd/events/011.xhtml": [ - "5f3fa9542e71314c1800473968fb147d0ab67cb7", + "e0257f91ca9beb0c16e347c5f661124b0bbc0d90", "support" ], "html/editing/dnd/events/012.xhtml": [ - "9f6c3513981064bfe37226abf1a8b6afa21e4f6c", + "ec4aab4f6fbc08bf8eada5a9409799e80704b930", "support" ], "html/editing/dnd/events/013.xhtml": [ - "1de12e73fc6363a962792b4f2e3de7f0fe127067", + "85cf43959bbda0db79fdf4979081da2b0eb62086", "support" ], "html/editing/dnd/events/014.xhtml": [ - "800ee1fa94e9787496aff0a6748b5d9e2a5ba208", + "143b9d176960169a8ad94a5e1b55553c2f7d8ea9", "support" ], "html/editing/dnd/events/015.xhtml": [ - "4fa34b1adb08a30d7a1bbe7af1f5ab31d30e665a", + "93908a60be4fcf0b8bb9320ea1ac4aec64458a06", "support" ], "html/editing/dnd/events/016.xhtml": [ - "f74364679d3300e15f10f2e11df2d37983ea0a1b", + "5d8e2dde7ee3f99b6ae01694a08cf4087fa395fe", "support" ], "html/editing/dnd/events/017.xhtml": [ - "e58604cfd42af6123ad7361a417f1490e193e09e", + "f4dfea1daf60ef462e9df9f51afa7b7ef85614fc", "support" ], "html/editing/dnd/events/018.xhtml": [ - "bdade2a630755ecee63261c67738f7693903b0e5", + "9522ec71a9abec838652ca9d9b6d3d19f20fb9af", "support" ], "html/editing/dnd/events/019.xhtml": [ - "b7d21bc0dc10913fe523911827367231a78af60f", + "e202b47210d4a0e581257e37e9f1673de396e9c0", "support" ], "html/editing/dnd/events/020.xhtml": [ - "a639e4f6cd5c638a38a99660f4fa6f5bcbef4d76", + "8e41facc264e47d3d710960c9af79ffb70bc5521", "support" ], "html/editing/dnd/events/021.xhtml": [ - "d4e7e7f65cfba137f4790f862506acc74a5dedb0", + "da9256c76d44474226f13057c36b1f09e2d49c93", "support" ], "html/editing/dnd/events/022.xhtml": [ - "c9e02c8b842f185990b994715715001a8e5d5273", + "82ed6ffc13d019b51f17ab93b524b64070daaf2d", "support" ], "html/editing/dnd/events/023.xhtml": [ - "9ced58c1a0acee9c5ed245498663cf56c782732c", + "9dbbefb6fce8490ef6f5174f1edbdc345b5a732d", "support" ], "html/editing/dnd/events/024.xhtml": [ - "0d9717aa4152cc36d5a563cf18aaca0958f48f52", + "72cb9fab3aeeb35860f1716aeca4de7e3b4b0159", "support" ], "html/editing/dnd/events/025.html": [ - "a2cfc2299e4771a4ace0d1958ab9b5beead7cc36", + "3d56df56eb12387d12de79d21bf0718038d6b08e", "support" ], "html/editing/dnd/events/026.html": [ - "f11f4a65e63a24cc109b7d8ab7720bb67ff34c21", + "04dfa5ed8a913701537db96adc3e8e3cfa65bfb2", "support" ], "html/editing/dnd/events/027.xhtml": [ - "7dde484ab44ceacbe77c67b9da830edaa61046ef", + "5dda34396e953addbd4e4d874907ab90ee464c2f", "support" ], "html/editing/dnd/events/028.xhtml": [ - "81fe43c653345f2ca59229a22d6d71cdd63f7572", + "d1e60cef913716f04cad91f76b7bd0e0f5e4621a", "support" ], "html/editing/dnd/events/029.html": [ - "e3b4ae30677c9aadcc0a6d517f8a68562928c189", + "4e61f9e709a782c046610e60c29a56b1e674fae7", "support" ], "html/editing/dnd/events/030.html": [ - "3feb80e8187868c33be61a087ecdfaee22d36790", + "18d0b39dd25d2e73f1d798b06b95a6236c44fc1e", "support" ], "html/editing/dnd/events/031-1.html": [ - "28296e4950c07429d4521425308c8e53df6e5e29", + "293bcdcd834210bed5b32deae483963b3b0f1bc0", "support" ], "html/editing/dnd/events/031.html": [ - "ff96177cf6d5c1b7ddc3137d42af46d29e9f2d06", + "20b9012cd4e572108303f9829f989657750cc86a", "support" ], "html/editing/dnd/events/032.html": [ - "eff8124ae93e2f92a705c7179d0f58b7d74a89f6", + "4fc8397f356715dd6613eff81bdb9b812d763ce4", "support" ], "html/editing/dnd/events/033.html": [ - "a0abf6ae911fbff673df13109e9bb5b0b7d26297", + "e932dd74947e1bfd71390045ad6c21fa90b76acd", "support" ], "html/editing/dnd/events/034.html": [ - "c4a8c0efce7b1602780b49396abc79a718d6f769", + "8b7934beece59f3ab74e2a33879b068eb303efdc", "support" ], "html/editing/dnd/events/035.html": [ - "0237abe5ed6da9d548133160ae53063c0d43f578", + "0f57569761fc6b7a771962859f9dd11a0e460cf4", "support" ], "html/editing/dnd/events/036.html": [ - "bcfab31c78851d54b05ff3334af272970a782b6f", + "55bf863fadc6348b4b9fc99e9fa13ad2c47aabd6", "support" ], "html/editing/dnd/events/037-proposed.xhtml": [ - "6d93b13e477b4d0d148e4f7aa0a0f7ec4c5d938a", + "5480afc39a425b1724b5adb0fe6ddeccc1222476", "support" ], "html/editing/dnd/events/037-spec.xhtml": [ - "2c28fe78f79d19611915e7fa28f9c9d74988b409", + "127b15a742b763d40cf928f4655cf06904a6389a", "support" ], "html/editing/dnd/events/038-proposed.html": [ - "0231aaec3c9f5c57e46bde4401a05f3035cef45c", + "923df22bb235d18644d268ba70b3924408cd1b19", "support" ], "html/editing/dnd/events/events-cross-document-suite-HELPER-1.html": [ - "cd13d615a5f942b10db8fcae820907eb74eb2a88", + "fa063505887984bc29a3428198d08a30191d7834", "support" ], "html/editing/dnd/events/events-cross-document-suite-HELPER-2.html": [ - "9bcaf35d029bc142a337d3f8dc6df2b2941a58c2", + "f4a03faa51d2393e6671acda67df43df2e7eec74", "support" ], "html/editing/dnd/events/events-cross-document-suite-manual.html": [ - "02144d85d673589b501a7a1973548df1a724d076", + "0e051592fc8cc2d2dd37f4275e1ec6dbb3f29131", "manual" ], "html/editing/dnd/events/events-file-suite-manual.html": [ - "07295f34a61d1ccd3e4072921f05f70723572d18", + "1e0629010837f83b4e829271bfe304b947305312", "manual" ], "html/editing/dnd/events/events-non-draggable-001.html": [ @@ -580158,23 +586707,23 @@ "support" ], "html/editing/dnd/events/events-suite-manual.html": [ - "19f13dd3b94ddf5cbc6889c48d4050732551eaa5", + "6b940e48678f498192e3cfe531e3e82c4d5affc6", "manual" ], "html/editing/dnd/events/helper-drag-me-input-with-circle.xhtml": [ - "bb1800380a2141775188573eb5018f40673874c8", + "a9d6758ba3e0fb606ddaf5a47f6201c79656a859", "support" ], "html/editing/dnd/events/helper-drag-me-link-with-circle.xhtml": [ - "b122c8d92f44aad70e2df292c49225685d6b6c80", + "65a9d9e93a6b632256bc98fd9d153f71d860b745", "support" ], "html/editing/dnd/events/helper-drag-me-p-with-circle.xhtml": [ - "efd20911b9b4bc4a9fcdb844837c5af9ee5ee8bf", + "2507840b7070792b553b52b4d800cf2ed3382cf1", "support" ], "html/editing/dnd/events/helper-drop-here-body-circle.xhtml": [ - "f0507c80eeed6374b08db1a2d5f2191f346cb42a", + "14a572f8bfa03bbc9acab61cb67e89acca40a02a", "support" ], "html/editing/dnd/events/relatedTarget-attribute-manual.html": [ @@ -580182,35 +586731,35 @@ "manual" ], "html/editing/dnd/file/001.html": [ - "dd64d4fd33adc1fbdd639df9696ae549bafcc195", + "28e4e1d0e06a8c300c116aeb2d07e4808bdf56fe", "support" ], "html/editing/dnd/file/002.html": [ - "b43b75e6d173438897948131dd53d5929a08cedd", + "62f40d477019e663e377f314947c28ea6b556864", "support" ], "html/editing/dnd/file/003.html": [ - "74fee13c606a97bd562c7822274e69b33e5b94ba", + "df5bb0614ea6c7135caead8c5a1258bf981aeb13", "support" ], "html/editing/dnd/file/004.html": [ - "9e9bb61de1a07c4e747dbc19aa127678b6615de4", + "9f73256a0c120d543fe395764a0030ba05c0bb76", "support" ], "html/editing/dnd/file/005.html": [ - "836b03d4cfa27571027747e4eb9618147e324511", + "850559ce2ec7a47699770b66e8e9ceb1dded3e8f", "support" ], "html/editing/dnd/file/006.html": [ - "1876c1b99cae43c41abec8bd1bed4c33b1680703", + "23699891a80a21e3ca978d8c8eaf6246e6959997", "support" ], "html/editing/dnd/file/007.html": [ - "3999417e0542558408b22a640068a865df796a56", + "21851c97db234d854576e3ea6e1029ffed38a761", "support" ], "html/editing/dnd/file/008.html": [ - "049dc5a8b384dc5b22cc9fffb026b4c3d25ba581", + "081def5342c9b8bb426812bef312e6cdee3dd66e", "support" ], "html/editing/dnd/file/009.html": [ @@ -580218,11 +586767,11 @@ "support" ], "html/editing/dnd/file/010.html": [ - "373ba0773617f9e48f0e118c700c88f710e3431c", + "1ef3da51d85dab71e9986645a1ffecfed8fa2436", "support" ], "html/editing/dnd/file/011.html": [ - "516dbd90c306decfc8826776234e79747dce4d0a", + "6c5de23f6a63e817d60d1357020ee90f71193372", "support" ], "html/editing/dnd/file/fail.txt": [ @@ -580230,83 +586779,83 @@ "support" ], "html/editing/dnd/file/prompt/001.html": [ - "3b038b1dbe8aa7f2139861add4ffb20c073c4e61", + "a3c1af868a0d519cb3b814b8f9bfd9a4f721f8ed", "support" ], "html/editing/dnd/file/prompt/002.html": [ - "ce95802b88f67f96a1fd088707cdb3d55a3b620e", + "fb4b331d47590bc40cb5f4741b4f0540effab556", "support" ], "html/editing/dnd/file/prompt/003.html": [ - "152421bdd79032bbb24dc158f8d2e5d36e868d61", + "0a706328fd62c589c31bf121f9b199716ca72ebc", "support" ], "html/editing/dnd/file/prompt/004.html": [ - "ff1a7a6035d654276c47edf8fa9d77d2a3e81b9d", + "3277b549dbd2a60cc7b116eec4dcf5b96d8527c6", "support" ], "html/editing/dnd/file/prompt/005.html": [ - "35b24eccf4cebfb80bcfd1e20de37d1f4c08f9ea", + "0b3f4681fee32c8bd34486a4f2c85030a376c598", "support" ], "html/editing/dnd/file/prompt/006.html": [ - "a994f0d52ba7de818ae50e02a1312dde1fc60ef9", + "0e3d4a5b3491777183ceaa1286e3fcdb78c748f5", "support" ], "html/editing/dnd/file/prompt/007.html": [ - "cc567261a44ec157699c863066648fdbb1b9f4d9", + "b8bd960cd9ab71363ee41ae4f75cb383029fbdec", "support" ], "html/editing/dnd/file/prompt/008.html": [ - "c4b5a97c8674f387a147bf2d9be73298f4ec4236", + "17f79faab2a7fefed29a7eb3b20937724b47047b", "support" ], "html/editing/dnd/file/prompt/009.html": [ - "4cbe22684743519f0f364ad4fdae854f1ad0a385", + "a87042ac7c4b4d2f76a4ae38e8717ad508d41b28", "support" ], "html/editing/dnd/images/001.xhtml": [ - "250d44537483980dd9d32f60abe990d84896eed5", + "07f56583cb24f8fe0879f16c23c61fd5bacac0da", "support" ], "html/editing/dnd/images/002.xhtml": [ - "b698e485071a30546129407363be8227b0731b41", + "c4de19bb9e3f57b8c3c6c05349d7dfe25f51bdb5", "support" ], "html/editing/dnd/images/003.xhtml": [ - "9d6083ee6cc2726eb6ed4e24a9955c6cf9c7e7a2", + "204194b26b4dbd4c7de49cc91fb97c67ecce8b44", "support" ], "html/editing/dnd/images/004.xhtml": [ - "51ab53698851a4d3b0496e791ad4b2fc7eb15244", + "615c7fdd73a111bb1f6776b2160b6c3c74cfc184", "support" ], "html/editing/dnd/images/005.xhtml": [ - "24e75504fe6596908670d6d4990834aa4f369bf0", + "411e447ae0a593b7714528c4687bae016c5b4724", "support" ], "html/editing/dnd/images/006.xhtml": [ - "a13a245c7bef87fa3a2ae4ca448bb90ff0ed526b", + "773f5f00d54cc5b2e25e9240346e785b63bf19d8", "support" ], "html/editing/dnd/images/007.xhtml": [ - "fae99b17f75f390a775d52b40666cd6c03f7560f", + "8e9d09396e2bc5a592e8b2eb564967ea9c84dfcb", "support" ], "html/editing/dnd/images/008.xhtml": [ - "37113a0f337ef8f7213b6524576628e66d8cbf1d", + "2bbcffb1de70be3809d2ab8d1c73c612e7a06575", "support" ], "html/editing/dnd/images/009.xhtml": [ - "187e6b1396de914f3f4ba2e64857897e22a9846a", + "4929b7eef015fa6e4cf32f01a8c6b4810fb0f3ba", "support" ], "html/editing/dnd/images/010.xhtml": [ - "2811c140c5931ac25a4a7c6f218b90e9833ca1f9", + "bbab32edfe567863114bce789c47d468f60c309c", "support" ], "html/editing/dnd/images/011.xhtml": [ - "482c4105799e56182f24ca47ea19d6a9640224b8", + "0c053f5c8fe12ec5ba88ca8b508bedaa2ebb6065", "support" ], "html/editing/dnd/images/012-1.xhtml": [ @@ -580326,7 +586875,7 @@ "support" ], "html/editing/dnd/images/014-1.xhtml": [ - "5336c684032b6d533621bd4d15c2e721072bd3c0", + "0908fa679244a52902e082633c5839428da0364b", "support" ], "html/editing/dnd/images/014.xhtml": [ @@ -580334,55 +586883,55 @@ "support" ], "html/editing/dnd/images/015.xhtml": [ - "a3ca626cbf4fa83b6589e5320457546ded041b37", + "6ec78b173859b84d95c8bf8a439c356dc67338de", "support" ], "html/editing/dnd/images/016.xhtml": [ - "9f9db0cd9d7915c5402dd6b138017ebe3fd9a09b", + "42d7b83e8061a1120b744a24c0ed2042b4506ad9", "support" ], "html/editing/dnd/images/017.xhtml": [ - "ea261be2a552efe51d37ff626b64e560581ccf51", + "8ef34696587d2f532b1feebc9bed39def5f3b1c1", "support" ], "html/editing/dnd/images/018.xhtml": [ - "143b5d36858ed3c6a6f7aa3fb47a070a6f155fef", + "027ded72ad65a1e728f8e4284966211bdb984678", "support" ], "html/editing/dnd/images/021.xhtml": [ - "488a85b057eb32e6a27a9b6326a0294ac91cd8cc", + "441c457cbb1e699257a3bc0f90c5ee7680aa7b2b", "support" ], "html/editing/dnd/images/022.xhtml": [ - "8089d91b67abc515b32767a1c695a3598ecc7f65", + "53e50ac73970a98948d1be02f709b507d472f923", "support" ], "html/editing/dnd/images/023.xhtml": [ - "d6d67faa246049956746b98fbe4b4f7b92122435", + "4c2f697ea8312b2f1e2069bc517c0c5dd65905f0", "support" ], "html/editing/dnd/images/024.xhtml": [ - "04de9a9b718ecdec0ccbf10b1dd814409ada5504", + "2b767f81731432c30fcfd1bdb7fa6b80f2fa4a93", "support" ], "html/editing/dnd/images/025.xhtml": [ - "72a3ce8e454a7d7832d73ee161fec10b9eac68c9", + "b0ab0122cf0d1c0323008b52380d7408297fbf36", "support" ], "html/editing/dnd/images/026.xhtml": [ - "588959e8ceb6a1d4d33df0dfec9d1412272c5e8c", + "49b3f768f9190a6784d1c72e33040674846f3c3d", "support" ], "html/editing/dnd/images/027.xhtml": [ - "02cfc08aa4db1f7485135bc1334ab5b4e6d16506", + "e8baa453d62eb61894971e2b3f33718349fae0a9", "support" ], "html/editing/dnd/images/028.xhtml": [ - "5f4feeaf821635ce562fe5ad39e0635f933e01a1", + "2d2e04929127b7e3608674eb81108b0d995c9611", "support" ], "html/editing/dnd/images/cross-domain/001.manual.xhtml": [ - "74f9101ae0b35e44bac6a0ebda468e8298f3c50c", + "a26b1d7e2834ded272e583b1a250e6653edfceb1", "support" ], "html/editing/dnd/images/helper-circle.xhtml": [ @@ -580398,199 +586947,199 @@ "support" ], "html/editing/dnd/images/helper-drop-image-here.xhtml": [ - "f9d5846e58c8ddfbdfc797474daf09b9bd3bce15", + "15c75cfb4752f8841bb6c62ca162bb5e14bd054a", "support" ], "html/editing/dnd/images/helper-drop-vertical-scrollbar.xhtml": [ - "013358eebb77ee8218e2e04137d12fca53d9d14e", + "5af4e1567b1307e986a1c15f013e83f980cb3e95", "support" ], "html/editing/dnd/interactive/frames-1.html": [ - "1cc1be9322b4ba0640a736fc4189b121db2bc856", + "f993b67ce83cac87219540f34c137e6b151a5282", "support" ], "html/editing/dnd/interactive/frames.html": [ - "b971d6361d5c4b5baa4247eb9f3a1372f3499568", + "225b57e57a81360d13d877e497479740c8aa8ba7", "support" ], "html/editing/dnd/interactive/object-retention.html": [ - "082be067f0e1f5d0ad5814f9a7c57b97a386cafe", + "6e2d19b6a6e42cdfb8c06f0da3deca0f10921d5d", "support" ], "html/editing/dnd/interactive/plugins.html": [ - "38c063bf4c23567fa5dce3bc502aa43f565b6988", + "f21ef9f3155a034a8b754a0bf3f639d4b65fda16", "support" ], "html/editing/dnd/interactiveelements/001.html": [ - "c1e45c74d18d5bb31003fe490eb67899dee6e613", + "064b001abe3c53e7600df629ba6e33680205046c", "support" ], "html/editing/dnd/interactiveelements/002.html": [ - "253d03c1a067e34ee82b59244173577ec57f3d65", + "00815519120615c18c42434355869e6ddaee914b", "support" ], "html/editing/dnd/interactiveelements/003.html": [ - "d3602c412e55114bbda4fc835b53687ea2721b69", + "cf6110887afb08a6d7e1109a47418cbf62b5cd23", "support" ], "html/editing/dnd/interactiveelements/004.html": [ - "8de3694ad67959df09e841a33e2e4eab4bfe0c8c", + "59d15a40642f66d740c80778ba13dac36710c929", "support" ], "html/editing/dnd/interactiveelements/005.html": [ - "c43f8473bc0a652044c6e0188c106107aa02fa70", + "7ea664ba49ed7f6831ccb1dae9896b96143709c5", "support" ], "html/editing/dnd/interactiveelements/006.html": [ - "e645b9034df780033be3f30b45871cadd09b3ebb", + "3d83482cccb217fbec863141b89aa531ac1c9c3f", "support" ], "html/editing/dnd/interactiveelements/007.html": [ - "024c2b2372d8a0f69f507b1d91a2b471931d7b14", + "8213c9b786489971b118d17609923ead345f076b", "support" ], "html/editing/dnd/interactiveelements/008.html": [ - "5d629404d22e73cbe50a9a0988b4ab6976af8ffd", + "d2181fc2f699b1072693c7fe84740841352fbe03", "support" ], "html/editing/dnd/interactiveelements/009.html": [ - "5d7415cfb1d6f967d123f76ab48b5d2e1e0951a0", + "d81882295cc53786d6fbe6e6c66ea63e27ff5909", "support" ], "html/editing/dnd/interactiveelements/010.html": [ - "fc40780077644a47f0a9d0025f7664bb3e2fbe97", + "f459ca8636dbca0cd2e4d83f9a3d4d81714070d5", "support" ], "html/editing/dnd/interactiveelements/011.html": [ - "2aca513d85737e9d785f142e5561308e77c2221e", + "4111818a8d0d348317f30bc3833fb601a7909fc1", "support" ], "html/editing/dnd/interactiveelements/012.html": [ - "f9734dd414bbd20c3cbcf85df58e122b34e1f8ff", + "15fbe97461682b7002dfb8ca3850e6243930abab", "support" ], "html/editing/dnd/interactiveelements/015.html": [ - "d8eea6302a375b89bee4e1300bb02cd2c4875ab2", + "13c907219a402c8cbe477e3728d0691542b43217", "support" ], "html/editing/dnd/interactiveelements/016.html": [ - "7a6d51272c9e13193f681071ce0584cfa94b86ea", + "8fc53ab056657f045310cd023b76a6a749802b27", "support" ], "html/editing/dnd/interactiveelements/017.html": [ - "8bcd89b31088c48ce231bd9a1a91f3047937d377", + "cbfefe7d091f76540db724bb97f50a75270f148e", "support" ], "html/editing/dnd/interactiveelements/018.html": [ - "6c1d64dbbbddd9e588d2189a72e57bb94ff966fc", + "0fe6b61c6c6ea801109464936c5e192e270f2c29", "support" ], "html/editing/dnd/interactiveelements/019.html": [ - "fd8a348bc536aff66e420eac65719288ae8cbe3a", + "4eed070f443bc168873b6bf3d48b83f767760520", "support" ], "html/editing/dnd/interactiveelements/020.html": [ - "2b0e5b8a1939766c7c6c022b4a91bd31e680df1d", + "fbe3c335e9ee0f38c5ac21ca5135f36c2ea10b6d", "support" ], "html/editing/dnd/interactiveelements/021.html": [ - "4179fdd09b647fea3de58a1de755ae3a37d1ba79", + "0297beea41d0d30bd1c78494e17e5a7c88796891", "support" ], "html/editing/dnd/interactiveelements/022.html": [ - "bdf719ddab9d616d9119f33e3f1306d26348963b", + "f566383d0ed32f52a7c346d7ffd6304c5d0fdc33", "support" ], "html/editing/dnd/media/001.xhtml": [ - "5d2e3cd342373a288828380ae8e01cd0b4a939ba", + "4a8951ffc465851fe05b200b4fc743ee536218f5", "support" ], "html/editing/dnd/microdata/000.html": [ - "610440b7a0c98798e60e632c195b82e9ec0e6213", + "32f30679319b2996cb5d9321dfae35d39e91ba40", "support" ], "html/editing/dnd/microdata/001.html": [ - "90cc2c2ee62ced57302a082342afabb2ffb11705", + "f4ed26dacc8904fa85ff0ccbcaa0f1e42866d34b", "support" ], "html/editing/dnd/microdata/002.html": [ - "4d05605d0143f8c1fe41be48ec417f6761b40b07", + "e40aae6167171394c73be46c7a9c69d013c2d9c5", "support" ], "html/editing/dnd/microdata/003.html": [ - "ffd48cd05f9d5092293f7257e3556436b7064467", + "c18fb06b0499a34fc70756d1d597b7835495191a", "support" ], "html/editing/dnd/microdata/004.html": [ - "93115fd685acd8e84f73f01934ff51972b660c8c", + "5222e6b69661571f36f1ce7695e981675f923e7b", "support" ], "html/editing/dnd/microdata/005.html": [ - "fe7df0a4a99d3c3084ea24ce94cef88798bbf6fd", + "0e3b5290c966dc38484e4c6ffe4c2f4cebe15d81", "support" ], "html/editing/dnd/microdata/006.html": [ - "4baadd68350c74b22490e5909bb37fe8b34d3816", + "f9c20147936536c7a109b7ba2a13e233fc5a10f0", "support" ], "html/editing/dnd/microdata/007.html": [ - "215621e2d2bf3718c1d02221124bf2b8ebd1654a", + "180be6a5ba7d32522ac77b4cd9a6218d49693bc6", "support" ], "html/editing/dnd/microdata/008.html": [ - "1b65a96de14cadaa31fcd6eb93dab1265af283d1", + "343fc6527cdb161d2ddf5981d3e151312f3567f0", "support" ], "html/editing/dnd/microdata/009.html": [ - "a97cc6ca22b3aa661fdd2bf3d2c1c0d7757ebab9", + "fb93e6052d039354459519078e39cd3247ff8fea", "support" ], "html/editing/dnd/microdata/010.html": [ - "b914fb52794f4a66bd888c0eaadc858388b7212e", + "31056daa05e24e1e41e2183214fd01408fb49d94", "support" ], "html/editing/dnd/microdata/011.html": [ - "aba6742d18adea6bac9edf14237541ee8fc828ed", + "d00256d19a2ee9fbb153e50cb2326592c812ffc0", "support" ], "html/editing/dnd/microdata/012.html": [ - "354681f0346ee0110db338104381e3820e01d539", + "1aec63c28232da31835a5bc5314cd575dcc11d6e", "support" ], "html/editing/dnd/microdata/013.html": [ - "e1b11acae2708b08b4087377542e7120a75ea4b7", + "a5639238226b2e68638247b48fa550bab375e766", "support" ], "html/editing/dnd/microdata/014.html": [ - "2020bafee90a00c1abdb1c8d60a9a1f63e5c2452", + "320ec5b93b2f5cf6ae8e67247448685bb99b8252", "support" ], "html/editing/dnd/microdata/015.html": [ - "fe0578b26acf7cd90b37d0cee24c0b15797d69df", + "21483a8c18955bb5608065ec43323eb9d43f80ed", "support" ], "html/editing/dnd/microdata/016.html": [ - "7c3c6cf30c8be82f5bbc4e5dcf526a88d2f0c9fb", + "228eca4c4f85d217870fb2553fa20a525ee969e6", "support" ], "html/editing/dnd/microdata/017.html": [ - "e20cefc0177d4413cde88ba32949822fdb33ebe2", + "8e06d0f0e125d5a7f6f7d2324ba1253b09f0e6b7", "support" ], "html/editing/dnd/microdata/018.html": [ - "be66ebe8a87ecf8b2a5ef1de2e5e182ea57a781f", + "31acabb774a3b59be1be627387a86eccd549b92c", "support" ], "html/editing/dnd/microdata/019.html": [ - "33c8b1586c9039f293499acd1e066fc38d13c874", + "8ff330aeeaa70a12ea492bc0256b0c3425c58076", "support" ], "html/editing/dnd/microdata/020.html": [ - "b4afcbb2eb5fc4a90e8a82669dba6646e4761fa7", + "899a2e38a2d095aeb1c4ea90d165213efdd0d04d", "support" ], "html/editing/dnd/microdata/021.html": [ - "dd13d2ed12f1bb45f316ae91567db71d96737d83", + "2a6528dbba2095886ea43c1c746f3e84607327bf", "support" ], "html/editing/dnd/microdata/test": [ @@ -580598,15 +587147,15 @@ "support" ], "html/editing/dnd/navigation/001-1.xhtml": [ - "6e1c33a76a6c567aa2aa8613fd05b001f26fbbe1", + "3e0ae9a9f0c15133ef801b8ad34edf03b79c3f77", "support" ], "html/editing/dnd/navigation/001.xhtml": [ - "f40025873cf7ef83299bba09945a6de3d00772de", + "5ee6dc848ac40572a32a5e0266a844ddd99c00c9", "support" ], "html/editing/dnd/navigation/002.xhtml": [ - "d1585dd03adabc542034211e25cb2110366bfdec", + "dee091150aeb8e49c72e1bff4ae45de82099bf9d", "support" ], "html/editing/dnd/navigation/003.xhtml": [ @@ -580626,23 +587175,23 @@ "support" ], "html/editing/dnd/navigation/007-1.xhtml": [ - "b1014791c35fc828a52999cfbab54a64a2d4a978", + "33ea016247bda2cffa223525c31d5e98e37f426d", "support" ], "html/editing/dnd/navigation/007.xhtml": [ - "05d61d397cc216bd117644c572b091ece10fd904", + "5e8735d18807fee97b7386739df650b4ac5f7942", "support" ], "html/editing/dnd/navigation/008-1.xhtml": [ - "bf4820c610e71ac238f2c766397377a046fcb4b5", + "4953e222e4c49e4431bbaa4bb55c99712fdf5234", "support" ], "html/editing/dnd/navigation/008.xhtml": [ - "b6dcc62f0d35acef8d0cbe2d0c72bde10dc6112f", + "5582908cb2796f4bf1b064184c585ac9d932ff87", "support" ], "html/editing/dnd/navigation/009-1.xhtml": [ - "38cb27eccb69a65cee58804f7ebe1bb89704a10a", + "96df8c929e7cbabcdb60a7bf1e411eaca9a783c5", "support" ], "html/editing/dnd/navigation/009.xhtml": [ @@ -580650,27 +587199,27 @@ "support" ], "html/editing/dnd/navigation/010-1.xhtml": [ - "ad3f592f6585ee98e77f768edfe8b68a553ef55e", + "5f988d3115f1b4340cb35c763bb4d240a8a00a33", "support" ], "html/editing/dnd/navigation/010.xhtml": [ - "18e6e88f7dc756eb867d0b0cb51cae16e1272e38", + "67eb42be52bb8a85bf0f282e70b195bae90b1144", "support" ], "html/editing/dnd/navigation/011-1.xhtml": [ - "194352ea816ecc4943dfda048a43e07b55039cc4", + "a0a566b204899a618acb82349097464f981779a2", "support" ], "html/editing/dnd/navigation/011.xhtml": [ - "b6a068e06849a3e3d9c2346233498dac1e12b648", + "ff243bc26f15d36398643cceaf8f12f6c6a3c0e3", "support" ], "html/editing/dnd/navigation/012.xhtml": [ - "2d7aad3731f1bf8938bb1aedbafec5702e70e626", + "d2e60e9deab821cbbdb5d902e91baee5bc8baf16", "support" ], "html/editing/dnd/navigation/013.xhtml": [ - "0792ba3b2b74260f7df828ae334071fb607ebf3a", + "68b076c879db226681869463d934856466de6687", "support" ], "html/editing/dnd/navigation/014.xhtml": [ @@ -580682,15 +587231,15 @@ "support" ], "html/editing/dnd/navigation/016-1.xhtml": [ - "fa5fe52e2fb9fe7313773051fcad3a7d10ba77f1", + "998d822907087860c2a489f9a1e19e4000fc5fa3", "support" ], "html/editing/dnd/navigation/016.xhtml": [ - "42313a0c626e6cd73c0c82683f32061b93e14b9f", + "b6a9379fe54d39ab3f0d4ae022d239e2fb5923c8", "support" ], "html/editing/dnd/navigation/017.xhtml": [ - "d53891d3980a3759f100bbacdd9dedfceb74b21d", + "daa4f7abe23b9a41c0b8bb280d04c41336cc55cc", "support" ], "html/editing/dnd/navigation/018.xhtml": [ @@ -580706,7 +587255,7 @@ "support" ], "html/editing/dnd/navigation/021-1.xhtml": [ - "6855757315678e102c8fced16e29e1c4274dacea", + "06da86ee5c62907d8d4383f8615a97a7f285db43", "support" ], "html/editing/dnd/navigation/021.xhtml": [ @@ -580714,135 +587263,135 @@ "support" ], "html/editing/dnd/navigation/022-1.xhtml": [ - "61f6bf78713f423160fe1a38b2d7fdcb333d2b9f", + "f6f56f3558ecf089b75b8c082124fbb286d14bae", "support" ], "html/editing/dnd/navigation/022.xhtml": [ - "33857c5c886df53da800f3a7bdf9aad831876661", + "3a32b2a7a58cc25e9d5f56b4e9b9a779dbc16921", "support" ], "html/editing/dnd/navigation/023-1.xhtml": [ - "49f0317b3aec9dd49f17b875c2eab571e8cd1e1b", + "f582ba58b27d5d49ef94655e1b1cb366a33c97e7", "support" ], "html/editing/dnd/navigation/023.xhtml": [ - "0b772dbdef144990667220ad5e2236a0fe08893b", + "dc528ecd4834f485382225dca3dc010b8a7e9880", "support" ], "html/editing/dnd/navigation/helper-drag-image-dont-drop.xhtml": [ - "373b7c2bfd14a8bf4b8f61856a1773bb4b991951", + "81f3517743627b2a6cfc9b5886384a941f3fa734", "support" ], "html/editing/dnd/navigation/helper-drag-selection-dont-drop.xhtml": [ - "0b51e1d04cab474b8f4dc99c808196af900b5458", + "b3e197c6196cbeb5a36e73083e60dab6a8d794bd", "support" ], "html/editing/dnd/navigation/helper-drop-here-reload.xhtml": [ - "3d089e94789b954e78588d8b417b1d677f4fd5e0", + "4117a36c24ef1261bb730be5be006d9e293e256a", "support" ], "html/editing/dnd/navigation/helper-drop-image-now.xhtml": [ - "de4d4bb6c930b5ab061c6af0dad530872d8dea90", + "2a80f22714767a9b7546a2ee39678ac351458f3b", "support" ], "html/editing/dnd/navigation/helper-drop-link-now.xhtml": [ - "7ae038eb1c1bd9edc03e57082e75b8c555ae24eb", + "313243b0c4252b1d05a9be693573e2cd5e2285d2", "support" ], "html/editing/dnd/navigation/helper-drop-now.xhtml": [ - "e4fa61d436fa57c34a99fa18f161a3a55a73314e", + "d54c92505d96a1f6b0e50ab19d0040f6c75b5ba7", "support" ], "html/editing/dnd/navigation/helper-drop-selection-here.xhtml": [ - "bc97adc078b09f7e5f52f5abeb06ef625b941f07", + "9d6e57e786c1eca1e0f7272d2e5bd7d4a7ef39d1", "support" ], "html/editing/dnd/overlay/001.xhtml": [ - "35d1aa40c3bc4743fc78f53a98bfa9911fa56f6e", + "eff3a6b4cf12c5deb6586c1e73341ccbf3bcbe5b", "support" ], "html/editing/dnd/overlay/002.xhtml": [ - "c77495f239b988140b32afb16e7f0dd0a829a23c", + "2a0c2eb73d0f9892d5eb4ddb54284f9d23fbd63e", "support" ], "html/editing/dnd/overlay/003.xhtml": [ - "7bb8ca0d17125cf5d19267be0b77d87a5b5aca89", + "7330d6b863fd7fbbc2184d9978a8b84ffc3c3cb4", "support" ], "html/editing/dnd/overlay/004.xhtml": [ - "e5020450e2cb56c65cf9851ae8d82fa6703f759a", + "dba5647e651413f69053c8a60e7a820335bddad9", "support" ], "html/editing/dnd/overlay/005.xhtml": [ - "3f42ab3b58e0cedaa6244103b546d820ed62f574", + "26adbd710d8d082519855c3752e7cd75392f4615", "support" ], "html/editing/dnd/overlay/006.xhtml": [ - "6d7366d2c7e19da43105e354ae066ca2f36feae8", + "211cca6ac9899927e2e413ecd3ae4650c24b2069", "support" ], "html/editing/dnd/overlay/007.xhtml": [ - "d78a396c2dbfe82b916e53083742d5533824f2d3", + "a0590e1ceac5a32b7ae4153fdcc3d50de2ddae54", "support" ], "html/editing/dnd/overlay/008.xhtml": [ - "822a724a504a7872116837a529c239ab7375547c", + "9c97ac63595f284d2c9fd44c3a803d7404218140", "support" ], "html/editing/dnd/overlay/009.xhtml": [ - "c93829b8687fc0f75675169e613a6f1be91bc8e1", + "76d7377428f5c120dc5611f8a5e6f600b17e9af3", "support" ], "html/editing/dnd/overlay/010.xhtml": [ - "98c087399e1e24a57d7fef1c28ec54b93c8a73e5", + "fc04c158bf74ff8262f4df87ce7fa6947c27b1b5", "support" ], "html/editing/dnd/overlay/011.xhtml": [ - "3e1bfcc751dcc0dea18f9e11385259498f7db8e7", + "e2bb53cefffee115ad9321e52c87e7473bb8c8ac", "support" ], "html/editing/dnd/overlay/012.xhtml": [ - "407e4893bc3857bfa3a268ff041ec0e59afbc5dc", + "a628079c80b4ee7f9280f9dd3e1653ae400eba76", "support" ], "html/editing/dnd/overlay/013.xhtml": [ - "3e08c283943682410beeab832bcc1f9f2994cf0d", + "7fce31e61aa4dfbab73b97da9fea6981af78275e", "support" ], "html/editing/dnd/overlay/014.xhtml": [ - "7324b3a381bd06eb187c3106286bf10e378cc405", + "828f445d7db1034876d1b5f258fb2ad893c50b3f", "support" ], "html/editing/dnd/overlay/015.xhtml": [ - "756edb61aa976ec448266db193158334a6bc88b4", + "5efaabf0444f18ab313d032685deaf11c8e9277d", "support" ], "html/editing/dnd/overlay/016.xhtml": [ - "d8e732c9e7ea7daf5fea31f7c5d633be821ca964", + "73b4cb6c49aa490b6fa4ab6764d80c3095720292", "support" ], "html/editing/dnd/overlay/017.xhtml": [ - "29fb61d8961918b4f2868f93abd662473566556b", + "860b8c0f37347b8452f8db3d24399eb48075caf0", "support" ], "html/editing/dnd/overlay/018.xhtml": [ - "44596a9ad149cada1b8c393fc5570a095fce181f", + "e1a02a54b77566ae1e1cdfc2458a302a10e17125", "support" ], "html/editing/dnd/overlay/019.xhtml": [ - "ac9e72f9e51ba70d1f2293f3187899dd48ea2b8c", + "c3c46de4be30376a4b244f8fbbf4d03a53cac5ca", "support" ], "html/editing/dnd/overlay/020.xhtml": [ - "e303861971d98111d84782295084b558a8268a26", + "f1bef72ed4a93f8d396965eb860989bba8983e81", "support" ], "html/editing/dnd/overlay/021.xhtml": [ - "6fd06a6f332f878fdae7f37b1da5913a2c9c9ce3", + "9aedb414ce90d0a1bad0e3b7355fd1b0dd23a808", "support" ], "html/editing/dnd/overlay/022.xhtml": [ - "9a211398b3b77bf62376eab9ce54ff2a57c8d918", + "2239a52b18ed28c733f68cffbf31eeaeeafa03cf", "support" ], "html/editing/dnd/overlay/023.xhtml": [ @@ -580850,155 +587399,155 @@ "support" ], "html/editing/dnd/overlay/024.xhtml": [ - "4c9dcfad66402f9a1f51583e52ddc5d66de236fa", + "d0dc98bb9160e731b3ae63584f027d161b0fee43", "support" ], "html/editing/dnd/overlay/025.xhtml": [ - "78d0086884725690a2cb3234ef62ddd2df31b406", + "50dcf7accda9d7aea95812914a51781541addaef", "support" ], "html/editing/dnd/overlay/026.xhtml": [ - "069f73e3cc574b353a34dd97eafda6cf2c59f1f3", + "b68aff8721773a694d0754a4b66c53b7e8c835d7", "support" ], "html/editing/dnd/overlay/027.xhtml": [ - "664cb9767455fb77cb929d03cde92849c4edceaa", + "2f55dbb0dbce8a79a93b7e5daf60ef784cfb45b9", "support" ], "html/editing/dnd/overlay/028.xhtml": [ - "b6e5725165c17cf2e1e6d61e5ef33d35e3ddfe1c", + "c63917c4080c04f295b3ad5ee615b8fcdbb0b38a", "support" ], "html/editing/dnd/overlay/029.xhtml": [ - "c458d903877e21f5821d27ec0c7c3b0687ce0a05", + "8419783182607666cf016246d96c09d9696880df", "support" ], "html/editing/dnd/overlay/030.xhtml": [ - "ccc6173b14a777a9af246cf7ce5a3e0f0ac97cda", + "516f8ae0d02887ef58c4fe0392faa135086dc243", "support" ], "html/editing/dnd/overlay/031.xhtml": [ - "8aac4335b62a219b3a2cf907b505b3425c23aa49", + "14d296e3c6f210fb9d0c2f2107e3e0eafc390baf", "support" ], "html/editing/dnd/overlay/032.xhtml": [ - "11dd0819437d777b30368109bfb389d9152df298", + "8a132474ca687745e27e8f3efe13440068b6cecf", "support" ], "html/editing/dnd/overlay/033.xhtml": [ - "2b64e164a2549ae22139c39b4af7dcd6f0b8a346", + "137d1abbc6486aa35941d5276e65025189f56e3c", "support" ], "html/editing/dnd/overlay/034.xhtml": [ - "e3647e2269bd0948d7c35d94647427420b55d118", + "2a05fd9aa4b82cfb4f9c18f6b9282130aa0a724f", "support" ], "html/editing/dnd/overlay/035.xhtml": [ - "e0ab468fa143c9d5712d5ea6961d21514fea1b8b", + "c48880b09bb35d9f114d08b4d8d703a05129a16b", "support" ], "html/editing/dnd/overlay/036.xhtml": [ - "4a65dbcb207b0f3812409d2dd38fabd237148c6a", + "62b5b1911e84b48ed834967764f841d66d2ff65a", "support" ], "html/editing/dnd/overlay/038.xhtml": [ - "9346ace58d1b46a68dd2d8a45c34904c8277cd84", + "52ae95c3e43ec1b1512ef9cb206afd88169db920", "support" ], "html/editing/dnd/overlay/039.xhtml": [ - "e0dda3e13e80b9fc918c74fb7483dd031d66fb2d", + "3c1929022dd83511cf6d0f1b20673aa7bc805f8a", "support" ], "html/editing/dnd/overlay/040.xhtml": [ - "a778f7e536daf5570478e84f8b902d2802c0bed3", + "5e6d095d83d167b7ab02c0696e55ca2f5ceeb096", "support" ], "html/editing/dnd/overlay/041.xhtml": [ - "6abc3797e0323ed3401a2f0cca76e0cc438e1ac5", + "31fd6f04b6d466c5500364677c752454dbaf0b08", "support" ], "html/editing/dnd/overlay/042.html": [ - "87f09b10220940041d224ab5c8182ce8b83d00c1", + "1c4e5c1eb35a7b5c52b910b733aed64a783abb66", "support" ], "html/editing/dnd/overlay/043.html": [ - "729cfea2e9801647ef873195a14f5dde52580c13", + "66c00512adb9a7a1dc431c19ef272e254e57247e", "support" ], "html/editing/dnd/overlay/044.html": [ - "c2c0d0d6bccbcec2ffc7536f3cece3dda66d9053", + "5eab3088eead50f3f7c974cf21b54084e35b9354", "support" ], "html/editing/dnd/overlay/045.html": [ - "5ac859f7e615c81e36cc3ccc8778bba80320dafc", + "c64e3795833682a1680b3d00fb0b2c7177c93b3d", "support" ], "html/editing/dnd/overlay/046.html": [ - "212efe6df1fa0f109b25e7d5a73f098a0a9bff1e", + "4d1e6d1f2eedce77693b98762c2d9cb36d802479", "support" ], "html/editing/dnd/overlay/047.html": [ - "a18e922cb0af5312b5866091039778342cf3f449", + "178fb6a24d629dbf6f205b58eedfbfea4e0f2546", "support" ], "html/editing/dnd/overlay/048.html": [ - "0b73581821d3eed2b10c6f6dde099bab535e81f9", + "a022e2d18620c02dda279be5e5c5f9c55c9bacc6", "support" ], "html/editing/dnd/overlay/049.xhtml": [ - "398c78ebb16a0a86d8f2cd068e022a8fe37bf1a8", + "9f51a3db960084bdb6cdb7bb51e98f194efc4160", "support" ], "html/editing/dnd/overlay/050.xhtml": [ - "456a6e6f0dc6184e413165b05ce7cdea06a32594", + "a826bd28781f5855d2dff7b87cfaa278e24a9040", "support" ], "html/editing/dnd/overlay/051.xhtml": [ - "9453b607a2d56c92f5128471c05bf69a3005792c", + "ca4e4004df127ffb6ffbff128d29d18c6c7d39a8", "support" ], "html/editing/dnd/overlay/052.xhtml": [ - "8f5c5d5a4b4aaa8af5700d64e47177cb1e42fd5f", + "d5758173cf62fb59ea422d9d0e4ec208dbaeb2c6", "support" ], "html/editing/dnd/overlay/053.xhtml": [ - "3ad5ea5201d44f2b763aa8a3bb27da21f450c373", + "5a165ab7147e32119c92ba398f757300963d09cb", "support" ], "html/editing/dnd/overlay/054.xhtml": [ - "ebe4d649502dfb4cb83361533f889c29f4d277c1", + "180bc31eb12e7a40205e40692aed4fee9f29a391", "support" ], "html/editing/dnd/overlay/055.xhtml": [ - "23d29f5a6f6561fd68e8d84b7e176018ce87c9e0", + "75b0c22132d4c0c086286f30d849effd653a0ddb", "support" ], "html/editing/dnd/overlay/056.xhtml": [ - "46c6cc64e3dc026035360369784e7716271c10f9", + "6c8a487e1df638175a9f782fb53d540839f30384", "support" ], "html/editing/dnd/overlay/057.xhtml": [ - "f6c1883af9123989358f6055c081942fe29cc105", + "d881ed6634ef908bc7695a46d48e1cf45e54775e", "support" ], "html/editing/dnd/overlay/058.html": [ - "b3bc27f8aa5d866e65addc3edf2f089020676b4e", + "ecd3477f357dd62c55329ecad9f88b0389eaa8b2", "support" ], "html/editing/dnd/overlay/059.html": [ - "f00c7e7d94e079bd4eb04406dc71383115564a85", + "600b22c5d5060c94048bf0fddd0d18f319d509ae", "support" ], "html/editing/dnd/overlay/060.html": [ - "10eb732430bc11bc9581f788afef2803e3cdf0e6", + "58e01cd8babaf2e6d662f29654da905792772b5a", "support" ], "html/editing/dnd/overlay/061.html": [ - "c64ff8f4e694ff08c965534a1e9d8e0371807899", + "2b8ca3aef9a1ee6b8073de8566ee18fe0b9977ce", "support" ], "html/editing/dnd/overlay/062.html": [ - "0b443db7d4f70c0dadc8e06ebc72ba3e0c2d7132", + "bba0f975e38c2a6285342572a02382224a068447", "support" ], "html/editing/dnd/overlay/heavy-styling-001.html": [ @@ -581066,39 +587615,39 @@ "support" ], "html/editing/dnd/platform/alttab.html": [ - "e1a15a551d914dd95cf4cb815855e2b55c4e36cb", + "8a81e3d183d8aef93c957af5fc8fe1aa682c415d", "support" ], "html/editing/dnd/platform/cancel-middle-click.html": [ - "47a1f8935d6c6e68bbe871bea90373d43b08dc0e", + "77be7ab2a5ec8e57069ce2030cdb6314fe0655e9", "support" ], "html/editing/dnd/platform/cancel-right-click.html": [ - "6a0101fd1607c404c00cdde077e5c8e14f8a92dc", + "c558fb84d4e7bce0d70b8aa9be24f2fb09d60f24", "support" ], "html/editing/dnd/platform/close-drag-001.html": [ - "6c053997f617fdb308634c0e569b12b7ff15ab04", + "f595fafd32d24c1045fa4401ab18b44792648e09", "support" ], "html/editing/dnd/platform/close-drag-002.html": [ - "9858f7485484a43703dea74b3c42f2d5acff17bd", + "4ce19553d72a89aa85c7fc7f7c2beee9c8997d4e", "support" ], "html/editing/dnd/platform/close-drag-003.html": [ - "9c8ecf31d16b2055e55fdf887b875dfe4de7f6d9", + "12c57a5f4130a2becb98bdecd3be3373302d97b5", "support" ], "html/editing/dnd/platform/close-drag-004.html": [ - "93a3f142983547bbb93199526cc801213aa8fac2", + "cf5b5d653fd75a636d5e1adf0d5049f7514b4727", "support" ], "html/editing/dnd/platform/close-drag-005.html": [ - "f3183a8a87162c594b7ff7abe357481566d37049", + "fbf5e36e899073828cc0c316e00486eb3ad5f051", "support" ], "html/editing/dnd/platform/close-drag-006.html": [ - "0c7443e2016b174a82484452edb366dfb032f9ba", + "a61490524f5931761bcac472fd4f779e0dd9d5c7", "support" ], "html/editing/dnd/platform/cursors/001.html": [ @@ -581110,163 +587659,163 @@ "support" ], "html/editing/dnd/platform/cursors/003.html": [ - "ac2fe99cba418827fc8aaaeb3a001670cbebf995", + "0af89582267cbc7ce17ca7ef62aee86c8102f2bc", "support" ], "html/editing/dnd/platform/cursors/004.html": [ - "a70e83e16f33e9a3fe0f033f59ee11a36dd48edb", + "3456f055d76e06676a823abbdd3b1e5c9c8e48db", "support" ], "html/editing/dnd/platform/cursors/005.html": [ - "1704fca18b1c2fbd36ca0f51efc1b0ab96009ae8", + "a36321c4f74017ec6f35c26d6ac08ce673a17a46", "support" ], "html/editing/dnd/platform/cursors/006.html": [ - "1fca0088bb7911d0e4210ae8599b116d771a946e", + "f9208e6872258a3a0032ff88e43d97e7e73ef10d", "support" ], "html/editing/dnd/platform/cursors/007.html": [ - "256c868eaab0dfad4262a7f046405887bd56c13e", + "f970f5962dbc16492b661ebf78daee9a121812dd", "support" ], "html/editing/dnd/platform/cursors/008.html": [ - "b98d152baa518e0eb8aa8637aa970603727f3919", + "a4fd6d5cd12b74969fdaa2ca669c6d3083d9b25f", "support" ], "html/editing/dnd/platform/cursors/009.html": [ - "2a5fcdb9fb81b77fc7c8316e7dab18945afd48ab", + "46af85a2b555fd124311d12777b5fb21b607b774", "support" ], "html/editing/dnd/platform/cursors/010.html": [ - "dd05e99c28ebf7dd6a5f15966fd0b9fd4c638605", + "7840f4165ec8a681783852c3161691bbf4bb7dd9", "support" ], "html/editing/dnd/platform/cursors/011.html": [ - "3da2d4d4617f302221dc681e87e2ca162b9e5ac4", + "7c73d3b45487221119e70ea6d579cdb4580d7c51", "support" ], "html/editing/dnd/platform/drag-keypress.html": [ - "c1bd0e4842e12cf513b77aca436b74d716c7ebf5", + "48564d183c794fab512169f5d6b529bfdea2a92a", "support" ], "html/editing/dnd/platform/drag-link.html": [ - "7e9bf0f791dc7453c8659895b19fc5857cfa65e8", + "4baf94cb16150654222a4232c1ad78fa2a5f8a4d", "support" ], "html/editing/dnd/platform/drag-to-title.html": [ - "c22244a06c83f225c3d1aa93f42b8ccf41a58f3e", + "9428da065bf270bd57108c9462d6561472cae4a7", "support" ], "html/editing/dnd/platform/file-drop-position.html": [ - "2daaa61354d2fc82e5fe64317190dff1dfbe0e06", + "5d8ca1893c9c92337d742f60b5bc0a95a0fc5c64", "support" ], "html/editing/dnd/platform/file-os-to-os.html": [ - "7e442eb50f00f1f6324cc5d076dd1d37b8990c01", + "ba6adade9fe9d17247944fefd090cf6a3619d187", "support" ], "html/editing/dnd/platform/file-to-system.html": [ - "f555e9204c4eeaf370209d8a7fdb1570c782368d", + "feeca3f74aa0657f9f2d6991fd408fbec97f36de", "support" ], "html/editing/dnd/platform/html-to-os-HELPER-FILE.html": [ - "72838ce246738158080a12ad2ad238f270136fd7", + "7829c6f20b9cc31d4e1f30a3b3e250a0c8b06737", "support" ], "html/editing/dnd/platform/html-to-os.html": [ - "742d5e27246b081f3c21930bb77f20a5cea83af9", + "93b8c58e4ff93051135023008aac03a2830a9fa2", "support" ], "html/editing/dnd/platform/html-unicode-to-os.html": [ - "72fa8c4902b77cce8534e34bab26859b912922ff", + "618738410878fc1baf17d6278288f91ac5484d38", "support" ], "html/editing/dnd/platform/inputs-no-js.html": [ - "631e5542c8cf5d85663e859576dccbefeed42df3", + "38f93ec91ceb6e31fed630e47be7565bc4e059cd", "support" ], "html/editing/dnd/platform/interrupt/001.html": [ - "4eca22effd72f9c33cb053b39edeef1acc736195", + "791ded14bfbdbc60f16e4877eb40660052f6f4ef", "support" ], "html/editing/dnd/platform/interrupt/002.html": [ - "3d869099aef04216fb8fd172a8cd96eedf4ebb2f", + "a3fd5666d3befb2f9626d2791dc8e42e2076955d", "support" ], "html/editing/dnd/platform/interrupt/003.html": [ - "e3712d12c8a565f8475a4210af7fd7b86832e3c0", + "9815ab858a66f84ad701ca1f4bfa016c50f8691e", "support" ], "html/editing/dnd/platform/interrupt/004.html": [ - "ba7dbabde7103e9e5819f9eddb0d1622404ffd0a", + "6eaba8719cba4da8ac1e6c78230558fcccc53f26", "support" ], "html/editing/dnd/platform/interrupt/005.html": [ - "63a6d905dfcdb5a2cacd8c14689353dc52b5eea8", + "0a884744864780d0b288c17fca3fe7c4fb4f9a9c", "support" ], "html/editing/dnd/platform/interrupt/006.html": [ - "bfaee50c84a438a8af4d8ce28298846cae13f80e", + "6af92a6fce926c052a5b2c34442e784b1a9b9f6a", "support" ], "html/editing/dnd/platform/interrupt/007.html": [ - "12e061863fbebeb838077b2238fa27ba844bb364", + "b8974887401a5b5bbe72c3dcdb2033584ab648d1", "support" ], "html/editing/dnd/platform/interrupt/008.html": [ - "6b348498c7df83a8c11706f0b92ef28822fa79fb", + "edcfe7a2d78ebc615317a05b779e601ad05108b8", "support" ], "html/editing/dnd/platform/interrupt/009.html": [ - "749620e02ea1d1d095ae7c87566fc52206b79fbf", + "b3fb63e124070be681d3cc25dd28b7cf56fc024b", "support" ], "html/editing/dnd/platform/interrupt/010.html": [ - "41b61cda773df56301901eb48d1132ec7a27ef0b", + "7426e405e7724b953aa5e77113aa4b5716f1d8af", "support" ], "html/editing/dnd/platform/interrupt/011.html": [ - "3ff24c098bc61e4ea090cae84a170c5ce9579d9a", + "385ebe01335c3359a44fff77ea87f64725e4faa0", "support" ], "html/editing/dnd/platform/interrupt/012.html": [ - "d772cbb59166c1cfc9a7087aa048793c8c2cfff4", + "95733656a8d5f3cabad935ae82fc9a9f1eb327f5", "support" ], "html/editing/dnd/platform/interrupt/013.html": [ - "3a52505129f337e172e4ddfc3c1b38bef46e621d", + "d870a587d21b3b06e0dc8f9cfca5e42b61d39b84", "support" ], "html/editing/dnd/platform/interrupt/014.html": [ - "97be969592219b00d1286f1d3861b869eecfe64d", + "e65fc9ec36b0d5cec5644fb55c153ebb72b67ce5", "support" ], "html/editing/dnd/platform/interrupt/015.html": [ - "2f60476b8ce7972400d44ee855f1fdc0173b1f2e", + "d1b84c7e882a64a421deba2cc729a8c931a2881b", "support" ], "html/editing/dnd/platform/interrupt/016.html": [ - "5a74140f891c81ea94d79cc3ddf39ade40b718d5", + "df1318543d0f3dac482a5853e4e7d89736f3c768", "support" ], "html/editing/dnd/platform/interrupt/017.html": [ - "300a031d1f0d9ee5fe350900888fd3d6fed65075", + "08adb119046e4684a9d9fb40062f869578f7d7d8", "support" ], "html/editing/dnd/platform/interrupt/018.html": [ - "24f8a1ca53360c82326610d83298a966acace98c", + "352c200725ffa614cbca65da74605d44c4f50fdf", "support" ], "html/editing/dnd/platform/interrupt/019.html": [ - "60d83ec7bd7898b6d3d60757abc45c5f6283ac71", + "a450d7d07b436e90ac048972bad7f05eb98336d3", "support" ], "html/editing/dnd/platform/interrupt/020.html": [ - "9bbab8a531ae5a9477b5775cc8af1d7ae94ec09b", + "983e27fd1ca06adc3999baa00bd0c483ae167c52", "support" ], "html/editing/dnd/platform/interrupt/021.html": [ - "f90d4ed4ef6177576c301d9fa5631592f046bcad", + "bab384a28dba4af7bcfebc01e21bf1f16037748b", "support" ], "html/editing/dnd/platform/interrupt/fail.txt": [ @@ -581286,71 +587835,71 @@ "support" ], "html/editing/dnd/platform/keyboardshortcuts.html": [ - "c56038e0185797aa3df8082e6c19e481457ab4e1", + "0c5cc578d65781acc48bbbf77f7110f2658ad2de", "support" ], "html/editing/dnd/platform/modifiers/all.html": [ - "0e00ce205b4bf55b6209fe6e9c13177e373be98b", + "202e21982b48e6d47069297fb3ab84857c7e274d", "support" ], "html/editing/dnd/platform/modifiers/copy.html": [ - "871c1927ae85f70e0e019882e8f7dba47a6259e3", + "23daad82ca72fb2b049c4fba01c65cad394e09ea", "support" ], "html/editing/dnd/platform/modifiers/copylink.html": [ - "3a79a3c0933af4c1a3676aea665eecb2d7b8cda6", + "1ceb5f906b89663ed2c09171e6e313adecaef14b", "support" ], "html/editing/dnd/platform/modifiers/copymove.html": [ - "08ce32cf90499131d86bedeb392d9a6d7e1a75d0", + "8fc38bd61a64f860fea02a35b8c08ec27e86698b", "support" ], "html/editing/dnd/platform/modifiers/link.html": [ - "7f7d6ad44d8ed1d8f11493d598bf1f0926b5d9f4", + "78be332c1d96b79be71308da4ce7d574f6250ad5", "support" ], "html/editing/dnd/platform/modifiers/linkmove.html": [ - "ccf7e56a776f441cebf820a01a3f69a0890fcbae", + "54553a5d26dae3e45280825b975d3bc6477acb5e", "support" ], "html/editing/dnd/platform/modifiers/move.html": [ - "ab9810fb6c4e0cfc0e14403b1070c4c8747318b8", + "005b9d694811e6d0f71bdef09ebd0220d348ab9b", "support" ], "html/editing/dnd/platform/modifiers/onlydropzone.html": [ - "9fe5ac15fa53c5747b3cd1547882e0aa56f1d680", + "46fabf3aa3e52263f7e42240d9b837290302157c", "support" ], "html/editing/dnd/platform/modifiers/onlydropzoneevents.html": [ - "74a4a0d2073794b7e0adf737cda2cdc6f7591e24", + "14c48ffa5a069dbcebd96db2f4a35e6dcf6adeef", "support" ], "html/editing/dnd/platform/modifiers/releasemodifiersdrag.html": [ - "e3d4bdc3495450f85a4a879dd2a0b61bff1d59e0", + "4201d5489e30f3d76ef9ec5a19aeb79749687575", "support" ], "html/editing/dnd/platform/modifiers/releasemodifiersdrop.html": [ - "f37465d95ead93605a4706cb85db6da7c2924ecb", + "776cd5e36a8c2de9b4552993ebd19ced7060dfdb", "support" ], "html/editing/dnd/platform/modifiers/scriptmodified.html": [ - "e05507f3150eb6b02bf7c3082319330883f464f4", + "acffe022396bebbe5fdf5265631b3937257accfa", "support" ], "html/editing/dnd/platform/moving-window.html": [ - "8cb80d2886277186977398f83d9d9b1a08a01f12", + "2308b7f0f0c90d283a950234abf944da7f7ee481", "support" ], "html/editing/dnd/platform/overlappingwindows.html": [ - "60ac731752476029f855bb1414bbdc40a38433a0", + "42382e0c729d4500df475f3b35d060f2ca16db1b", "support" ], "html/editing/dnd/platform/placeholderposition1.html": [ - "c61c97776866587909f12ea9bd1096f9bdab8c44", + "d9d3e00162efe1ce85092d5ed03ab2712698f7fe", "support" ], "html/editing/dnd/platform/placeholderposition2.html": [ - "3cf7b7e7889df4520cda9e3e4814552f3366afb1", + "3231826549b1945c5f061dcca72947275efc381d", "support" ], "html/editing/dnd/platform/plugin/click-to-activate.js": [ @@ -581366,131 +587915,131 @@ "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-001.html": [ - "26e63f3ca30ec1755116b9d69c9fe559e4484124", + "0e00706b09cea91c9eb161869bf5c042cf287ea0", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-002.html": [ - "266d248d0b9c1a0985fa1e0766b444a681c61e7b", + "b419a7b9bee26be19ef78938ad7c89aa2b4acb3e", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-003.html": [ - "6490bbac01eacb7b6772e310af563470ac1f7075", + "9ecfb90f83a1aee3290fb1f97aa15670eef28f6d", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-004.html": [ - "098804fab22177f640de5dee1e148c5eb7576d25", + "a22f9952d56b24638fa7dbe01e8df70833f8ffa5", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-005.html": [ - "fd3adec0b77bd2519bb3f790ebfec0607c983377", + "b74c96cf5d5c9e70ec526c156a08ce71a5940e3f", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-006.html": [ - "2686672b056ee21185f7fd4e72ed5f853dd20a46", + "3addcf5e4e3ce81c328e8b5b10fd3a3a23dfc2d5", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-007.html": [ - "bbad100b3fa5fa0c72ed71afff89e72b6722812b", + "d427fba823867305440ef95d49644733f18233fa", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-008.html": [ - "3b98c022525729ca15c67da6ecc63c0a3979c140", + "160424fd68a6a9220f21e4025ed3f64d9d5e0746", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-009.html": [ - "d2f924d28f29aecd53c27f38db01a08d29ced1bb", + "d65bed55b0667091c50b2bdfa85015bf7ce4c2b3", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-010.html": [ - "866091ab1d776b1b327a94c68008965bd1161a9c", + "4bcfc4b8f9e5120dca8164c3dba2a9d0feb6088e", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-011.html": [ - "55811c577718dd40927d5d8b795faa32e833693f", + "9dfe8bf560b6831cd6b87062df35dedd99d8bf80", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-101.html": [ - "95e6ff8e8603120de3a8151b4cceef6b861ff19b", + "ba9a9e867047c5999e3c555d5f9ad4e691d7806b", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-102.html": [ - "705e0ee83b73f8459d99c2a13b8ac8c74f4dc9cd", + "1ef27eec32fdf50a93c2803ccaa37ba382c73ab7", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-103.html": [ - "0ce755892bae513dbc8d8ff877779f50d2781b2f", + "a6a62c60e395192a2bab04171effcbecdb4acc19", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-104.html": [ - "3be7d524d5199afbd3442a8d4709da06dcbb575a", + "52c97c0385628759c116665fbfb246934ab0f1b0", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-105.html": [ - "ccc6c4c58e2f08a3d8cdb626e50688ae304c3298", + "81c933e43290fe02494e0c46c8f3d63df6b81059", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-106.html": [ - "179e72904d84b3b7ed9a7947d7b215a7bc119016", + "291d11c5ad7cf1b7b9680ffabf1c1a0dff896356", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-107.html": [ - "ccb92293d2a4f40319b771cc1104350b9ee38be1", + "43b834dacf2204beb5e011302a289d7380b568c2", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-108.html": [ - "53f5a3398d23ad6fcb68c899763618d0c1d50c3a", + "c855871bf48a49e2627f4d1cbbdcc0d8833aba3d", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-109.html": [ - "70b2d9d821afd9aadd861dd4e964b350c695310e", + "679c22f26b8e786b499e0bf57483955d97039c9d", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-110.html": [ - "992c0ca509d585a44067a5b40336f246dd9ceace", + "6d9dd941ea3810c432e09dd12db1c318f5ff2d0d", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-111.html": [ - "041e157828885c2432f960ed25d17bb2db5d9f48", + "24bcf2ea74192f7a975ea840d28db93d9fb96ff0", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-203.html": [ - "6561c41eeb53d8b4dd2b7ef639e194362174e0f5", + "6830ddbeb149f152b8c61eaa63501583aecbbc87", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-204.html": [ - "8784c160e30d81a6ac9b7674dbc211405d8ce235", + "86ccab5fdc37dc3fb64d9fd5c4e58efc74085e3a", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-205.html": [ - "fe954ef9271dac5562c9131e1f6431d22123fedf", + "dca911c62b36a5152b84d0f1dedcbd9830fb08bc", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-206.html": [ - "4375bb0b3106e616a155234c859f47033efd8672", + "099f6c6cff5512d3b2d9bc1c9f7eba95acd6b03d", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-207.html": [ - "7cb6ee40608e0796e947ac1c6f23c23d81832be6", + "35ba8994c5e0fb7bcb6f4aeff0b6c4e7a25ead0f", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-303.html": [ - "c56574cf7bd53d16e492d983818ce2bb323c1cf1", + "544d9dc1ccc951740309be779f43e28d60c88233", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-304.html": [ - "c7b789c27875b4ae78a8413824372b9cca90de5e", + "6e9b5fb608fd5fb30a69a4ce468a3e592dcef9bc", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-305.html": [ - "66572762520e3f848066d30f10fb50ff2c41d3bd", + "acb912b3cc16308defa2a62c5b767ed5a04b7155", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-306.html": [ - "4724f07a2b9f56c922f752b14dadb854b9de360d", + "ec06af4321cbee8d44cdb0fda550d77bea6f3c2f", "support" ], "html/editing/dnd/platform/plugin/plugin-dnd-307.html": [ - "4b408e346e94231d31b5702c8ecf2925bd7945d4", + "e5d33d9a6a6f26bee085c37f356f9126fb471bba", "support" ], "html/editing/dnd/platform/plugin/swfsources/dragndrop.hx": [ @@ -581510,67 +588059,67 @@ "support" ], "html/editing/dnd/platform/plugindrop.html": [ - "b1a7efce8924b40ce8d009070f38b74b77b3fa15", + "6e37e2f982802d2f622bdcb5a3bc5f5a582fc4f5", "support" ], "html/editing/dnd/platform/selection-between-ui.html": [ - "a537a5dc47baa9a09f3257818cf971d5d0a36c5b", + "403f6c06457bbb23186d6fcfaa47bb06c116ba01", "support" ], "html/editing/dnd/platform/selection-from-os.html": [ - "441cc851c2ae9884d3e3dfabc1eadf7957bc0f0a", + "35c6d7e029ba52fe74233503c06eee508db9f5bf", "support" ], "html/editing/dnd/platform/selection-from-ui.html": [ - "5304729577a3743079eb3dae7aac20172679bd86", + "583134233b9a97d0ed86a0948e331ed7eaf53fc4", "support" ], "html/editing/dnd/platform/selection-to-os.html": [ - "3c08188f5dbbc24dfc96bfe9b5c9e31596beb684", + "c5bbdb252961819024db7054fd459fc0912a7a93", "support" ], "html/editing/dnd/platform/selection-to-ui-via.html": [ - "cae13b522b158ec12b4850c098ca7e3f912a4369", + "0e0e9b743f418c784288d71c8c784c31414376eb", "support" ], "html/editing/dnd/platform/selection-to-ui.html": [ - "ef70e00cf8618783633308a18c57d75b6585fa6e", + "28afa76e7b1ef7c7cb659a9e2c0c4755f7c25c59", "support" ], "html/editing/dnd/platform/selection-ui-to-self.html": [ - "12b9d43986b09f135995c86b1b471b256ee277aa", + "9f3cf659f1ad3b8383f51ec0e106b295eb4ef6c9", "support" ], "html/editing/dnd/platform/selection-unicode-to-os.html": [ - "6a8d163df16e2cc4cb2a00cf63a03e1571ab8b24", + "8050e466f9c2dfba939e3e4fc7b585b8a728341d", "support" ], "html/editing/dnd/platform/taskbardrop.html": [ - "092dfef33d00fcff9f953d70e6053c43da84e0f9", + "6371eef22f4b182b77c4f281c30d69db2ea071b7", "support" ], "html/editing/dnd/platform/taskbarminimise.html": [ - "416174681560779f37cddb0b3719386ee9a2580b", + "c5e249d74bbba0decf7313cbeff93f19197f7d84", "support" ], "html/editing/dnd/platform/text-os-to-os.html": [ - "066d062714057673b1637bdba6bea67c9d9e9c1f", + "a9a12c1e64a64f1368e10d71195eae8c6a5a388c", "support" ], "html/editing/dnd/platform/text-to-os.html": [ - "d32f928a7c28f2d60d430d387d6587aaa91a714b", + "b463cbc8783da5d0b564574397348f40ec7e34b9", "support" ], "html/editing/dnd/reload/001.xhtml": [ - "d92bbb903d6b39015f76507948eaf7fbaafbd5e4", + "283f3264f4c778952353d737a63c66ab7244db21", "support" ], "html/editing/dnd/reload/002.xhtml": [ - "d9291446bd4135e7b6e6a087b13fd6a4bdbcbe51", + "fda2ab7dbb0fb03a9609afe0adc2ca840ef17dc8", "support" ], "html/editing/dnd/reload/003.xhtml": [ - "5891b6dbf73bb4b29db22c2942bc8c2d9b857d57", + "f832ba69c23769cddbf29c0611bba0719fd729b5", "support" ], "html/editing/dnd/reload/004.xhtml": [ @@ -581582,15 +588131,15 @@ "support" ], "html/editing/dnd/reload/006.xhtml": [ - "6354339f5276eefdc05c72f14c4de840fbe5d9d6", + "c5cd04697ac66bee0db632f7050f1ff6c50b0cab", "support" ], "html/editing/dnd/reload/007.xhtml": [ - "9725f15d119201f1c8f9837e722fbcbd8a481bc0", + "cfc4d56ebe1bb63a05bea8dd4b2761f07f753f74", "support" ], "html/editing/dnd/reload/008.xhtml": [ - "ab4d03a856ecf8515ab947dfc0e8a5ce04b29ade", + "353eaf47090b9e60ee0cae1644bce4f6436e6c91", "support" ], "html/editing/dnd/reload/009-1.xhtml": [ @@ -581598,7 +588147,7 @@ "support" ], "html/editing/dnd/reload/009.xhtml": [ - "c54f3cfdf001ab3ad93f451de4316c386bacfd7e", + "508edeab64688479f3998e0971d5b98c068c20f3", "support" ], "html/editing/dnd/reload/010-1.xhtml": [ @@ -581606,7 +588155,7 @@ "support" ], "html/editing/dnd/reload/010.xhtml": [ - "ecc523c73a5fb2c9b3bf6848ae36032e94849473", + "4766b0ebca3982f9aa2760d5f03340c2ee35a9f8", "support" ], "html/editing/dnd/reload/011-1.xhtml": [ @@ -581614,7 +588163,7 @@ "support" ], "html/editing/dnd/reload/011.xhtml": [ - "c63127c904535f0bc2cb6241ce534089fb17fdf6", + "b54f8f32c82f21578ea22a0c6acd7fd812411ef3", "support" ], "html/editing/dnd/reload/012-1.xhtml": [ @@ -581622,7 +588171,7 @@ "support" ], "html/editing/dnd/reload/012-2.xhtml": [ - "079417faea7ff1e7075ba995a08c23ee57bc0373", + "5c5b550eda182b531fb099376d97347d550d7232", "support" ], "html/editing/dnd/reload/012.xhtml": [ @@ -581630,87 +588179,87 @@ "support" ], "html/editing/dnd/remove/001.xhtml": [ - "0f8e35a791dd9aa1e0ebca947750fa1554b9413f", + "9ea0775b92a035b7d70e08c94e207e6e18124f7f", "support" ], "html/editing/dnd/remove/002.xhtml": [ - "36d92c9a0a169b298255f970ec2552e33d8639a3", + "f936f0b6234210be82b07399ef971f8bda2d983e", "support" ], "html/editing/dnd/remove/003.xhtml": [ - "03b1c506370bdbca5ca2cd3ac41a44a0ef71c6e6", + "11306548315c0fae89e5de7fc08bb1cebbf7e157", "support" ], "html/editing/dnd/remove/004.xhtml": [ - "00c67b71217c1709be10f377f6f7fe3a6dfa7464", + "6f3b8321b747e0d389ebe869ad6c7a421a1d8bd6", "support" ], "html/editing/dnd/remove/005.xhtml": [ - "34b9af04b5ff36cb6cfbc1353871fadf47436536", + "9d4c5564e9a302938d5a08dc0ff99c4c949d9e64", "support" ], "html/editing/dnd/remove/006.xhtml": [ - "b1e041d7e157321cfb0cbaae38afe29bea8c8880", + "0fd7f8edc4aa3d671297f74efeb6c811a30e5a49", "support" ], "html/editing/dnd/remove/007.xhtml": [ - "1fae3a7c50a3462769292184975c932e01f1f41d", + "47e34375c495b6d22dbc65510c66eb8fe6cbfa9b", "support" ], "html/editing/dnd/remove/008.xhtml": [ - "d60fdb6997cc2a3607058a66fc82475ed9d6c669", + "ad4062c25af451c000c4669206db7759feb48773", "support" ], "html/editing/dnd/remove/009.xhtml": [ - "866dfb333c3fe3ebb3748bf19d951443f299b772", + "4176237b448c316080b5f42c5894822b0cf09d1c", "support" ], "html/editing/dnd/remove/010.xhtml": [ - "14c45961e70ac79b4a200ae1b5e18d9fb358ded1", + "0286531012409c0b3ef76ef3829f1d5415c83a16", "support" ], "html/editing/dnd/remove/011.xhtml": [ - "6451510b0e11ec29ad73ecfd848e83e3af39aeb5", + "fbb5de49e375b914d7f8c343c9192ddbe24d5e95", "support" ], "html/editing/dnd/remove/012.xhtml": [ - "cf9bd6973a2f98f35a889e60e543d15d9c9c7900", + "4e4cd42485abdb73453ade26991c4c3d96f96212", "support" ], "html/editing/dnd/remove/013.xhtml": [ - "6b83970f1ca256dea15adc85dc80446e1f9c731f", + "ecc93f0705dab524814aaa2cd34f7e7032f17c3d", "support" ], "html/editing/dnd/remove/014.xhtml": [ - "7008317ac6e0da6718fd0df0de6ca5fb4da52423", + "5e19f9da8a0f05f5e8e80a3db9ae1394f5b7262c", "support" ], "html/editing/dnd/remove/015.xhtml": [ - "0e11e383e2dd3fb3fad0a78c2f8e47d3ff907afd", + "3808f7a947f0192b135d0d8ec6387d3c8aa10c7e", "support" ], "html/editing/dnd/remove/016.xhtml": [ - "8bfa608a895e1dd6d5410fb640514c00e62f247e", + "331ce94189bf35120ddcd7e8c1d15bfdc2659285", "support" ], "html/editing/dnd/remove/017.xhtml": [ - "fcb2281f56027914863ae6dc363383f829994aa3", + "45201763306392ce16e1706b02e3bce3120ae620", "support" ], "html/editing/dnd/remove/018.xhtml": [ - "3fa998dfdda19d66b39940e72836c6c86f27b463", + "2dee80d49bdd67c4ddf2f610b42652abca816948", "support" ], "html/editing/dnd/remove/019.xhtml": [ - "8839958f80d2bf37cf248be360c3c0a4ef84238a", + "edece2e031d50b6d2561cc521c4e823d6af329b6", "support" ], "html/editing/dnd/remove/020.xhtml": [ - "e2bd4aa7f154f8e65aae7743ad8efaa46d63448d", + "cb5b134d629843461f2e4e8187842f31c1c19f8b", "support" ], "html/editing/dnd/remove/021.xhtml": [ - "e29027964f3346e940de6454f4107f247a3dcad0", + "6ab93757377f7f0efcb16628261dac29dd5c72ca", "support" ], "html/editing/dnd/remove/022-1.html": [ @@ -581718,7 +588267,7 @@ "support" ], "html/editing/dnd/remove/022.html": [ - "3c5d83f5aa63a2e859eae087cc77c766009c02f7", + "55e2cc2c2d91fdbf824f4e14b40af7e1f2c354f9", "support" ], "html/editing/dnd/remove/helper-drag-me-input.xhtml": [ @@ -581766,15 +588315,15 @@ "support" ], "html/editing/dnd/roundtrip/001.xhtml": [ - "35910e7dc9d4fd4b0bfc554e8c8e503eef119a3a", + "a05441a7257573fd5928180b19e88e55d9da5547", "support" ], "html/editing/dnd/roundtrip/002.xhtml": [ - "6e67ae5f30c30fa79b734cd83c7324abf936782b", + "49dcd28f17ab53cc6c77901ff7ff936278315dfc", "support" ], "html/editing/dnd/roundtrip/003.xhtml": [ - "2ac1c5c8528aafc3fc2a43194f1ee12fe10c48a5", + "af98f90f3bfcfe09f840318de84d9786dbf0b450", "support" ], "html/editing/dnd/roundtrip/004.xhtml": [ @@ -581786,159 +588335,159 @@ "support" ], "html/editing/dnd/roundtrip/006.xhtml": [ - "c085b1e46a17bede2d1928e1eacfac03ef4f9294", + "a27832b83ba24d414bf800fb1359b90b573d5e35", "support" ], "html/editing/dnd/roundtrip/007.xhtml": [ - "1a65f557c84ef26e5b07b6717b5092764921ea52", + "6e652209efab99b6140fc31e2539a2b1c7bf5b9c", "support" ], "html/editing/dnd/roundtrip/008.xhtml": [ - "18b69558cf10dd12b47cb66e7facf67c8caba276", + "f104c6eb242307a1282174b50c26891555ebbaf0", "support" ], "html/editing/dnd/selection/001.xhtml": [ - "bcc3875f19f84f6a581cc844579093c8cc9460d9", + "d88b3e95fbb34d2e4300924549dcc2f8500b9ed2", "support" ], "html/editing/dnd/selection/002.xhtml": [ - "082726f1da83519d228a21eff653dda4a9c0559d", + "e13ff85c063d72fe42b01623e307b71b5ea0e91b", "support" ], "html/editing/dnd/selection/003.xhtml": [ - "ff7bc36fe40f597ee6c7df5a0cd66009cad8e0eb", + "4b8dc59daa4147b12dc6fa0ad0dcc510b915ac48", "support" ], "html/editing/dnd/selection/004.xhtml": [ - "5e3054988544c7cacc40e8ddf8b27c3f554cae20", + "ca41b15576d6f0d84b5af16e9d04adc5ab5b8112", "support" ], "html/editing/dnd/selection/005.xhtml": [ - "cb4f3817758bd3b2717e4d136b306f1e54ec626e", + "b9fc44169074cc2a39f43866c9663ffeb44d2bc1", "support" ], "html/editing/dnd/selection/006.xhtml": [ - "3c5cb313114cc30186648d45d2c177647191c052", + "2921eab471a14049fd3d4f0959969c3022709199", "support" ], "html/editing/dnd/selection/007.xhtml": [ - "2be29eed54fdc7bc111f32b9341a7c4673a96d6f", + "9aa0900a74f3e903f7e03b3c5f0f9adbb0a38310", "support" ], "html/editing/dnd/selection/008.xhtml": [ - "5acfd761a7f0e3bd88ea00dbaf2c2e15c50d21d0", + "67ea3296f69422fa8a59b07cd7e3f27c8f9be6b0", "support" ], "html/editing/dnd/selection/009.xhtml": [ - "29133c60fd37908ec7cc49f0464ec158317a2094", + "ff46a354ec4310f9b95f19e067a5447f03700584", "support" ], "html/editing/dnd/selection/010.xhtml": [ - "c5f568fa86f7523e80bf15a0bb85150c41cbfbcb", + "9c282da7ae0f3f0de653e25cf803a27d54e2e7b0", "support" ], "html/editing/dnd/selection/011.xhtml": [ - "5ca9f924daf67bbd5739dd7a199e96ccf859dab1", + "521506e2c12031b7e59072d5220b359ce2fae16a", "support" ], "html/editing/dnd/selection/012.xhtml": [ - "edd17e075648ef69e957ad3d351a62a3f54da0e9", + "2f86f404c2172b7a6eb6dae10caba63a1341b3ae", "support" ], "html/editing/dnd/selection/013.xhtml": [ - "8f8106c65d7550b6b773943388d67618a6850fdc", + "4e4f8ba9cc38f78dcf0d6d229192809131ec2832", "support" ], "html/editing/dnd/selection/014.xhtml": [ - "420f882ca240bcc44c3837c1028f0a17e10aa830", + "9aae0e8fe4874558d5eb3ce840eb546731b12afd", "support" ], "html/editing/dnd/selection/015.xhtml": [ - "3a67566780decd4e706876c4d08cd6b681c49cfc", + "19728fc63386aa0c12ed083f2551fb0619d18cbf", "support" ], "html/editing/dnd/selection/016.xhtml": [ - "4b5f23a7519bd705a9feb8037094080b2ab37056", + "6d83ef0384c5357e73ffbae078998b4c75367c86", "support" ], "html/editing/dnd/selection/017.xhtml": [ - "a424c3bef978a593b79e4355ebc29290c26829e0", + "8840d5fb7f7571be1098055507c2618edeb33817", "support" ], "html/editing/dnd/selection/018.xhtml": [ - "08ca18944f5ac1c0aed4b5a2e57d0785de16f040", + "6f52319c0dd2bb8077bd4d661305a62926b1d82d", "support" ], "html/editing/dnd/selection/019.xhtml": [ - "aee68850571f63f64c1dd32584b24b01eadb20ac", + "3524ce91c9a1965a1ef73a1e6e9849784932ae80", "support" ], "html/editing/dnd/selection/020.xhtml": [ - "2c13786d6223b3c6066f6d9d23f8c6b918182ebb", + "9bbfbaf76e126441dad1344535404ee40e06836e", "support" ], "html/editing/dnd/selection/021.xhtml": [ - "89a87e1ade7850af9509d1bc6400fc17271d6eec", + "ea2fcb5de2893a81133bd2d4cb65ac07d442372d", "support" ], "html/editing/dnd/selection/022.xhtml": [ - "85455ab9f481e5a841ebe0082d7a04fd9880829d", + "f079b7469ef45a554af78c772dc85828255c8b3d", "support" ], "html/editing/dnd/selection/023.xhtml": [ - "fdafe3639278936eeb96684b54f37440b7b379b4", + "4e0c43255d75f3e95a1569e031b277c4f22d78db", "support" ], "html/editing/dnd/selection/024.xhtml": [ - "56981ae946751118e4824d0528f3db1004145068", + "8e9b348fd5529d263ab6d2c98452ea3e05622843", "support" ], "html/editing/dnd/selection/025.xhtml": [ - "096c85d97e37beda6ba7800b9fa0e9738643f618", + "d6ccc2d067f00dd08591722d511d57b87cd9fc70", "support" ], "html/editing/dnd/selection/026.xhtml": [ - "2f175465dc545ed2d4b4e49fb102b12aaf65b099", + "1b350e96dc27adc07e59a079033f9bd7d1c3a8a5", "support" ], "html/editing/dnd/selection/027.xhtml": [ - "c8280d8270ebec64bb0ec4574b6aea9affe4676f", + "b1a8e647cf824d9379f4733110611de56f02354a", "support" ], "html/editing/dnd/selection/028.xhtml": [ - "23b03ec6d3bb73c81a2d324c1d63da630465e893", + "007a9bf1d9ba01364cea2adc054204dbab2e47f0", "support" ], "html/editing/dnd/selection/029.xhtml": [ - "8ff271378f27f0c88e8836175f28bad7d9bd2821", + "25f5b71b290690e6a5c73d141adfe6f2e4c1c2b6", "support" ], "html/editing/dnd/selection/030.xhtml": [ - "233b6eba1a8170207a8edd58633518f0f95b1352", + "bbcfce5398676e9ad6d2a508ace0bd218ee3b700", "support" ], "html/editing/dnd/selection/031.xhtml": [ - "be3c230d7246c6f8903be0ac137aa8d39fae4955", + "c5e2ae55f2d0c924c4a46ee08305201ad5d6926b", "support" ], "html/editing/dnd/selection/032.xhtml": [ - "c76c77ad1c2d6049116129dbc83649081f4c73e3", + "8b2c3e25319b5b76f5ac3459cf7f44e7a8ed36e3", "support" ], "html/editing/dnd/selection/033.xhtml": [ - "a00e9415cef951e1fbd9794cb51b38a113fbf974", + "944d6b646c3993fd8d3a4ba4aa7fa25e60e8dbb5", "support" ], "html/editing/dnd/selection/034.xhtml": [ - "384cdd6581c109e4666b655ab31ccc5fee6c8c71", + "9a7821d7e6ef5d9e798f27d37b9fb693690053d8", "support" ], "html/editing/dnd/selection/035.xhtml": [ - "0ba40a6a07ac8727e631305a1dda308b404ebec3", + "3e83a7ff83dfc7972d41d05ac442b6e57a5074b5", "support" ], "html/editing/dnd/selection/036.xhtml": [ - "b8fcbfa04d5e73da3adaccd68dc8dd06aca3d15a", + "fbb17a02dda1100ac6ab25e57ec228d536a2bba0", "support" ], "html/editing/dnd/selection/037.xhtml": [ @@ -581974,103 +588523,103 @@ "support" ], "html/editing/dnd/selection/045.xhtml": [ - "f5884dc16831f097b9eabc46832b77623383974d", + "c481ad5b81f218ef3d1cb849f61fb61edb9e5e6b", "support" ], "html/editing/dnd/selection/046.xhtml": [ - "0a413a5d9c7d0b0f5303a50e84722496a82e9bf8", + "d8c8f27a34639cde55add283529406d2e20a5988", "support" ], "html/editing/dnd/selection/047.xhtml": [ - "e89fef1487d164b666d0e4f38bc0e3e3e8da3049", + "08807edbf76689ad05a46af59712cd6869b13a1a", "support" ], "html/editing/dnd/selection/048.xhtml": [ - "050bdb1bd06a1dd6c19895b55dce130e223c262f", + "febb047456e71c2c3e4edeb10af2625c30998d0e", "support" ], "html/editing/dnd/selection/049.xhtml": [ - "ca50a87205c0b133c0f7411cfc5083342c22eed4", + "e2d74c13f303d406f598478051c405f1e5945b40", "support" ], "html/editing/dnd/selection/050.xhtml": [ - "7298a2fa2889f53b0460b860be3e98aa76e2d0b5", + "5b646b6260b30e1f75e3fdf44097de68103d6d95", "support" ], "html/editing/dnd/selection/051.xhtml": [ - "fecd1081d193018358cfe38ee24db60b144c541d", + "aed697e585703448228cf22608bc8bb6c0f67744", "support" ], "html/editing/dnd/selection/052.xhtml": [ - "83ae1f9599e911966ab22939cdacea4d0f35f9ee", + "a03e2980b06330afca8bd6c94cbde031e20b52e2", "support" ], "html/editing/dnd/selection/053.xhtml": [ - "344b78e7f290fe6f9b23d73ec403d3bfe558f157", + "44e29b3684061082dd8868ea40c2ba935c352218", "support" ], "html/editing/dnd/selection/054.xhtml": [ - "b5494c07923734017fca9c0160df72cd4375899f", + "34f698a2bdc8989a80c2eceaeb80be9c55f84589", "support" ], "html/editing/dnd/selection/055.xhtml": [ - "b26bf337ae728f0f6853f18104d97159b2166452", + "77369e8c022218fa4506e99f7e931c85e0ffcd52", "support" ], "html/editing/dnd/selection/056.xhtml": [ - "9306c5b4d16391e9870ca42820d016113a5951b7", + "633288558a52dfd27bcb6f1d26ef8a0c9951d472", "support" ], "html/editing/dnd/selection/057.xhtml": [ - "bcba83fc42529f38f916e87583d70bb3ec57acae", + "2d758ec6166881ffe36f303bb0d67cbd23ac06ac", "support" ], "html/editing/dnd/selection/058.xhtml": [ - "c877bc9aa2919e8207ef0e33fd62e38feed6a044", + "449dae4827aa431c459facddb6153b1da6028815", "support" ], "html/editing/dnd/selection/059.xhtml": [ - "12887622efded82b64cecd24c771ca4888e7718f", + "7864a9058c2860d541f98216d29d348271c74ba8", "support" ], "html/editing/dnd/selection/060.xhtml": [ - "525a3c45a6cab8c6b9111394dfa89ec01483c813", + "1b5db934b966f56c4b505dfb4850ff8276cc73e9", "support" ], "html/editing/dnd/selection/061.xhtml": [ - "aeffec2032039fe063fe66f64b10d50ea399ebd3", + "2651bdabace6ce33c76142b80856822566e7c14b", "support" ], "html/editing/dnd/selection/062.xhtml": [ - "f93c612352147fc3f2dde87ee040e22b6965af7a", + "35699d2248f9b737e1c5614573af92a2b0de40a0", "support" ], "html/editing/dnd/selection/063.xhtml": [ - "7e42b0fa378dc434750d431cd73a4dac90ea8020", + "88a2f8f0dba711bb0a4ce784c73dc4a67e9255b4", "support" ], "html/editing/dnd/selection/064-1.xhtml": [ - "5e10d1a49b31d43fc7ac749f513f7de48767881c", + "82094413188c390f271f5a2dd7f6d9fecb725b10", "support" ], "html/editing/dnd/selection/064.xhtml": [ - "d63a723a6b6f28a67d8342681d591e1b7dab4789", + "5851df8640ced6a9c3efdec533af7113b58263d0", "support" ], "html/editing/dnd/selection/065.xhtml": [ - "69a16372b9c17247ca340552b067f02ce6c715a4", + "a7ab52523e878206ad7e2e7ad6af69110751ff1a", "support" ], "html/editing/dnd/selection/066.xhtml": [ - "172f2a271221af4b895d4f2d11281777da8b2d56", + "a3c42865f801ed960c07e8e85500d721addfe03c", "support" ], "html/editing/dnd/selection/067-1.xhtml": [ - "33d9b6f3db48dd6068e35c4524d853ba24832b37", + "e23f9e90640f80c150ada8f5f07584009f1b9ce5", "support" ], "html/editing/dnd/selection/067-2.xhtml": [ - "adbebf329f0794c1e491073d081610b89c1bb58a", + "e3aa609ee6afd3c239e84a488ef264ecaf1fe658", "support" ], "html/editing/dnd/selection/067.xhtml": [ @@ -582090,91 +588639,91 @@ "support" ], "html/editing/dnd/selection/069.xhtml": [ - "18536c4e804f60e9d23fa04ffa9333d335cf8ebb", + "3d91be4db232c02a790153e44c6d1e85a906f778", "support" ], "html/editing/dnd/selection/070.xhtml": [ - "142edced6fa3a7ffb294565d343fa0d563af3ec2", + "bdbf70efad3ea481bd1297f51e3be22ae53e4270", "support" ], "html/editing/dnd/selection/071.xhtml": [ - "9d4ff188023839421356105782768cd41282e33e", + "277dbca07755f06ee630664bbb2bc70a3325b603", "support" ], "html/editing/dnd/selection/072.xhtml": [ - "039bb19aa6dfe4d54440e9795cbbe7565f8521ab", + "4b9a7ced4964a4fe992bdb154d855f9a92457b5f", "support" ], "html/editing/dnd/selection/073.xhtml": [ - "105e7dbe7374d134412d8d44d6276da666f75855", + "ba4efe1fb44db07c4b7ab53b5a1d174f00f18f74", "support" ], "html/editing/dnd/selection/074.xhtml": [ - "a3527b647fbf9c8a9b0f5d5e3a79ca719bd5eba0", + "3bc3570b2e3e3c3e666878da750e18762dfbd472", "support" ], "html/editing/dnd/selection/075.xhtml": [ - "c1e386865a00756e991778069812cb77b3e18ed4", + "941546b499bbf44416c2276c8ada224e1c7e1332", "support" ], "html/editing/dnd/selection/076.xhtml": [ - "13e3053c9be495f1ac18b224b5a0e61b15c56b7d", + "b27e505e7840cb7ddd6b922ccd42582c89723623", "support" ], "html/editing/dnd/selection/077.xhtml": [ - "edcf61dc8bdc874a5a2ae845ff63de254b5818c2", + "af61724a55533d258d4bde62099eab3d65cd5dbd", "support" ], "html/editing/dnd/selection/078.xhtml": [ - "f89849494f341b49ac1eff42a919efcec184f7e1", + "0557e0dd2e26effabf1442b3501e0114c7baa1e4", "support" ], "html/editing/dnd/selection/079.xhtml": [ - "e6743d30b475b2f10bc9b9bbc35195e3ce9aefe0", + "0c2cc9d244f08d92f87c48534120688d91f1dad3", "support" ], "html/editing/dnd/selection/080.xhtml": [ - "18a59ae2df4f563c3075d546374acbdfc6f1a0e8", + "683b9961b749144b29f38ac700e86c3eb7b40211", "support" ], "html/editing/dnd/selection/081.xhtml": [ - "b7c8c417b75b022915c65f94fa840232362c279e", + "6a4ce0833e25eeafda5ce06c181ae0e5f8e117bc", "support" ], "html/editing/dnd/selection/082.xhtml": [ - "ce63fb290218fdbab4daf18878e92f19efa27a68", + "f39a9a6941ee7a1bab0560aacd4ff794176fd92d", "support" ], "html/editing/dnd/selection/083.xhtml": [ - "2668e41b0e162277ceff10828ce62d0cd345c5a3", + "a46bd081bab9d823fe8155b09759735c1c92841d", "support" ], "html/editing/dnd/selection/084.xhtml": [ - "a85f966841553ecd119326e7cbbc6a82dedb2152", + "9aecd920e4402751f5fab409a747a7887531b4cb", "support" ], "html/editing/dnd/selection/085.xhtml": [ - "9802df8f40d98477a56fc4170c4c8dc79345d167", + "1a4dabd36eaffba7f7a6a26b2a10e50969ced51e", "support" ], "html/editing/dnd/selection/086.xhtml": [ - "a7285720bb63bb54a735e0cc43c3ddd84b37e7dc", + "248e087afc56ffc7e1d967a919a43e2ccaf1251a", "support" ], "html/editing/dnd/selection/087.xhtml": [ - "5564255ea19b7aa1e7eee5be59368db6f197a9c9", + "212927bb23b71d36bf0276931304c6379c598107", "support" ], "html/editing/dnd/selection/088.xhtml": [ - "db83700a240c4c173962ccfdcdc2a73e5fa44dd3", + "89fd1c3b540de1f3186e0468be6334e51b8cc6e2", "support" ], "html/editing/dnd/selection/089.xhtml": [ - "81d750a30fd188c30a014c35279e5b7b4e7e75a9", + "f20831d1f2f02aec5b6470190af80522b3df2c6e", "support" ], "html/editing/dnd/selection/090.xhtml": [ - "8caebaeb0aafd762887b2af6427f9c2560a809ac", + "5bff64ca2bdb8614dbe63f691680de44d0ce5a2d", "support" ], "html/editing/dnd/selection/091-1.xhtml": [ @@ -582182,7 +588731,7 @@ "support" ], "html/editing/dnd/selection/091-2.xhtml": [ - "272cfdc1145186a01be60947df67c44aaee138b9", + "da4936496846b405a15d6f930e2494d85b59eed7", "support" ], "html/editing/dnd/selection/091.xhtml": [ @@ -582190,59 +588739,59 @@ "support" ], "html/editing/dnd/selection/092.xhtml": [ - "31334b71e61f6931f9e3e17f80a301524323ef41", + "bb8bccd0070976d6dd2fa3d9b36e3caf6480835c", "support" ], "html/editing/dnd/selection/093.xhtml": [ - "fdf75adc8ebbb094455ea429632197e4d2f363ee", + "db1462150094c5dfc6d7e4c1e079860fb93b1464", "support" ], "html/editing/dnd/selection/094.xhtml": [ - "c084d041d994c4d00cafc1be793cbc724286eb6f", + "5a8d5f163d163e83db99fb040eff4f74f8564b1f", "support" ], "html/editing/dnd/selection/095.xhtml": [ - "2f5b241b7c346628d2e6427e7f5b4a4a679dc030", + "a3e13a008d78dd951af0daa96afe132942bca65c", "support" ], "html/editing/dnd/selection/096.xhtml": [ - "2f65c8247a20176a5b96cb95ca8a158ad39a1591", + "3413468f0cbe5e6c7059d566e3c76b02a0b932e0", "support" ], "html/editing/dnd/selection/097.xhtml": [ - "48584035afe5a291a47f75d113266d3a21a96bc1", + "df70163ef8043bbb749351db0395493b59a3b321", "support" ], "html/editing/dnd/selection/098.xhtml": [ - "2b7344aafff856d074d7bd1cf939803e2305ee3f", + "297956a3ef9667d11bdb1c85877dc7d72e550e26", "support" ], "html/editing/dnd/selection/099.xhtml": [ - "75b605e4f17b4a7d72e52263702a6d0d5f0d6389", + "76ebe0c777ef2fde18741b50d575ed2cdf1045a1", "support" ], "html/editing/dnd/selection/100.xhtml": [ - "048e9f88ce401fefbaf1de95f6356e924c17b195", + "9f796e6a7de3a1b5e4a693405e60ec1d1fb611ec", "support" ], "html/editing/dnd/selection/101.xhtml": [ - "13fb2ab4b6deca8ad204f05aba5f4dcf1ae067f3", + "689548e6b63eaab63bdc5fb6a33b60505d1efbe7", "support" ], "html/editing/dnd/selection/102.xhtml": [ - "19bf40a3447c8babf04231f19a1933fcfd0239d0", + "9e3da70ded56d7898900bf79edca8579762ff404", "support" ], "html/editing/dnd/selection/103.xhtml": [ - "42897903027cd75a3d2a105f8b00b2a158638e11", + "d5bcfa9f39b04c44b36dd8682b34a650447a50df", "support" ], "html/editing/dnd/selection/104.xhtml": [ - "0fe1e4435af9c5b3c1d44048b0f0862e480516aa", + "9b7bf3a3e4ba9963c5934962fc6152c4751e94e1", "support" ], "html/editing/dnd/selection/105.xhtml": [ - "86cf4da92041c5df61e45d1218f8128f82a0d138", + "378893f578a416ba6b694c8d62d76d7fb06bf510", "support" ], "html/editing/dnd/selection/106.xhtml": [ @@ -582254,7 +588803,7 @@ "support" ], "html/editing/dnd/selection/107.html": [ - "2cca91614cde86844f9953a37c88cb5d39b385b5", + "e71be4ba414752043ef8f9f6cd73de1150b78261", "support" ], "html/editing/dnd/selection/108-1.html": [ @@ -582262,195 +588811,195 @@ "support" ], "html/editing/dnd/selection/108.html": [ - "3e82be6fffa43b7b7ee9ac515d668a37ddd9484f", + "bcaeb81994e4e279a9a59ebaa3f2d11e2c1ff3f1", "support" ], "html/editing/dnd/selection/109.xhtml": [ - "410ec4f20efb61af8d2fee407d557eb9ca5ea12d", + "2710bfb5e1e4d73c005332de2bb9b95d89685997", "support" ], "html/editing/dnd/selection/110.xhtml": [ - "2abe9d211b361a433cc2d32f56c4317f07f424b9", + "752ee35c9fd9f482431bd09977c1fa8869fcf231", "support" ], "html/editing/dnd/selection/111.xhtml": [ - "91827aea5c9e120b71c6e2f7507ed34e98960b58", + "e4156ea60b6e501d8691061dca758e951d233f1d", "support" ], "html/editing/dnd/selection/112.xhtml": [ - "c3934a38bc1a13d9669eeb345e62687428ebd884", + "aa9fb1efa342a64cb387df67a29227484b86b50f", "support" ], "html/editing/dnd/selection/113.xhtml": [ - "6cb1c4652b0998bc9daacbcd353d636e5b41db21", + "c55b9258e40c7033c813a8c83f885228c84f39f9", "support" ], "html/editing/dnd/selection/114.xhtml": [ - "74d580a0effce9f8b8f13563a40f3797cca6e693", + "36f8506c983b4488d0967c8b435f57aea5d0f741", "support" ], "html/editing/dnd/selection/115.xhtml": [ - "1f281c638539a2dc5a1555770ef11a28e4d6730a", + "bcfd91f1d76cfb39d27cde81f7ed26d3898d29f8", "support" ], "html/editing/dnd/selection/116.xhtml": [ - "13179222d469f226e88249ec5c9fe312821f60b6", + "f32259e61c248b509dd886f87c3cc5d5acae40f3", "support" ], "html/editing/dnd/selection/117.xhtml": [ - "d3e9e8909238ee12158be89544fd5a5055d6b196", + "e20fb5c754c9655b3462b1bcb2d7c3906e1bd02e", "support" ], "html/editing/dnd/selection/118.xhtml": [ - "4ba8cea88bb868eaafb221546b80d4050b574d96", + "71f8dff5cb622bf3332d53e59944d33dceca28e4", "support" ], "html/editing/dnd/selection/119.xhtml": [ - "8fe5a5dac2813a9a541d8c7c8d7c7484fd520b0e", + "87134262607f05186683911969db10771293e4a9", "support" ], "html/editing/dnd/selection/120.xhtml": [ - "950d7b21ca8fc99621ace09e901cfb177423e232", + "ffa2227c9e179211817a22978d1dade5b2668463", "support" ], "html/editing/dnd/selection/121.xhtml": [ - "c0ed17be98da4cc98c4ea94ac60394c472bacc84", + "0ebb217369dec3bb6303345406b2ebf176134584", "support" ], "html/editing/dnd/selection/122.xhtml": [ - "693838b5cd33985b54293aeea9e558a00249f628", + "4154d11a5dd6b13e4ac520f5e13e3dc012d9862c", "support" ], "html/editing/dnd/selection/123.xhtml": [ - "49e629fff740c24233c50045131bdacbcaa4d18b", + "4fd7cd5b18c2446518d6175c20ade19d054971fa", "support" ], "html/editing/dnd/selection/124.xhtml": [ - "18a86667c2c0d88edbbb78a697826c227837f670", + "f519002ca9fb35ab64e039801849348909f458cd", "support" ], "html/editing/dnd/selection/125.xhtml": [ - "3dcd05f15f5f4c527cc2c4222c45c0c69cfb44e4", + "95e9404cc70212d5b7738f82c8be06dd67261972", "support" ], "html/editing/dnd/selection/126.xhtml": [ - "373cdf6235981d1a9643257ffb841067f8c88d9a", + "f3920ca7744a47db096d9784d5b05efa32ad09d1", "support" ], "html/editing/dnd/selection/127.xhtml": [ - "35a3c87bf708b0a17c600bd987a0cbcb6d5d7300", + "dd1109c4643f198a8e7f643f62b5aa8333f85f14", "support" ], "html/editing/dnd/selection/128.xhtml": [ - "974741070060c72cd5e6e21f97d1d489349fc53e", + "62c3f210afc02a6bfdaa1ac4abfdf77b6e057544", "support" ], "html/editing/dnd/selection/129.xhtml": [ - "2f6d5e47278a2320b867e01ed1a09013db8498e2", + "92eadfb6f97e83a9dbc0d2b61bbd7cf671c7f260", "support" ], "html/editing/dnd/selection/130.xhtml": [ - "85dfd7bdcccc96950ea8dd3d0f4344ddd1ead21f", + "0531cb5664194c8bab40f4a229631f761ef0cf83", "support" ], "html/editing/dnd/selection/131.xhtml": [ - "428c5d08b394381aaba5b78317752dc103212cae", + "6794607f3779fe868943d62605fa3c20e44eaf9a", "support" ], "html/editing/dnd/selection/132.xhtml": [ - "1b7188e2bee6f1f14bce6227954216e2a9ece328", + "f016d4fc6a14ef101237ae6eebf40e9aadca3d86", "support" ], "html/editing/dnd/selection/133.xhtml": [ - "4145b9257bd6aa51fec3562fed3bfa372c615c62", + "d9b1ae2e8f98726e78ee91cabb1e4579333eaef9", "support" ], "html/editing/dnd/selection/134.xhtml": [ - "bc597272446c08fbea502bcd42e1f1eb148e12f3", + "b2cd44d7d1abc842dd87f45e8db0bb852cbf4ed7", "support" ], "html/editing/dnd/selection/135.xhtml": [ - "768579806267150edcc6849dff665ce3d343fb00", + "b17050442ea568f27ac719e2bb4efc83dd046749", "support" ], "html/editing/dnd/selection/136.xhtml": [ - "f49e431e13e080785b28b6e6fb79034abe3b8bf4", + "fd232911a49734a9b3067f43471f597c9bf471ae", "support" ], "html/editing/dnd/selection/137.xhtml": [ - "9db0b373c87638fdb9548c56393359e7012be84b", + "19843e87e19a4880ba5a08bb5b54a68e4ce0cce3", "support" ], "html/editing/dnd/selection/138.xhtml": [ - "19ecc285c01f1cfecdfd778985117f4e95ab8c4b", + "db86401a6662fd4df8c4d9e2faca9565f90c7e48", "support" ], "html/editing/dnd/selection/139.xhtml": [ - "f886d99f4124f71751c9fef2b10d133945f7118f", + "bf8a61c0ff6754e6839ee1708a2f09752fdfb0cd", "support" ], "html/editing/dnd/selection/140.xhtml": [ - "33accbbbcb8178c7bb5736611d6430af90c006d8", + "590723b00dccf554db174e5d6963fd35a313bdad", "support" ], "html/editing/dnd/selection/141.xhtml": [ - "a25885e0004dd432e9eeca269281966b103115cb", + "928bc03adb829dcff4ca5aa57b3423aea3053deb", "support" ], "html/editing/dnd/selection/142.xhtml": [ - "746404fb85fc1f8fef3ea61b57e1fc1fd3bb7d58", + "516481863b4a6f6e6a42d6d1b1aea4eb329e662e", "support" ], "html/editing/dnd/selection/143.xhtml": [ - "294393f63adbd1baae217403e392acc74f8bae12", + "36e94eafc1c8c813fde6f25c10fc6b7175cfdc1a", "support" ], "html/editing/dnd/selection/144.xhtml": [ - "f14716dae25e5b65c480727fbc7ef671a342da89", + "e564d1cfcc7a6a2a509e912d137c0d862117b956", "support" ], "html/editing/dnd/selection/145.xhtml": [ - "e3ee1b36037b95445e97bb58c4e49e9df6a03c12", + "919f9c5eee7131dd0f6c47a9dc36cc0ee036081b", "support" ], "html/editing/dnd/selection/146.xhtml": [ - "8f6b109e305301aeff5ea242b534b3069e365bac", + "aa80d5f64a3744a364c4a1d337c48ac4d5bd18b8", "support" ], "html/editing/dnd/selection/147.html": [ - "d612ab7d304ab06a6e45199a8d7aa73584f3a95b", + "4d91c8e4e547a2d09420ff2aab895dc8540ffec8", "support" ], "html/editing/dnd/selection/148.html": [ - "132197ba07fe5d79d407c621865335448bf881df", + "36f836e281284ba942c56ab7c4e557c3647b3250", "support" ], "html/editing/dnd/selection/149.html": [ - "60bc54c919aa74f7aef45e5a55f46f06fe6c0927", + "99000fee44a3531f9db4e7438f36f6403b0a2cd8", "support" ], "html/editing/dnd/selection/150.html": [ - "1e2bcc417ecdb56d599dbd7b2334bb9e5e74b9c0", + "bd5d180114a2f5b4bf3d5123c04e0e3ab4b5b39d", "support" ], "html/editing/dnd/selection/151.xhtml": [ - "a3de33228978c55cd79cd26e326a13183f0879b6", + "4b7d98d163d86105c356db2e37f57ada48196e17", "support" ], "html/editing/dnd/selection/152.xhtml": [ - "9489b21501e9e0ac12d73f8b7f4913f66daa07d9", + "0d916848464eadd0b6de942d35d56c4ef5813cb1", "support" ], "html/editing/dnd/selection/153.xhtml": [ - "41c74a56125e71ad0e221eff588d4f6989fa61d7", + "7654aa1b086e83bedfb65e19dc7b9414e066bc71", "support" ], "html/editing/dnd/selection/154.xhtml": [ - "5d3a1254a7b9246ff33d2e5e1f422a8dcd8c251e", + "2860415406468e56983c0a21a9201667893439cf", "support" ], "html/editing/dnd/selection/155.xhtml": [ - "96c2a802e21ae7d94a87fddb1f6b3b45df4c9ffb", + "431640c71909bf48b201c5734178a3839ae9bc76", "support" ], "html/editing/dnd/selection/156.xhtml": [ @@ -582478,51 +589027,51 @@ "support" ], "html/editing/dnd/selection/162.xhtml": [ - "ef579f5f0876093b8427931eda9766079c51a3f6", + "c07820527933055747cc9d4e533bc3fa69c1653c", "support" ], "html/editing/dnd/selection/163.xhtml": [ - "dee09dc300b11f8f1e81243acb68a0f435c9ede0", + "5ff164c75b6d9e99dee4e2a98eed3ba13a61f9ef", "support" ], "html/editing/dnd/selection/164.xhtml": [ - "5a3c38f18286ac368eb8f631447f839afa26e7c9", + "817908b8d8f0a08a0bef60519ea80c09035d455c", "support" ], "html/editing/dnd/selection/165.xhtml": [ - "2558f4c40971fb4b36496ad5febe20385853097c", + "2e1b6363f80326f4ce8cbbbb8ae9d992d5e85357", "support" ], "html/editing/dnd/selection/166.xhtml": [ - "de93c82db2c19a6667306ec3b82a370925f3bec9", + "8f5063b6ffbad220abb8286542de75fcc6a28728", "support" ], "html/editing/dnd/selection/167.xhtml": [ - "58980244518992396707acd0a2c44a282172efa7", + "c6dcf0704a639b638bed7ab170fe431dfaf59bb6", "support" ], "html/editing/dnd/selection/168.xhtml": [ - "d77f5514998226d493e849f945c475e030b31ad0", + "71d1f789fb338f17f04908665e5e74015dadf57b", "support" ], "html/editing/dnd/selection/169.xhtml": [ - "8f3dbc04c189a79f4efd2fd672254f0159d942f6", + "72c5d28d843c251a6c169e5257995537c4f539d9", "support" ], "html/editing/dnd/selection/170.xhtml": [ - "34bc75ffbc55058db4f3d0d430525e72878e7171", + "5bc44863bee7751c61dc5a53d1e54cce5406edee", "support" ], "html/editing/dnd/selection/171.xhtml": [ - "cf50e40902ced844fb010bd803a44e8e3422ece1", + "1dbb836ff1c3bddbb343fa626f54061f98d5207f", "support" ], "html/editing/dnd/selection/172.html": [ - "5da6d4b82f4946f7d1121be5ba3bc6d392a2f431", + "1d529ae8b6ea62dbbe3ca2027011304b7865d1af", "support" ], "html/editing/dnd/selection/173.html": [ - "dbe88c635722a242d7c9ac0746e8d72cbd947b9c", + "36166ef6a99801b48200b3382df869c4053b89f8", "support" ], "html/editing/dnd/selection/helper-drag-me-input-to-other-input.xhtml": [ @@ -582538,35 +589087,35 @@ "support" ], "html/editing/dnd/selection/helper-drag-me-textarea-to-other-blue-box.xhtml": [ - "8b9971d46f853918270ff0c059bdfac3cf8fed0f", + "28be4785d4e3f51f3ccd10c40c51250c3c5a5fed", "support" ], "html/editing/dnd/selection/helper-drag-me-textarea-to-other-input.xhtml": [ - "15a34983a1cf0993e842bbe054ac3dbb8dc22bc8", + "2ddfad22fb6380178538618b196696c793d2dd18", "support" ], "html/editing/dnd/selection/helper-drag-me-textarea-to-other-textarea.xhtml": [ - "d992a7111260062eccf78690414f2bfec11d75d9", + "dfb3d56abea1cdc2c34af5bce8cade47cae59379", "support" ], "html/editing/dnd/selection/helper-drop-here-blue-box-contenteditable.xhtml": [ - "97f07a148cb1804f7d95ae5faa383a5be996713e", + "774a0f38e923f8defa3a645e8ff0d5b16fe67695", "support" ], "html/editing/dnd/selection/helper-drop-here-blue-box.xhtml": [ - "8f54a4f5ed58da68dd1965c38644cd743ac45790", + "d8885f6cc0466a9e3963c87b749803e23788952d", "support" ], "html/editing/dnd/selection/helper-drop-here-input.xhtml": [ - "edba114a9f02c6f765e65790778be5904988229a", + "2a76eb7863b65bc77fd7aff9e476c131ae19bf14", "support" ], "html/editing/dnd/selection/helper-drop-here-textarea.xhtml": [ - "c28aa2b30555808af26b4ea26cb9e0a91dcd3fa3", + "c75c58c84910c456013bc8324d7155fa46e6209d", "support" ], "html/editing/dnd/selection/helper-scroll-then-drop-input.xhtml": [ - "4b1485acd5287dfe44c3d161acf926adf649052f", + "e3309f34cfbc1efe14135b0a0e039c0f7f31bc96", "support" ], "html/editing/dnd/svg/001.svg": [ @@ -582578,11 +589127,11 @@ "support" ], "html/editing/dnd/svg/003.svg": [ - "18689f34d07cee06574750196523d2eefc0b34d3", + "a9967e2e3b552d15280de147ceb563ecce551eeb", "support" ], "html/editing/dnd/svg/004.svg": [ - "7d4cae4142310e9d0034f20963a65e4ae48016d1", + "87eff41de4cedcb72020f3a8ce2cdb3ec6dc1b4a", "support" ], "html/editing/dnd/svg/005.svg": [ @@ -582598,11 +589147,11 @@ "support" ], "html/editing/dnd/svg/008.svg": [ - "c1b4928d605f8d449399cb264d625e6e1e7d4b7b", + "37b47e635db21cb5c7dd5abaa042947f44a899a6", "support" ], "html/editing/dnd/svg/009.svg": [ - "1b87a018ec253c97f7b301ad8f0a0f3ce6a39ece", + "a5f5ad955349d933c1d83ce8e3abe617540d9e71", "support" ], "html/editing/dnd/svg/010.svg": [ @@ -582610,27 +589159,27 @@ "support" ], "html/editing/dnd/svg/011.svg": [ - "d469b08e8583de7d89f2a7fbd02b701a9f067b8d", + "eaa4b6b8a096682362dd6a95491b3a8d1d7dc85f", "support" ], "html/editing/dnd/svg/012.svg": [ - "937f8718493faaa31e4cc42738d0e2d89aaa8b98", + "1ded6cd5faad0c28c58e593e9e89a3696b8804b6", "support" ], "html/editing/dnd/svg/013-1.xhtml": [ - "709887234473fa93da8274023136c592f5cfff37", + "c4ed6301d94ebd4404ad582dc5b26b61e2aca521", "support" ], "html/editing/dnd/svg/013.svg": [ - "60c96613d4a2a940b194806ef4e22b9d6b23f8c2", + "7d0700baf15b56ff1ba9a2aa5e8b81b893e892b8", "support" ], "html/editing/dnd/svg/014-1.xhtml": [ - "2c64270549b0187d8747a835dea1df8e843c5c37", + "44ff2a2305c3d8872cac57a6d622f63eb2f761dd", "support" ], "html/editing/dnd/svg/014.svg": [ - "847687fdc27333a21ec3ee5ae5f7fce41b33d551", + "fa5afc7fe4057aae731f47aba750ed9f4ed0b6b9", "support" ], "html/editing/dnd/svg/015-1.xhtml": [ @@ -582638,15 +589187,15 @@ "support" ], "html/editing/dnd/svg/015.svg": [ - "9a834617e29c8d712e2a96d3bc0df1e67914cdae", + "1d0ac56b7bbe04188355c68454ae4df8294dde10", "support" ], "html/editing/dnd/svg/016-1.xhtml": [ - "b7f7277c55be7c59de421b14e31aeab6e97815d8", + "5ef623cf30d4ae1b55d74db9db2552fbf4737f78", "support" ], "html/editing/dnd/svg/016.svg": [ - "fd5620ee22721fb421e82f0cec43f168be038262", + "62f21779f65369f82990314b6628b3dbab478201", "support" ], "html/editing/dnd/svg/017.xhtml": [ @@ -582658,47 +589207,47 @@ "support" ], "html/editing/dnd/svg/019.xhtml": [ - "be2aa6bc27fb7dd51a44bc7f4f775453745c2110", + "5cfa191c5ebbfcabc04c625f161c3561f954360f", "support" ], "html/editing/dnd/svg/020.xhtml": [ - "329dd55e49e57a4837fc29c0f90fcd5e778539f0", + "7b833fea7276ee0c4b0045df56259bbe2ef7911c", "support" ], "html/editing/dnd/svg/021.xhtml": [ - "6c6bcd861783e1781f770a96b3f746e3d5b86f05", + "273c409148d7d066808d4a458f294d17888cf505", "support" ], "html/editing/dnd/svg/022.xhtml": [ - "ac41a52a74c97a80a5ecda92d66ef0180da37ee0", + "246d09516b2375af0adb53fbddc45e0b1a3186cf", "support" ], "html/editing/dnd/svg/023.xhtml": [ - "fd4f9fcf41f784f2d82a90c2430e260c88f2c5bf", + "33cf7f6353cbbce06b45d2c44c4a3f6f260195cf", "support" ], "html/editing/dnd/svg/024.xhtml": [ - "6fb0f91bcb300163e449fe4e944b06deffec0fae", + "d4352a1dfc17ff1e98d264c23e67abec210fe499", "support" ], "html/editing/dnd/svg/025.xhtml": [ - "b49e94f577897dfb09b626632a65110abf8c10b5", + "2238ff716b62f401d0cbb31c40207ccdce310b7a", "support" ], "html/editing/dnd/svg/026.xhtml": [ - "15671960e7bb3327dfe83536f82be6b1b3b9b995", + "03f15461cf8460d57fbf1f90ce23c92307ceec11", "support" ], "html/editing/dnd/svg/027.xhtml": [ - "70a980b21b17e780ccbecc49b1caadb2ff5c8b05", + "e50d59f46146f6ce60a3c49183b4abcda489e7a7", "support" ], "html/editing/dnd/svg/028.xhtml": [ - "52eca70aa0761924dc26cd18c9359e51928b40bc", + "8b49838700c54b2c034f35d9d48f33957db17df4", "support" ], "html/editing/dnd/svg/029.xhtml": [ - "2bf35ea1a1f387fbf454e109840f8feeee3b5f44", + "0f5fdd2a0246b21963bea45ed92d7d6f614f84cb", "support" ], "html/editing/dnd/svg/030-1.svg": [ @@ -582706,27 +589255,27 @@ "support" ], "html/editing/dnd/svg/030.xhtml": [ - "352950d7587e6c46fa080a3ed9dd16af46238d3a", + "2524c785d3e5e78e977245e83c48ec1a51e0e4f4", "support" ], "html/editing/dnd/svg/031.xhtml": [ - "5573e1e654a79917111869ccb57d05d73ef81887", + "b659ecec062825ed8a7efe5afd64b25cad087bab", "support" ], "html/editing/dnd/svg/032.xhtml": [ - "cd00b97f2fdf1940e495e9dfb96bba1129947af9", + "12a2e01106aa692b2702fcda382590caa5ac2817", "support" ], "html/editing/dnd/svg/033.xhtml": [ - "2b9fe3e071492f86cfb4409d46495f597d970768", + "06458244b27d6b1f71536ea4f5cb3786a639fe0d", "support" ], "html/editing/dnd/svg/034.xhtml": [ - "8e2bac7dc49ff9afd24b6c73bdb3243d8388d64b", + "efca6d1c325c2fca9141c2cb27de0312cdb2f3d8", "support" ], "html/editing/dnd/svg/035.xhtml": [ - "b4cff062474b69293591cc85f9f7bda7f1b10f23", + "33d32612933ec258f8f32c709f55ac7231789230", "support" ], "html/editing/dnd/svg/036-1.svg": [ @@ -582762,11 +589311,11 @@ "support" ], "html/editing/dnd/svg/042.xhtml": [ - "40cfd839c532719f0f2737548fc54d4d419069e2", + "031d02ea449fc96f58a5544573374763751d242b", "support" ], "html/editing/dnd/svg/043.xhtml": [ - "2724d194e1ab1e11929ce5dee19b888dc7263543", + "402733f80bb0a83950198b5c95c80b2eed9be9b2", "support" ], "html/editing/dnd/svg/044.svg": [ @@ -582778,99 +589327,99 @@ "support" ], "html/editing/dnd/svg/046.svg": [ - "73b9a013845d0be4fb6aac8a323efd00ff2049c0", + "66cb5386cc3dc3945fa91c56b2e7e60d22ce6669", "support" ], "html/editing/dnd/svg/047.svg": [ - "3673cc0b75652202aa942f454bd3d3f6bf299cbe", + "125ae7f58c83437d932cf6d8a3052faab0c947d2", "support" ], "html/editing/dnd/svg/048.svg": [ - "8a967ef6dd5cb412dcb97da9a9c6bb08e762b0c2", + "95835f16c35cb2aab0d5b9ee4458524dd4b6222c", "support" ], "html/editing/dnd/svg/049.xhtml": [ - "46f177b104d9012a40f99ff6e53dd7a0f82ed918", + "1e86d0fec75497f343d57d017b03359ee80c4561", "support" ], "html/editing/dnd/svg/050.xhtml": [ - "bc4d12ba38eaad20b341861506e5703d5e0bc08c", + "45c1cd7c49ddf235b26569404eb84699f9bca42d", "support" ], "html/editing/dnd/svg/051.xhtml": [ - "0ecf58fd03630583b65872a377cd56f86716734b", + "b824ee337b0577fcedcc8c6716199fe826f9371f", "support" ], "html/editing/dnd/svg/052.svg": [ - "ddb636f03b8253cd022f5d10367670eff81e91e5", + "9e5cd4079f15e344ab715831139bfe21057b5690", "support" ], "html/editing/dnd/svg/053.svg": [ - "5b1cbccd879234fcb4ba781df376401a6263a7f4", + "a8fe7783e5dd27fba94072cf991680fa7b089a01", "support" ], "html/editing/dnd/svg/054.svg": [ - "4337fc5d4264a9a97c78eb72f4e9bef7bd869a61", + "539e17223c761636d1bc2c9087ff9345fdc87084", "support" ], "html/editing/dnd/svg/055.svg": [ - "02a8261dad75c24d330e3155d1fafdf1720ae227", + "440bfe88fea606bf27f7958548a4c94c58a6435c", "support" ], "html/editing/dnd/svg/056.svg": [ - "4884a6f453f490707a2049d08aa2842daffd3d0d", + "bbd4a90a311044cab60e98abec69f89fe3ace1f0", "support" ], "html/editing/dnd/svg/057.svg": [ - "b3985f723fa4a9c6e17eced83803d25e0c573220", + "4b0c3159ae5b30706ee5536c3e4754bc05f71da2", "support" ], "html/editing/dnd/svg/058.svg": [ - "34a20b313144691ab12f8a39ff1e3eaf01beabcc", + "f0875c8b982a5067a406b54d9137feb33d2d6466", "support" ], "html/editing/dnd/svg/059-1.svg": [ - "975db3b0f640bf94e41f93cd7a56bd700304fec0", + "b48aab53502383da68577c2ec5d338bb1b903c9e", "support" ], "html/editing/dnd/svg/059.svg": [ - "94a0aa4664427d732206874d6e164935044931f7", + "f117e2bb0531d52fc5dbde4d85161878df4b6706", "support" ], "html/editing/dnd/svg/060-1.svg": [ - "3fb7713a393223d1bbb050d9dba819fa9da22c42", + "2334e33c8d2e1203c3b4ab78739a39da7caefa88", "support" ], "html/editing/dnd/svg/060.svg": [ - "8848edc8923c6e7ee32f9ef469c305da602dd42b", + "ccc63586135bd4e30d041c06241d514d8bd4bb37", "support" ], "html/editing/dnd/svg/061.svg": [ - "24ce47b6da62634df42785aaf2aa37b8dc21eaaa", + "65957fe69870429d06658d36b3f9de0f167338e3", "support" ], "html/editing/dnd/svg/062.svg": [ - "c79524fb729fa2c05bf56e492a03a2b6b3dcecb2", + "b881d3b3d354e990efa72aba324dd7c6913dd560", "support" ], "html/editing/dnd/svg/063.svg": [ - "65b05bfb1f2bbf29319c589b3b516c1a9458d067", + "3cbccc168126c9fda5c60bf8ee4b27f2e70fbb90", "support" ], "html/editing/dnd/svg/064.svg": [ - "a589e15483a5c373df145c6c62c0362a0f8eeb6a", + "87e0812559b246a5cbd13f4a7c75de7cff609328", "support" ], "html/editing/dnd/svg/065.svg": [ - "91fed4fa229a42a3f7abb25ec520868eec992bee", + "0c114a89de49a46eca319717e718535552afdc15", "support" ], "html/editing/dnd/svg/066.svg": [ - "40866ed82a1f8445841d36d0bcf92648ce29642c", + "e1d2b201c3066d91c168fd91acd468bab90d310d", "support" ], "html/editing/dnd/svg/067.svg": [ - "8acaeb24116e0a66599f29b8d51024d9d89e90e7", + "74661e84bbfb9354417f73f4d36d7a3bacd447a2", "support" ], "html/editing/dnd/svg/helper-drop-selection-here-textArea.svg": [ @@ -582878,213 +589427,221 @@ "support" ], "html/editing/dnd/synthetic/001.html": [ - "c4a4f9718167c650acb20648700311a60e2744cc", + "a464f4b3c4cceadb48a0c93c8be4ecb72de67c17", "testharness" ], "html/editing/dnd/synthetic/005-manual.html": [ - "223b2253aab055ea22c94ec28f058de2a79bef04", + "2c34cba5b352e89c7c4f2a1703c3ef658b43210d", "manual" ], "html/editing/dnd/synthetic/006-manual.html": [ - "3cca882e10cfb359f45244b606b14147e5322f38", + "9e36bdbecc05807d517056934e473bf21556d3fc", "manual" ], "html/editing/dnd/target-origin/001-manual.html": [ - "ba23df1e5f586edc2e55ec52efe12be98a5203b0", + "6d9a6910e4afcb1f369e3ba490f8a4559492ec40", "manual" ], "html/editing/dnd/target-origin/002-manual.html": [ - "51dc03cbc55654568591e1921dee540342c31bd0", + "b4aff5f5ad993cd6da595a135f0100929e3bae33", "manual" ], "html/editing/dnd/target-origin/003-manual.html": [ - "e69d11159f774836e61e5f2546e6d9fbeff5ca53", + "f5896bb164ae891ba852a5722738e978544a43e2", "manual" ], "html/editing/dnd/target-origin/004-1.html": [ - "33d7eef7bee461aff964e96d1fb3394529cbc6d0", + "a80baf9e87c039fb1386e1cb7f81787def1bb221", "support" ], "html/editing/dnd/target-origin/004-manual.html": [ - "c77294bf317f351ff76243ab555ec7b71c5ab71e", + "357b3a612d59858a653ba756f63b787af17971a6", "manual" ], "html/editing/dnd/target-origin/005-1.html": [ - "37ce96f7a8681a6e0956c95a2dbc43fd779a3dc6", + "5e82f418d5b3c534f4c27509d8b239ff7fe84c4c", "support" ], "html/editing/dnd/target-origin/005-manual.html": [ - "7f66f99412f884ebdc4b25d51bb9795deb250273", + "2715571560918ffb6d30fa9e203caff2a94066c6", "manual" ], "html/editing/dnd/target-origin/006-manual.html": [ - "656c884288500bb0429e4d92f9caec6b8e924e63", + "062ed2ae640661b7c3b52eeac9766d98d9470449", "manual" ], "html/editing/dnd/target-origin/007-manual.html": [ - "d737ee3882a5ad1b0d9042a2c5f5ca4d16cea5c8", + "38b15695d71a3ce9b1d7cd20da6b14a69f9eb80f", "manual" ], "html/editing/dnd/target-origin/008-manual.html": [ - "b52f42121599104973962348e800b7812c757cf7", + "84c12d5631b565fc1a61cee6a50c3597e06ee977", "manual" ], "html/editing/dnd/target-origin/009-manual.html": [ - "42c8d336dcb7a1cb75171808bb44fbc7e96a5455", + "e98aa65a3fe08b4e0480ab15648cda70c6e14e65", "manual" ], "html/editing/dnd/target-origin/010-manual.html": [ - "68336689ef2f125ea2b06c801c8d7e677d94891d", + "d786d28a11df0c715ddab544fbc9f609533fe8a4", "manual" ], "html/editing/dnd/target-origin/011-manual.html": [ - "445dea90323b62ecf8bfb417ae5fda657d499f06", + "0cc98fc81e6b62925d9af018cad417faede3b23f", "manual" ], "html/editing/dnd/target-origin/012-manual.html": [ - "ab67a181b30a3fd44f070be75b083068a884b728", + "673168f09974e5fa91778fd316c55b3d32f7781a", "manual" ], "html/editing/dnd/target-origin/013-manual.html": [ - "e40dbfec1ecc3352161e631be76518c6d2858876", + "a880c03660e812ec07ede07316e440763706479d", "manual" ], "html/editing/dnd/target-origin/101-manual.html": [ - "9c320d86c2f3c484bac93f43f97951b1907cbe1d", + "b7c79cd240dfa0f5facb2df39322adcb76c8cf17", "manual" ], "html/editing/dnd/target-origin/102-manual.html": [ - "9ece8b77c568879ff207702635c6cb25356d15c0", + "fb3264ebb572defd9fbf62fb1abaa635e81464d3", "manual" ], "html/editing/dnd/target-origin/103-1.html": [ - "a32f92d11624e06618768aa3cf706f4995359146", + "ea40909e872bc910e088ec6448a381f8eccd1c6f", "support" ], "html/editing/dnd/target-origin/103-manual.html": [ - "527a8a34f19921326f889fc1f65dc1c07bbca7f6", + "9ab7300a94a26c08faab321a0065706030e94b0c", "manual" ], "html/editing/dnd/target-origin/104-1.html": [ - "2115efbc1490ad8bc7d37159a8ba69179bc0c369", + "399e18bc5f3a5378def106c543277dfc3eaaca96", "support" ], "html/editing/dnd/target-origin/104-manual.html": [ - "2c58aa33fce9ddfd473c4b526fb672e5299357c9", + "9bd90bb316fd2df4194d88bbf2577049f1c524ba", "manual" ], "html/editing/dnd/target-origin/105-1.html": [ - "6375d254fbae051da48268de7d1b293d3460f421", + "31d0dac45ae997d32300f445967052d3ec4bee07", "support" ], "html/editing/dnd/target-origin/105-manual.html": [ - "7917f47d0d74a051d6c714ae6c311a5d96b7f745", + "517393bc7fb6c8d7d77a13c56b6aaba9c4e2e639", "manual" ], "html/editing/dnd/target-origin/106-1.html": [ - "aee5cd9da9e1343594bb8bf7788d6925be0d0fb7", + "b32c597c1164cf1249d05ddc5d46949af5eddae0", "support" ], "html/editing/dnd/target-origin/106-manual.html": [ - "4d0cce566bad31410a2a358634d4dea564a79c6f", + "cbc441c0d6efd95f56f62e92faa99c1caf4f792d", "manual" ], "html/editing/dnd/target-origin/107-1.html": [ - "1bbd9e32f8da544d3c41c10b7e720408c3e58a76", + "8ad2f951fba43c35b8e7af42a2cc1ac50d3f3a79", "support" ], "html/editing/dnd/target-origin/107-manual.html": [ - "25cf395aabe9156b3858008e72d48631b0bada9d", + "cb5ab77ff5ef0b7139769c819a951ded48ae6242", "manual" ], "html/editing/dnd/target-origin/108-1.html": [ - "a29c950b5ad6ee56380b20c98c69d9606a14e04a", + "678f9680d6599505e7b1b39f59ff895ba552486e", "support" ], "html/editing/dnd/target-origin/108-manual.html": [ - "6f010e7732b6c825a5e821d1e8d006705dbd9600", + "b18eb8dafa335b4be425c9285bcfc732695ff328", "manual" ], "html/editing/dnd/target-origin/109-1.html": [ - "0d2fad56c7282aee5252e8f7a0a00156e6b10b32", + "7ea776808c3801b97e3bdc8d5c77a8b0edbcbdcb", "support" ], "html/editing/dnd/target-origin/109-manual.html": [ - "8ddef20c18fb6b2292686d450dc75fa7a6888584", + "3088e434b71b7ddf88a67aba00f51a1d6d775c01", "manual" ], "html/editing/dnd/target-origin/110-1.html": [ - "b53437ad02958585eeddf89576bced8dab40f5da", + "592682b45eb2f92de8a286d8778aaa8422fbf833", "support" ], "html/editing/dnd/target-origin/110-manual.html": [ - "8b128fd12178e69443603e4fde7ddb7f5dc007ec", + "0747860d413c2c4db02dee4778d61957c2e4ca0c", "manual" ], "html/editing/dnd/target-origin/111-manual.html": [ - "51edc8c2b06af629706177f02f09b1e6b233a32d", + "43223529d3f64ca2230f907d8527012ad5fcbdee", "manual" ], "html/editing/dnd/target-origin/112-manual.html": [ - "7993a414b0d604f588bfe0a3af1bf3b2ea41724c", + "a4f91763335221239128023b1c6d9cc99f7e7fc8", "manual" ], "html/editing/dnd/target-origin/113-manual.html": [ - "8491b5284e04f949be78ce363eafa1747cee6d76", + "4ca614de1b8c1589069db829d98b66f868766545", "manual" ], "html/editing/dnd/target-origin/114-manual.html": [ - "16a683ae1250c4f520be4f29d2e3ed27a022d236", + "5a73fc778aaa3ad8b7f71ed11097ff12efe1fdb6", "manual" ], "html/editing/dnd/target-origin/115-manual.html": [ - "1c325556a7bc97687551dcb6bd7a56259930498b", + "224cf56b3f937d2f81fb23016927b54a001673c6", "manual" ], "html/editing/dnd/target-origin/116-manual.html": [ - "b7e014e3809996a49266c9b04bf8afd31be2b756", + "84fd8023130b497ed9b2b1b8564d980aa4401d6a", "manual" ], "html/editing/dnd/target-origin/117-1.html": [ - "279f22f2811747da2c9a6233daf2c493de573dd6", + "727345d22bd77b78da132b1e7def81c86c4d5b77", "support" ], "html/editing/dnd/target-origin/117-manual.html": [ - "3b6966dae64c77c239d1e0986a8fd202edfd3b76", + "a121526d08fbbcb1007b93727dd67bd284995998", "manual" ], "html/editing/dnd/target-origin/118-1.html": [ - "6144ac93a048df6ecf60fdbf8a646db99bc15d40", + "1b8724e360f886992a85ae7ae155413653fcef26", "support" ], "html/editing/dnd/target-origin/118-manual.html": [ - "5e3e6a22510cfed07c212c4f13c0a41ed3c61d67", + "c337807feb4b51adf21cc35c7eb7aeaab72ef82d", "manual" ], "html/editing/dnd/target-origin/201-manual.html": [ - "93ee484628fad1b812589616ea5fac54842444d5", + "3ff853819d379cc5d3b43a8b7d4d8754439f582c", "manual" ], "html/editing/dnd/target-origin/202.html": [ - "a524afedf1e1468b5dba2492b79b22c5252e0beb", + "ece83f7f0ded238fb9a541a9bbf848e5416d2590", "testharness" ], "html/editing/dnd/target-origin/HELPER-mustallow.html": [ - "2c30f170818973fabe8161cbf619f7b10c31e6b5", + "ae9626f94c4fd374b42af505baac1fac6f447c48", "support" ], "html/editing/dnd/target-origin/HELPER-mustblock.html": [ - "493b51b7bc7fbce9ce869d96ca68f691b249cb8d", + "54bdb0d23fed2b5056567542607562717d151c1e", "support" ], "html/editing/dnd/target-origin/HELPER-showorigin.html": [ - "3d88c7724fdca8e5432181c066b3f228a8fb823b", + "b4f1125d620da0e1154d89f4b04a4468769a34bc", "support" ], "html/editing/dnd/the-datatransfer-interface/dndTransferCases-manual.html": [ "78d645a13235dbed9cdca67814221dac80fd7788", "manual" ], + "html/editing/dnd/the-datatransfer-interface/protectedDragDataTransfer-manual.html": [ + "1a057539ebd15f5d89fc44ee82641df16d9e111d", + "manual" + ], + "html/editing/dnd/the-datatransfer-interface/protectedPasteDataTransfer-manual.html": [ + "f8ff466d4f98f34e12e037045034fc7d908abf94", + "manual" + ], "html/editing/dnd/the-dragevent-interface/dragevent-manual.html": [ "d68dd91a57379388797a557e64d6ed553cd02a6e", "manual" @@ -583222,43 +589779,43 @@ "support" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-001.html": [ - "5c20688ee9f871cdc0b1553287dfe6d4d64dcf15", + "66d0a937c05995f585517e793bd66e8968079c29", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-002.html": [ - "80318bc3c90f72803255831a95c482bf99105d29", + "2f1dad9bf7fdad68a462beed45d54206d53edf59", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-003.html": [ - "ae4f1d7e6c954fd1f3fa53fcd77833954bcdf6d9", + "c698a3fe27a6cbb9904da388c59e405627aee4eb", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-004.html": [ - "ace6101644d2c0e426d611016a3cb3dc30968f4a", + "47fdd479640742bf36e4db5c11efba1d002a2cf7", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-005.html": [ - "5aae7d56aa63f90160ba1e296378b0a0832c07f0", + "95ba6444490e2334eb66e11e32b36c8c21003a50", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-006.html": [ - "e329657b5ebf7211237fa7712a3c710d3ea4b956", + "0ee476d9b5c29fa1ce0580abeabb91d1a79cd919", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-007.html": [ - "10c986cf6e428c782a09572be5c5438d256b17c1", + "6f268eb4181115c208b2838edd88296968fc615d", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-008.html": [ - "c026d35ec89818f5624daad20163fb4ceed62828", + "113319b384df45ad2440afa7c63441734ce6c3ae", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-009.html": [ - "68e7e27bc3777a8fe0807380a28c1ce60aa3becc", + "22e2f9b4f714f366fdb6a5013fcb33303fba0486", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/spelling-markers-010.html": [ - "0320abd956316beff38f2ff06e0f32ee2b2e9887", + "d68569bcf39eaec10599b0e7939db3dd3241002f", "reftest" ], "html/editing/editing-0/spelling-and-grammar-checking/user-interaction-editing-spellcheck.html": [ @@ -583333,6 +589890,10 @@ "aed703113e44497f460012b955d8dda598acf57f", "manual" ], + "html/editing/focus/tabindex-focus-flag.html": [ + "ec7110ae00a54dfa39027ada9152647570cb86bc", + "testharness" + ], "html/editing/inert-subtrees/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -583486,7 +590047,7 @@ "testharness" ], "html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html": [ - "eeb932d95184b11190af6a2e8be2adccc5a84601", + "5d3dd32c513cf4b04260c4acff4f1406bb168a07", "testharness" ], "html/infrastructure/common-dom-interfaces/collections/htmlformcontrolscollection.html": [ @@ -583629,6 +590190,10 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/infrastructure/safe-passing-of-structured-data/echo.js": [ + "092d33c695a185b38798d5e0ba12666a6f26e48a", + "support" + ], "html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.html": [ "8375e9daeb9a11e53a9841874fef50677f0970dc", "testharness" @@ -583654,7 +590219,7 @@ "support" ], "html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html": [ - "17b67f8d75e558be808493f5cba82f978a0b6822", + "024119585fe129c96d510f68072f1a1327fa630f", "testharness" ], "html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/resources/blank.html": [ @@ -583773,6 +590338,10 @@ "2a3deba2534cad6f5e0aa85cfc3c90debcead20a", "testharness" ], + "html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html": [ + "e0f5057cc03fe0bf0bc83587e620b623e4211da3", + "testharness" + ], "html/infrastructure/terminology/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -584098,7 +590667,7 @@ "testharness" ], "html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrolldelay.html": [ - "02f00d35b00fd8c08f7063ab8920171ab5070a71", + "21276710ad52159ecdc9208d2dd9b4345f3cb1d6", "testharness" ], "html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-start-manual.html": [ @@ -584481,6 +591050,18 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/rendering/non-replaced-elements/tables/colgroup_valign-ref.xhtml": [ + "58ec4d37d310270ebccf93e2fe539037cd1d95f0", + "support" + ], + "html/rendering/non-replaced-elements/tables/colgroup_valign_bottom.xhtml": [ + "c8a7f0b90852bed631ae6c86992566c403cc1ba8", + "reftest" + ], + "html/rendering/non-replaced-elements/tables/colgroup_valign_top.xhtml": [ + "1732dc6dd595354e21c7fb6006c32b844ceedf18", + "reftest" + ], "html/rendering/non-replaced-elements/tables/table-border-1-ref.html": [ "1f3aa494ba434211a8cdcd1be289e702856fa05a", "support" @@ -584513,6 +591094,14 @@ "699050ab3bcc8fc11d51c2ae4b9b10aee46876a5", "reftest" ], + "html/rendering/non-replaced-elements/tables/table-direction-ref.html": [ + "97b303c46c7afcc29e0c56856028409c34682baa", + "support" + ], + "html/rendering/non-replaced-elements/tables/table-direction.html": [ + "4c890c9b43bfec7a82a6abeee94d558db2b8f83e", + "reftest" + ], "html/rendering/non-replaced-elements/tables/table-layout-notref.html": [ "a05fad3c06f94c3a617f2efdc589bbb3f5525983", "support" @@ -584525,6 +591114,22 @@ "ec05c435cfd09291184360db7e8b0c5af9c7ba31", "reftest" ], + "html/rendering/non-replaced-elements/tables/table-row-direction-ref.html": [ + "5cf01204381d870738a7454080ea40904b2d0f0c", + "support" + ], + "html/rendering/non-replaced-elements/tables/table-row-direction.html": [ + "433565959474b716d385c2d98d0976ae2121d6d5", + "reftest" + ], + "html/rendering/non-replaced-elements/tables/table-row-group-direction-ref.html": [ + "23616d2840feaafbc6d06b1a1db18dd75d221a23", + "support" + ], + "html/rendering/non-replaced-elements/tables/table-row-group-direction.html": [ + "d4b5cf18545eb48780d9a9a9bfa62ded7dc076bc", + "reftest" + ], "html/rendering/non-replaced-elements/tables/table-vspace-hspace-s.html": [ "a93cbe26a0c5b9a7aeda1faf9db618f79aae8715", "testharness" @@ -585041,16 +591646,16 @@ "bf4610909834f094b85d4c2113009fc9f25b140b", "testharness" ], - "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html": [ - "050190b2706ff41b0a5844ca159990908d57177c", - "testharness" - ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/not-in-shadow-tree.html": [ "0d5f568af3b295b36e390156caf5ce523fd83d93", "testharness" ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/parsing.html": [ - "709457936084abefd847c1557748df61551bd920", + "80aa762a69d2ed8a702ad42fc38a3b9ef58c8be1", + "testharness" + ], + "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html": [ + "d7222fbc63c3cda31b31e63e8e3119a9c61cef0d", "testharness" ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/;url=foo": [ @@ -585069,6 +591674,10 @@ "5bb64e33bd2c80d47ade635a802d316dbfd33911", "support" ], + "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/refresh.py": [ + "299080c29e63843d660229bb8b974ebc0bfa0f18", + "support" + ], "html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/refresh.sub.html": [ "bc4cbc00c0d68887d3ff616acad34b519cfd2532", "support" @@ -585129,6 +591738,22 @@ "3d608438361d8bec5726feb468a3c2fbd5b7cb7d", "testharness" ], + "html/semantics/document-metadata/the-style-element/style_media_change.html": [ + "fdf89bd030658cfa5f46325f0c61adca74784127", + "testharness" + ], + "html/semantics/document-metadata/the-style-element/style_non_matching_media.html": [ + "cdcd861169c580a2ddae38b61cbbcd6efe1c5064", + "testharness" + ], + "html/semantics/document-metadata/the-style-element/style_type.html": [ + "bbef3695e7fd32fb92abd9d1d6a59a9380d0d361", + "testharness" + ], + "html/semantics/document-metadata/the-style-element/style_type_change.html": [ + "867064126601c92dce8a61d6f3e8237153a0a583", + "testharness" + ], "html/semantics/document-metadata/the-title-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -585354,7 +591979,7 @@ "testharness" ], "html/semantics/embedded-content/media-elements/historical.html": [ - "b5a667eb0acb011336be671a700214af2dd10e2f", + "3437c85a3b5e106c61ebb0b96207108d178f0890", "testharness" ], "html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLMediaElement/addTextTrack.html": [ @@ -585686,7 +592311,7 @@ "testharness" ], "html/semantics/embedded-content/media-elements/mime-types/canPlayType.html": [ - "3ea30a20d18f5c8839ccfaa183627702db38ed4b", + "960d7daccac83f48f553edb4d32f1b5919f67dcc", "testharness" ], "html/semantics/embedded-content/media-elements/networkState_during_loadstart.html": [ @@ -585738,7 +592363,7 @@ "testharness" ], "html/semantics/embedded-content/media-elements/playing-the-media-resource/playbackRate.html": [ - "a9bad23477535b4227366de77b087d1c14389a30", + "f529d9f469607cd8975dd2df4d0636a8ceb739e7", "testharness" ], "html/semantics/embedded-content/media-elements/preload_reflects_none_autoplay.html": [ @@ -586013,6 +592638,14 @@ "f7576ff332cac04a4e2b663b6fdd40aef154b6b5", "testharness" ], + "html/semantics/embedded-content/media-elements/track/track-element/track-cue-order.html": [ + "eeab6b02e728aea21878cf72664929766be057b7", + "testharness" + ], + "html/semantics/embedded-content/media-elements/track/track-element/track-data-url.html": [ + "e9c8849350512b1247543939ee0e529947e47c2d", + "testharness" + ], "html/semantics/embedded-content/media-elements/user-interface/muted.html": [ "74deefbbc4b8f96ff4856db1c32c6428183cc040", "testharness" @@ -586346,11 +592979,11 @@ "testharness" ], "html/semantics/embedded-content/the-canvas-element/security.reset.cross.html": [ - "1b844c83c588d722d3b0ef3247d76aaacddfbe9a", + "e263694445c44f0d428c2b67a63d81c96bcbc0b8", "testharness" ], "html/semantics/embedded-content/the-canvas-element/security.reset.redirect.html": [ - "93e50cbaf157c2639f62662801dc1df4b983bde9", + "53917c9910fc573b7438b47a6f4e23529bc46c29", "testharness" ], "html/semantics/embedded-content/the-canvas-element/size.attributes.default.html": [ @@ -586905,6 +593538,18 @@ "130faa6ea1a376ce786f69b672486d7056c32b05", "testharness" ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html": [ + "4010899a36a52436b56867762390e9b27768f706", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html": [ + "9d640f248b376f6bc6a95d09b948e49a3f655954", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html": [ + "96453a352d2bed1d208e203594bcb24ab8ee37cd", + "testharness" + ], "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation_by_user_activation-manual.html": [ "7f8cc0226de24738bc75517e95d2942396b222a8", "manual" @@ -586913,6 +593558,22 @@ "fcbb80f82ca87610d00a6307da426b63f81e5a37", "testharness" ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-1.html": [ + "3891c651b0153f3ea8081e6060b6af684c68e996", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_ancestor-2.html": [ + "9fba655fe48ede1d82512bd17b59d4a22b3e7b23", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html": [ + "04d2705065f73237a7f497fc36d5ab528f1f2793", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_itself.html": [ + "2f6d9ad5237db0f3973b0910bd45f184fb4831f9", + "testharness" + ], "html/semantics/embedded-content/the-iframe-element/iframe_sandbox_popups_escaping-1.html": [ "5dcb098cdef98557922b9dd71d7b39d3de7a595b", "testharness" @@ -586977,12 +593638,140 @@ "0b373551fd3196bca5899de606d44ed8bab79075", "testharness" ], + "html/semantics/embedded-content/the-iframe-element/sandbox_001.htm": [ + "f9f568882185304329471dd4e37457cd7393cc7c", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_002.htm": [ + "4591ddde78ca22bd019d09454842f05334ef74d0", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_003-manual.htm": [ + "2c83ba070de37050ddc4b5676fbc22826d61917d", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_004-manual.htm": [ + "a9690443b9d1380ca496e0a45cc816890e77174d", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_005.htm": [ + "cc38f1cb2941d56d605eaa914e260ccbc887ac77", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_006-manual.htm": [ + "165e76c51151ae0975aef6a8db92f944b81fd07e", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_007-manual.htm": [ + "0587ab3d76bf38a647252d1225ac5415855b3164", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_008-manual.htm": [ + "fa7df332a160765981d1027fc1f82bf307c38b34", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_010-manual.htm": [ + "7ceaca86d83a128fbe3120599807104a4ade4ada", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_011.htm": [ + "29e029f0eea294ee83f1c82a61786ab405841396", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_012.htm": [ + "85d232daf351a70bb32bbd0e12e37ca9bcca9067", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_013.htm": [ + "589cd04b32b2ec9eacb0ce9432abef5ff09338ac", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_014.htm": [ + "26859ec1b85ecb730d2987a46b3fe0b9981b3ab0", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_015.htm": [ + "092f8869b4175c642c101d3dd1128a1acc633d77", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_016.htm": [ + "0be9a4ecfeaefe7c116f02d85c8258e6907671de", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_017.htm": [ + "d2d9040ca454b9f31c27bb7d5bc1597b7c52f804", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_018.htm": [ + "fedc936924ca38286e39096b1745e388b6ca046f", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_019.htm": [ + "d2c7c90c43cba4bdcd2bf1b3688157e1deaada43", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_020-manual.htm": [ + "94d8f8d68042a0983058b317f32c2c8c4211b817", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_021-manual.htm": [ + "3a9c82cc3d7d37f4cbe582498ca2fb551620f31b", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_022-manual.htm": [ + "7045325193ba22e7d99fe756166599fc1ba67d16", + "manual" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_023.htm": [ + "8f32fb01628330d9d1cd922fb8fa53903a9cf5c4", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_024.htm": [ + "5c9fb00e410bde40f0a79b39db6d65d8dc6a90ca", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_025.htm": [ + "8c1ddb426c980769695d60934cf6c3859c049462", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_026.htm": [ + "0b6e855cca5f7107a6ab68b581949c7ccb97a701", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_027.htm": [ + "25052a1413d090a884b8ace1f16800bea26be3dc", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_028.htm": [ + "707b3b220813d65a2f6d553d3f8e868fd28755ed", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_029.htm": [ + "36a68bba236715bdb26228f2b4627edfe40f3a7e", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_030.htm": [ + "a78cdcfb022577c2a2bbe8459e09074501380b98", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_031.htm": [ + "05584a1baa6bcd6eead0310a19887aefc89ab168", + "testharness" + ], + "html/semantics/embedded-content/the-iframe-element/sandbox_032.htm": [ + "fab9aa4f18b1276ad94f63626ed582599aad1a8e", + "testharness" + ], "html/semantics/embedded-content/the-iframe-element/stash.py": [ "5513229f79ab37de67eb4d60ea9dd23cd31d133f", "support" ], "html/semantics/embedded-content/the-iframe-element/support/blank.htm": [ - "941efb7368e46b27b937d34b07fc4d41da01b002", + "ec2daf6a782747ad7d983aefafd954cc7e661cf7", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-that-performs-top-navigation-on-popup.html": [ + "042bf7ad5057dee3d2243c30d5a24227e15ef121", "support" ], "html/semantics/embedded-content/the-iframe-element/support/iframe-that-performs-top-navigation-without-user-gesture-failed.html": [ @@ -586993,14 +593782,138 @@ "a4a67179771917899f41114467b46be39d857eb5", "support" ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-that-tries-to-navigate-parent-and-sends-result-to-grandparent.html": [ + "52ffb8ad46f9a2f9231e04df13b9dab898d8a457", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-tried-to-be-navigated-by-its-child.html": [ + "fb57a49a8b7c689464f6d25542d052145144a2b4", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-trying-to-navigate-its-child.html": [ + "b3d12b8cf7dc60a889e87988b30ca4e327338f6e", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe-trying-to-navigate-itself.html": [ + "afcf7d38cda8f1c2e9bba904da72bd3c576ec629", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_001.htm": [ + "fe13ce697bec46b5d7e2d8f5c1cdd5e157bdb737", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_002.htm": [ + "ffbb78c74d7bdb93e34eddce4ffa4caa51817aaf", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_003.htm": [ + "e2870e9585dcd621146c28186cb31c7941e7d9d7", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_004.htm": [ + "bd6dfb1060afa083e4c59c5b132671a73779cec5", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_006.htm": [ + "f61c5288124b87006246e64c75d1a34c85504a13", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_007.htm": [ + "d6db044955736bc2b0497155c7979c39ae691cf3", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_008.htm": [ + "58604db1641cce22a6c77bc88fa8bdc6284eb746", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_010.htm": [ + "1f2f4e832931489fccbbb6659d0daa91939e7944", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_012.htm": [ + "c73d69b345af0d0a51eb1a9ab059b8f5f0ea9a86", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_020.htm": [ + "732adb28914f90f15ff4f8909a8c0ded5b2540cf", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_020a.htm": [ + "54008f2c3d35e3a5305a7c410b0d762f7727a5ec", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_021.htm": [ + "55bd2d8894925e7f2bb008f00777774b2dcb5e2a", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_021a.htm": [ + "8589c93ff8c880bc7fe242d33b237ec846509993", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_022.htm": [ + "788bc829a155bd05b46fd370204e8120c1c525b6", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_023.htm": [ + "bb8bfec1199055af6539746ac086781ac8d69387", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_024.htm": [ + "5a9234351a43c94b787b37534196379d9de5e84f", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_026.htm": [ + "ade3314e844fe60d5b1bda86a4e8db5cd64108ed", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_027.htm": [ + "6383bdfabe2c5a46d91c0e49d16a4731d172b59a", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_028.htm": [ + "108b8c0998b5d0f312bb388416828b605c41d15d", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_029.htm": [ + "c2b462ee8e71b2aefa4c79c3e804ee934af25aa1", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_031.htm": [ + "0864437a4b9f97be08b4fa027e0cf2887bffa147", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_032.htm": [ + "f64b366c71d51ff73b6370ac2db35013a8c1cb8d", + "support" + ], "html/semantics/embedded-content/the-iframe-element/support/navigation-changed-iframe.html": [ "9dd191a0b5d9c15972363e260228956f7f487c7d", "support" ], + "html/semantics/embedded-content/the-iframe-element/support/sandbox.pdf": [ + "44050f8922b1dd32fcf9dcf4e1bf331646edf496", + "support" + ], "html/semantics/embedded-content/the-iframe-element/support/sandbox_allow_script.html": [ "2319116d010e6b67be6d8aeb801a9b24171b3b0d", "support" ], + "html/semantics/embedded-content/the-iframe-element/support/sandbox_helper.js": [ + "7e3ec2a704a7f7a57f7808a4ff918269b7ce3ce9", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-fail.htm": [ + "65f1509fd23a415de0b64f60239a0833abbc3ffd", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-iframe-content.htm": [ + "c10472f44c627c1ed2b00e341c4e3e3101fcab94", + "support" + ], + "html/semantics/embedded-content/the-iframe-element/support/standalone-pass.htm": [ + "3a8148c40148df2cfcb85054975ff9ad7c718923", + "support" + ], "html/semantics/embedded-content/the-img-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -587013,6 +593926,10 @@ "2047645c2bdecc90189878cc68e861087d7bd84b", "testharness" ], + "html/semantics/embedded-content/the-img-element/adoption.html": [ + "6786386a825f42b04733a2e91c5e95ea907c00fc", + "testharness" + ], "html/semantics/embedded-content/the-img-element/brokenimg.jpg": [ "200b8085f98203ccf455504727ba9d92203f1080", "support" @@ -587033,8 +593950,36 @@ "bdbfbe9a5908c6233bd7b9697a0762bd2e0f6ede", "testharness" ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html": [ + "7fb6e548ca0d039496b35dadabd044274d0960be", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html": [ + "361ae415a6a41c7442c24f24898b51aef0e2270a", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html": [ + "34e5a2beebed1c95ab978258e3d93d9cefcd4d70", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html": [ + "0af39535cb047736d88948de962f876b1addbdbb", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html": [ + "9405efb65176096957438cbdcc59109b488d80e6", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/decode/image-decode.html": [ + "5368b62bf6c950e8d57b16b36148e5695ce16fd8", + "testharness" + ], + "html/semantics/embedded-content/the-img-element/delay-load-event-detached.html": [ + "6845b4a7fd45b083c1c380ad021860654baefc4f", + "testharness" + ], "html/semantics/embedded-content/the-img-element/delay-load-event.html": [ - "e4782535af755b29864fd3de67bbdd0de13f19d7", + "54096da852f0ba13a634ba6bf9e3d2070bba8e5f", "testharness" ], "html/semantics/embedded-content/the-img-element/document-adopt-base-url.html": [ @@ -587089,6 +594034,10 @@ "1d58aab3f3fee594404e34681bde43f85824a738", "manual" ], + "html/semantics/embedded-content/the-img-element/non-active-document.html": [ + "ad443ef3039e99c92de2d14bfe7d1b93cd5bdb0c", + "testharness" + ], "html/semantics/embedded-content/the-img-element/nonexistent-image.html": [ "ed3a4e8ec0ffe8411176c91de37e965f252534cd", "testharness" @@ -587142,7 +594091,7 @@ "testharness" ], "html/semantics/embedded-content/the-img-element/usemap-casing.html": [ - "3f22805f970f300067ede61b013bdd41f81ede71", + "4f7dde7856e4bfab43ce4d411e8bf317dc2a7c6b", "testharness" ], "html/semantics/embedded-content/the-map-element/.gitkeep": [ @@ -587278,7 +594227,7 @@ "testharness" ], "html/semantics/forms/attributes-common-to-form-controls/formAction_document_address.html": [ - "3d0ecc086a82bfa949e91ba6d13105fbbbf5d688", + "1398de0485753a60be754d40064ff10a7a6aa437", "testharness" ], "html/semantics/forms/attributes-common-to-form-controls/formaction.html": [ @@ -587425,6 +594374,10 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/semantics/forms/form-control-infrastructure/association.window.js": [ + "378503a30aa005cd35e726ff252dc5e69644a04f", + "testharness" + ], "html/semantics/forms/form-control-infrastructure/contains.json": [ "465d87952b71ff3ac6c3fe7b13c880028c53b3de", "support" @@ -587445,6 +594398,10 @@ "3b1dea35bb4af384125904d69bf569109965714f", "testharness" ], + "html/semantics/forms/form-control-infrastructure/form_owner_and_table_3.html": [ + "305a2a0d02488f0a90184ddd94894045f413b18a", + "testharness" + ], "html/semantics/forms/form-submission-0/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -587469,6 +594426,10 @@ "92c8c30e186f0a94a962bb5c4be7acf0860b943e", "testharness" ], + "html/semantics/forms/form-submission-0/submission-checks.window.js": [ + "c13ed40ca2a1988368564cb5c9dbcabee4306ceb", + "testharness" + ], "html/semantics/forms/form-submission-0/submit-entity-body.html": [ "f73376af978f2fb89dcbd6e9092f113d90c7a3d6", "testharness" @@ -587542,7 +594503,7 @@ "testharness" ], "html/semantics/forms/textfieldselection/selection-value-interactions.html": [ - "0f93258e5237c49fa24efe5180409e48721e8025", + "c568d7fe10cb4c2071b5d38530ad601988a789ea", "testharness" ], "html/semantics/forms/textfieldselection/selection.html": [ @@ -587569,6 +594530,10 @@ "fd6cbf436213e6a1324d3944f28199b5b7a04d87", "testharness" ], + "html/semantics/forms/the-button-element/button-checkvalidity.html": [ + "8a50258a64a0897bbe50a6a0f151a83b3e4662f7", + "testharness" + ], "html/semantics/forms/the-button-element/button-click-submits.html": [ "2572c669271b48b218a4ff058789fabed5f3751c", "testharness" @@ -587577,10 +594542,18 @@ "322fc4a9f013595a9ac2550401a2743b2ab85b07", "testharness" ], + "html/semantics/forms/the-button-element/button-labels.html": [ + "138bd9c218383a2e4e49d45b08eb15760e2c49b5", + "testharness" + ], "html/semantics/forms/the-button-element/button-menu-historical.html": [ "61d2efc186cc8124ca884dbb8f5b74ef6ca339e8", "testharness" ], + "html/semantics/forms/the-button-element/button-setcustomvalidity.html": [ + "1db71a5bee8a77768dc54cbd1dc3ef000c2eaa6b", + "testharness" + ], "html/semantics/forms/the-button-element/button-type.html": [ "dad1f595fb83eefbb8fa8261a42654c1178f3a13", "testharness" @@ -587589,6 +594562,18 @@ "a4bb6a1e45b5b92e170e87d153a44f2027ff3717", "testharness" ], + "html/semantics/forms/the-button-element/button-validationmessage.html": [ + "443871769510376bd4009893fc808e17ba3e03d8", + "testharness" + ], + "html/semantics/forms/the-button-element/button-validity.html": [ + "867d20b4b61629a1394d53b37f15839e84386a75", + "testharness" + ], + "html/semantics/forms/the-button-element/button-willvalidate.html": [ + "65e3d4c40ee1f2386759f3abf5ade870217993f3", + "testharness" + ], "html/semantics/forms/the-datalist-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -587613,6 +594598,26 @@ "4d815c63bd1fb4a1ae1e3c3c94a98e2975f2f68c", "testharness" ], + "html/semantics/forms/the-fieldset-element/fieldset-checkvalidity.html": [ + "9fcfee0f0149cb35b4ea59a858639bb966be51d5", + "testharness" + ], + "html/semantics/forms/the-fieldset-element/fieldset-setcustomvalidity.html": [ + "4954cc5b7e1c170a6ac3c815c8c1566be9da25d4", + "testharness" + ], + "html/semantics/forms/the-fieldset-element/fieldset-validationmessage.html": [ + "fa45f6b2b651a14cd13351e5f96c5b21cb61c4f0", + "testharness" + ], + "html/semantics/forms/the-fieldset-element/fieldset-validity.html": [ + "619c711a6a1fa39324fa78d5c740bf2232da280f", + "testharness" + ], + "html/semantics/forms/the-fieldset-element/fieldset-willvalidate.html": [ + "ae6898e558da0ee8cca3cd31a5d3cfc5dc9c49a0", + "testharness" + ], "html/semantics/forms/the-form-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -587633,12 +594638,20 @@ "e2a223d34051f8c80a2e6cb2afb24dfc8971c33a", "testharness" ], + "html/semantics/forms/the-form-element/form-action.html": [ + "f576ae6731a157cc2d3779cfb6f10819da7b2e8a", + "testharness" + ], "html/semantics/forms/the-form-element/form-autocomplete.html": [ "c3aae63b6c007e3f39a7bf39c56bcdb7172273ad", "testharness" ], + "html/semantics/forms/the-form-element/form-checkvalidity.html": [ + "1b30a0c5dd414e6a928ca2392b5efc878cdfeb97", + "testharness" + ], "html/semantics/forms/the-form-element/form-elements-filter.html": [ - "bfed166cfad06a5afb59cad6c5e5aea223e4d50b", + "7dfc9203a9900c8ade5e1f85926c92fe29f984a8", "testharness" ], "html/semantics/forms/the-form-element/form-elements-interfaces-01.html": [ @@ -587665,6 +594678,10 @@ "1131356cf872490f9ee110bf4e487a520be63c4c", "testharness" ], + "html/semantics/forms/the-form-element/form-length.html": [ + "4472cc5f40bdd836938ec95166b0b6f804ae04d0", + "testharness" + ], "html/semantics/forms/the-form-element/form-nameditem.html": [ "928a0029fbad4251a30dc660de10ad6fd7f08def", "testharness" @@ -587746,7 +594763,7 @@ "manual" ], "html/semantics/forms/the-input-element/files.html": [ - "04e66b0a0b1c952e8712689295c272b32a5777fa", + "dc7b22c4d70b7ae8cac255ad5b9bf0cf84806e8e", "testharness" ], "html/semantics/forms/the-input-element/hidden.html": [ @@ -587761,6 +594778,30 @@ "b54b500168a20c1e3d23437184bfed78c9c73ef1", "reftest" ], + "html/semantics/forms/the-input-element/input-checkvalidity.html": [ + "48966edfbef5bd48525f45ec4a0f3e240778fc36", + "testharness" + ], + "html/semantics/forms/the-input-element/input-height.html": [ + "c9ee649fc6abd58e49c60afb6d5d916939f2fffb", + "testharness" + ], + "html/semantics/forms/the-input-element/input-labels.html": [ + "0d260017459d6d3b7e446acc9177767ba288b652", + "testharness" + ], + "html/semantics/forms/the-input-element/input-setcustomvalidity.html": [ + "8397448c6a8fc9371303266671c0a1d17d488d5c", + "testharness" + ], + "html/semantics/forms/the-input-element/input-stepdown.html": [ + "1341b0d275696f2bdb7ecc70632fa9a929f7d8c4", + "testharness" + ], + "html/semantics/forms/the-input-element/input-stepup.html": [ + "3305c40cd51e176ee6e73d2ce7042a3a0190ba5d", + "testharness" + ], "html/semantics/forms/the-input-element/input-type-button.html": [ "03652904d0d1e992379c6ab79780b8af758a4803", "testharness" @@ -587769,6 +594810,34 @@ "a7619f660943eec21a9af1be2ac68d6a9be561b4", "testharness" ], + "html/semantics/forms/the-input-element/input-validationmessage.html": [ + "8d9679a2f600b93e0736a004be9d17964990691b", + "testharness" + ], + "html/semantics/forms/the-input-element/input-validity.html": [ + "f96fcd74b42c108c6f6ca91df9e36dbba088983c", + "testharness" + ], + "html/semantics/forms/the-input-element/input-value-invalidstateerr.html": [ + "f4003cc2133dea2e8305c9a6bdf91dd01f0f4c4a", + "testharness" + ], + "html/semantics/forms/the-input-element/input-valueasdate-invalidstateerr.html": [ + "f3c620461383467fcbf1b9c2ee55e9e2a1abf516", + "testharness" + ], + "html/semantics/forms/the-input-element/input-valueasnumber-invalidstateerr.html": [ + "5cd8f0d590eb91eb6a5104afb5eba9d8b6dd3a74", + "testharness" + ], + "html/semantics/forms/the-input-element/input-width.html": [ + "83299d319c30afb7869e281b354c97f99b22634a", + "testharness" + ], + "html/semantics/forms/the-input-element/input-willvalidate.html": [ + "1ad2401b3db0e8a502ea943f2eba6b4c2801d818", + "testharness" + ], "html/semantics/forms/the-input-element/maxlength-manual.html": [ "93c64a93ec974115ee693db091d2bd1f4ac8ea89", "manual" @@ -587869,12 +594938,16 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/semantics/forms/the-label-element/iframe-label-attributes.html": [ + "3629d93c34f27a575114b15256803941c9893f6e", + "support" + ], "html/semantics/forms/the-label-element/label-attributes.html": [ - "bb00ee78b9fa2343d85dcaa13376a832d376617a", + "612957c0c5b28b8797118eb5975bb41bc240d257", "testharness" ], "html/semantics/forms/the-label-element/labelable-elements.html": [ - "421328f898fb2487152f6fd8df315fc22ddea61a", + "80275984254360d8b713b5b330c18ae34138b670", "testharness" ], "html/semantics/forms/the-label-element/proxy-click-to-associated-element.html": [ @@ -587965,10 +595038,6 @@ "10685b8d6e5e3c7d17f4f8b702bcd9672c5c02a7", "testharness" ], - "html/semantics/forms/the-progress-element/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], "html/semantics/forms/the-progress-element/progress-2.html": [ "39e1303dd97060348893e6a32e23a2723ce86170", "testharness" @@ -587977,6 +595046,10 @@ "ae4f3f8d86b720ba8f6c1fe7443cc425519de5da", "testharness" ], + "html/semantics/forms/the-progress-element/progress.window.js": [ + "4a354f5de58cd0dfcd98b4970a9cee7de8b463cf", + "testharness" + ], "html/semantics/forms/the-select-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -588057,8 +595130,12 @@ "81a270bc3c9304f8b2e7dd526519f4eab7d94f45", "testharness" ], + "html/semantics/forms/the-textarea-element/value-defaultValue-textContent-xhtml.xhtml": [ + "03ce5d00e9887037bbd96f2d49e116c6b3329802", + "testharness" + ], "html/semantics/forms/the-textarea-element/value-defaultValue-textContent.html": [ - "55e04e640fd48d92c4be16a912cba57fb4bb9e27", + "67af41d4d44f0de60b952cb15db93b2938133bcf", "testharness" ], "html/semantics/forms/the-textarea-element/wrap-reflect-1-ref.html": [ @@ -588401,6 +595478,14 @@ "340924bc329569ce605ce228619d95f09f335ec5", "support" ], + "html/semantics/interactive-elements/the-dialog-element/dialog-autofocus-multiple-times.html": [ + "d172f6ea35a52d72284d912d944b72a15aed18ac", + "testharness" + ], + "html/semantics/interactive-elements/the-dialog-element/dialog-autofocus.html": [ + "23b7417daa9d2d9d026b97653997fb866083b65f", + "testharness" + ], "html/semantics/interactive-elements/the-dialog-element/dialog-close.html": [ "94ed2b8f019e1b65c47c5f971503496bb4765048", "testharness" @@ -588410,9 +595495,13 @@ "testharness" ], "html/semantics/interactive-elements/the-dialog-element/dialog-showModal.html": [ - "10dd870ad796a59bef26d18917bf91374f475f93", + "c00ac5b6d038b45b1a7cfbef94a4527757fa74e6", "testharness" ], + "html/semantics/interactive-elements/the-dialog-element/resources/common.js": [ + "15580f3e0243093710d4914224ca3963992e3f5b", + "support" + ], "html/semantics/interactive-elements/the-menu-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -588430,7 +595519,7 @@ "testharness" ], "html/semantics/interfaces.js": [ - "b63c7402601bbf801f65dff9bef38797cdaf9eae", + "a9ac58b56b1a0f69f4e47365cb0ada55f31958e3", "support" ], "html/semantics/links/.gitkeep": [ @@ -588449,6 +595538,14 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/semantics/links/following-hyperlinks/activation-behavior.window.js": [ + "aebe3d5ccf39622783c358303acdd3d230bf6abf", + "testharness" + ], + "html/semantics/links/following-hyperlinks/active-document.window.js": [ + "9561aaf89b8fd9ad0ef501e6f02167930044a66a", + "testharness" + ], "html/semantics/links/introduction-3/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -588577,6 +595674,678 @@ "1fe7fe27c3680b24fbbb9c09c849ecb007637d3f", "testharness" ], + "html/semantics/scripting-1/the-script-element/execution-timing/001.html": [ + "d23ee4e0c5c00c5d7d4391ebb346536706667759", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/002.html": [ + "5d092ce11bcefce70ae01bb7001bb889da3dbf5d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/003.html": [ + "8816ebc0a22bd4d3e18abd2805674192d29f3c56", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/004.html": [ + "04a8b79a47ca437a02a17bb551b7fef2b6a7d835", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/005.html": [ + "37c775d72cfdd519dfe126265ab77b272d1bc0c8", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/006.html": [ + "1a4f3d8b56d6e791731fda5e780a2b69573c3eea", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/007.html": [ + "1e52e022c5b97bd1dee6cbfe6edda4cc491458d7", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/008.html": [ + "ba143e2e8a844ddc8387233d8b4df3f5be5561c3", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/009.html": [ + "b0b0c51cf1f3d451592817ee875959c9fcad9418", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/010.html": [ + "e1bfc98b54eb53b3520fbfba440551121176453b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/011.html": [ + "40f7ba1fd6581d2d6244e22159b50f98d1612fe1", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/012.html": [ + "842414a5d4fc08a4e912516113b0315037eb8a60", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/013.html": [ + "a3d31f55bba0f353ab5caf78beacae281fd7de9d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/014.html": [ + "1a3b078aafa030aa0e3caab6a5e62570bc88af1d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/015.html": [ + "07443ef6a9cf56f819ff47255da89d68d56888d1", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/015a.html": [ + "0291cba1bbbbe463a61eed48acfd5c1a40d79625", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/016.html": [ + "202b0b13b825df17d884bbe451c7b0c5191140d5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/017.html": [ + "ce99b2f58fcce540ec59cdb1837a43ade8e3c445", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/018.html": [ + "47ffb063e8310b7863b2eef1ec45fbb9804cd024", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/019.html": [ + "4b1f1d3d868715cc9d43e85f7774e9578f8e3b23", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/020.html": [ + "cd5cb151ef5aa014b8fc644da13004b4ab80f918", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/021.html": [ + "5da0f3f20606338b7b5a3798412ec898d717c5cd", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/022.html": [ + "324705142c6eb688e421f40866af8efda10614c5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/023.html": [ + "aba03041f8bbade7f83f31d8a38ff247db0a033a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/024.html": [ + "9189d5d9e97ac61133296d74960a47e8d735760d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/025.html": [ + "709b649c46dd694b128c4c0269705ddce31fdf51", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/026.html": [ + "f773e76d937b46495df061d263c2448045003d2c", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/027.html": [ + "467f8ba4a1046d643dab83b5f9cf87219f437d16", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/028.html": [ + "e6db3561c59689d2daf87a4ff7579e82869ad1a4", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/029.html": [ + "8aed4c01686d0584f3bf64c96fa1b40f4c5e7cb6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/030.html": [ + "c4e54e3679de97974fc9712e94e1b65a59a92dc2", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/031.html": [ + "a32f62c9e473df14a85bf5961821322107253d0a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/032.html": [ + "0960b1cf2ef637880c41c4b0d5bfb9d6a4d05db9", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/033.html": [ + "0ff9f866cd241987016b2c9a032b4efdd2ddcafa", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/034.html": [ + "d02af948b140f0a12e9ec61113e268a884063075", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/035.html": [ + "710dd846ef4562af224083485916875bd7050074", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/036.html": [ + "0dc31c258b1f527c93f8ad406aea991619e90f54", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/037.html": [ + "699691cf6c438cf37577b447ddc8a4e02356043e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/038.html": [ + "9d58a9f108344b8015aba6e7f22bee9dc964801b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/039.html": [ + "8f1cc330e3aa99be1324239a939ea0c9c0344c4b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/040.html": [ + "10c9ca126729f1924f66f6ae73500077320f83c4", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/041.html": [ + "08170c207fd5bdbcb03b991ae95a4f092a3bda9e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/042.html": [ + "0f0666cddf6f56ba8895bb6f439dea84bc140a27", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/043.html": [ + "04f9067295d8bf022e9b4b2ebaed53248de23afa", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/044.html": [ + "1ca89c76816117a1d3dc95604f4ebf6fde3c5dca", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/045.html": [ + "b2e9b2a41e4c8036c4e6213f741039d899a6b741", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/046.html": [ + "f6871a347c13221475de9488fac2a5389dda53ca", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/047.html": [ + "8ec0b8d61e7db888255872254cd1a46573dacb41", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/048.html": [ + "c7b02c6f69234639f2809425fdaf6ec004fce999", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/049.html": [ + "807973fb2e8f5c00914f09445b602a9b6df2f544", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/050.html": [ + "37c44d5bd82e4cc839404ec4af5e92b06614cbfd", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/051.html": [ + "d06c4297e7bf4da6ccbad488864aa7fd2fcb1394", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/052.html": [ + "b924f14c757438522610244498f28aa3a142c14b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/053.html": [ + "8712c6b08a1a5f43fbb901762b6b5cd12ebbace5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/054.html": [ + "71933d0ced1e7fa1123689eca895e52bd0944940", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/055.html": [ + "27e5aaec0291a2b8fdb7a56798cba419f957f252", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/056.html": [ + "9ecf4fa7eaf31babc4df73a4961a3cafb316b5a2", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/057.html": [ + "c906d6ae1433447512d77bd9fce2d0a4cfe2adbc", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/058.html": [ + "083f0f66c76b55f09085bc4a58d3fd38b71965e0", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/059.html": [ + "e25c32a4f5a39f1be467ec0aa2c720a2d35ca932", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/060.html": [ + "a3a4dc2504b3fc328b1799b5396ab12dd5e9c1e5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/061.html": [ + "6160078136cc7b7141a6782e1fe85d07809a8494", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/062.html": [ + "23800f06871a9ccbcbbad57026392d1736c59f51", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/063.html": [ + "4a14ffb877cfcabbca43c0839002a3665482ea42", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/064.html": [ + "0df9e896cd4024431d79015bae07106b8c90ec38", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/065.html": [ + "a3e198095c684fe65f7410b17f30e20d5159825a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/066.html": [ + "d0a459b7effa011e26f59e8fa5739d06613709da", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/067.html": [ + "f883a1cc977c4a7fe60e3b092508650521397e14", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/068.html": [ + "bbd657ff7506c8a28185b6865ddf9a389c27aaf7", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/069.html": [ + "d1ee26c303c8e7c3e6f5041a25a978073be697f4", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/070.html": [ + "7b0356538c3b22127fd386646fd59f26678d116b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/071.html": [ + "33eaa69d30bcb6fb76523f09d4f2da82e620824d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/072.html": [ + "4499c86050bda22dc556949dfdc12200403b395b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/073.html": [ + "d425736a5e4963f2cb3dbb1b5302d254170ec31b", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/074.html": [ + "e998a89f344b2cffe0dbb368eb7c3840f5627bff", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/075.html": [ + "01089de4c049a4b35e675f8ac6c5c82f0770201e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/076.html": [ + "c410028036e51ae5529acce711ea3dc1cbc83728", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/077.html": [ + "2bfe280f0ae7b745f2217055e66579ab6fb06769", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/078.html": [ + "71244598c4d1c581fb0b8c9a9eb1b19f642428f7", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/079.html": [ + "c8ad7d7bd5cdfbd52d4250b43df2abd4f06320e5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/080.html": [ + "719db071d0811f4bc538376c0a76f79d7c200730", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/081.html": [ + "6597e659964354f9c41ddb6925f34623e58db53a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/082.html": [ + "bef1558730e9919f70c9d40aa811586648cc916a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/083.html": [ + "c8cfd89e086120759ea5fd8f16948076beee8155", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/084.html": [ + "659b7632d4b0bd8ea4313640459afa18fa6d64a1", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/085.html": [ + "2679374b00a1cbd7bceb27cc696f43f8607e46d5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/086.html": [ + "1fccb73a9edfc52c76a190ddf50b8d5f7b5b51c6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/087.html": [ + "3a540cfe0c880fd2e18744fe9e2ae6db4a99286d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/088.html": [ + "90dbe71c37b9434a1d27fa1c5ec3114f21a2a31f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/089.html": [ + "8b2fb9ceac6efb40495bfc11a990e5c36f37841f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/090.html": [ + "bbe3fd83cb6ae72411fc90765ed1be34ebc121f3", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/091.html": [ + "c0f530e26a32057f959e956e9afcf17d6ff4ea85", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/092.html": [ + "12bb519adbd5c893c707cd3b380542d6b91066e5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/094.html": [ + "5915860f57305a372e1d1e0af64d3b7ac3a17a89", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/095.html": [ + "909eee2234b05c80065928819a88f7ce70348034", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/096.html": [ + "2b7db1943ab7ce33fac27d10fcccadac1a11c188", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/097.html": [ + "a0ca9cf4f61905345ad53136617f2f77a4e44b66", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/099.html": [ + "02e40ca54cb912ca3545f5b84d652bcd934cb09a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/101.html": [ + "8aa9b4d0c0c3aec53f4b9cbbbe04a98198379c8f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/102.html": [ + "e9947d2246c4df9e98198508c2105e10902e6203", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/103.html": [ + "b7e6bcc02ea853070cc474f174fd585841812feb", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/104.html": [ + "c701f6fd4c92d4f67069547ec00a28647841731f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/105.html": [ + "f0dad0aefb07c07d7201e92a674f90a68d469973", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/106-import.html": [ + "e231c8038d73b9ee2dedfe0682fb8c21d5271fcb", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/106-noimport.html": [ + "0ae4f0b07e4d96371f6cfa2f8344945caee4b936", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/107-import.html": [ + "cd8a4716caaabb26a1dd6cb38068479b351a49fe", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/107-noimport.html": [ + "60448c23c8165a2c4f439d89732f8fedf8498a3a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/108.html": [ + "0be6d320bf37804fcfe7b78a07a3142faaba1572", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/109.html": [ + "39a7189ff52030e640d83198d6a4146e920a91f6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/110.html": [ + "3420419e7c63b7ca90e04bde19a4bc95f3a5c95d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/111.html": [ + "a99a1c9e43cbd3332130a165774dd54d4ac8c4be", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/112.html": [ + "4447a3344bfdf9e3d56a6bf754c33d2f53933aa0", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/113.html": [ + "9bacb339d93392b93edab759c910c1cdab09f6df", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/114.html": [ + "0000752ff78abb1158197a8e8920a54e97cb7b77", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/115.html": [ + "52b423eb9f50314e1b27ee61fb41f6d279888c07", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/116.html": [ + "d77e037c163cfc8c45a3eb3ecdcecd8b492cd8a3", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/117.html": [ + "c28528923ecc446750f72c9886158dc731dc12c1", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/118.html": [ + "641d49953c5e5270059ae8fd6cf3f65879350fb9", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/119.html": [ + "cc32b1d7115f6803cd91176e8497238f25575169", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/120.html": [ + "c2d7f974bf9bd4cc9e750eb4c50edecbcdcafd9e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/121.html": [ + "0245a0b6ba93d08756f62221336f3bd67d2a590c", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/122.html": [ + "b5d0fad74d7fd7c10734e8f28c4167f9d98d5cae", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/123.html": [ + "c3703a934c8641c6b883382c0a6018fd834f5e10", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/124.html": [ + "7979e04915d796ef576dfb59d1f78982db2cf81e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/125.html": [ + "d569b9c830ee0a373650d4d9db327b966b182f5c", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/126.html": [ + "be9626e860210736b9685ad7886ca056ab30fe1a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/127.html": [ + "1e0808649afba34d91bba059636ea57e3ed891bb", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/128.html": [ + "a28ff6eafdd78e1af6322becbefb7cf50f2407e8", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/129.html": [ + "7aa159087c7638e87413e0b0fc7908e6fc68698f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/130.html": [ + "243c9eba19176f31530e143516ca715755600c39", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/131.html": [ + "740031dbe1bbbf94a0059dfd8446fbacaf831ede", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/132.html": [ + "e6e3530979aecd63fba2604a93f3e75280f3b154", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/133.html": [ + "25b8dbca8b21a766bed54cfc7febd8cfde976997", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/134.html": [ + "15609476a51e77175976a82d0c10b59b220e3ac0", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/135.html": [ + "ce7272e84d882fd6fe300b17e04d19c92872ec72", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/136.html": [ + "ef70c5d1a5cb8d18256b20f9fbcbf3cd8298870d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/137.html": [ + "0cc989017587965b2382325919c2d12861977271", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/138.html": [ + "9da55aab3e057b46b1805961c10e8a9a1934d667", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/139.html": [ + "1a5a367353adf741ef7f4acee41caaa215223fa4", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/140.html": [ + "c7828895274df824c0b11f45625b23247cd1a6e3", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/141.html": [ + "2b9164d00a4a1ecea2bacc63b3da663cc4a6262a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/142.html": [ + "8ce8fddf1a5101442d7626baa526d7c78a4ba9a0", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/143.html": [ + "adad099b2203fc0d465247f254e59d49e4cdea9f", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/144.html": [ + "1535549f62b6f3df33861a8a87d62410ba6b19cc", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/145.html": [ + "8d3ec79d77d193dd07bc7a5a84faaa4f172a4f18", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/146.html": [ + "cb7f116ba71d7482936f40fab78db72cbe24edbf", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/147.html": [ + "8547607e8bb80733068d9ea6236995e64cea4397", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/148.html": [ + "25c984be14ca2f8cf01549b264d72a9edf054970", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/149.html": [ + "5fba7bd883dd018e25af52b1708e53151effcbba", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/css/background.css": [ + "7a48895f08aca52493e4c9e192a382664b00341b", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/css/import.css": [ + "2e8c8d9ede773e4078b2e8926d08c87e5b649bf1", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/pages/helloworld-postMessage.html": [ + "1c5be7112209bd55cce40459a5bc670018d224cc", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/pages/helloworld.html": [ + "7c78659eaaeec9f9a4c0bb990a538fabeac9db1f", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/count-script-tags.js": [ + "54818d68b9c9ef3d0ede269cc75eb12e977fe8b9", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/find-body.js": [ + "e65eff4f877fb89de51f569e07add665147cd9c9", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/find-foo.js": [ + "4b22b857070d1aa7615e889d2602196ca9431049", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-1.js": [ + "722fea5d23733d822faf5717f66f2ff2cccb62a4", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-10.js": [ + "8b70b5a43ab3f1efd9755bf95f9a2713bbe588ce", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-11.js": [ + "f26e65bc15505040371e3026cd09c8eb0df0a1c4", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-2.js": [ + "3a3c18956bb0ccf8c13b301cd3c6f0a6e474ce75", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-3.js": [ + "80d22183699d06a1b7da5136a118404a7e05778e", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-4.js": [ + "80c723fe3486f7cb90b7b9fd25ea836125e562d1", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-5.js": [ + "45ce718f612e0adf967327716087f04325fcbee9", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-6.js": [ + "f7b945c3ed8e981a7f0ed1fc971c08fe05f971a5", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-7.js": [ + "39f911ed6844c0d38ccd91c3642e234c274a916c", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-8.js": [ + "fe0ad17a092c33cad29ffe0a00325ac573c0f464", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/scripts/include-9.js": [ + "2cd9bb85862c8c577e2dff564459516f4a4b2c07", + "support" + ], + "html/semantics/scripting-1/the-script-element/execution-timing/testlib/testlib.js": [ + "935990254a9fdd0549a03fd9346c85e027986461", + "support" + ], "html/semantics/scripting-1/the-script-element/external-script-utf8.js": [ "2d1c2cf696010feb64b17f00a072f3bbe6b1d713", "support" @@ -588617,8 +596386,16 @@ "5d5e954fd50f3d474e69875d11e03ade7c80d7cd", "testharness" ], - "html/semantics/scripting-1/the-script-element/load-event.html": [ - "e702aa5d09183d147850f61503d2e18f78a0a660", + "html/semantics/scripting-1/the-script-element/load-error-events-1.html": [ + "f97f03f6a6e73665eb2f5c4c61801f432f75a59d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/load-error-events-2.html": [ + "a20dbe60fad2827bc97fb647c3a29ec1c54cfd0c", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/load-error-events-3.html": [ + "a2dd0a60944fb8785493a50ad802f7793355a385", "testharness" ], "html/semantics/scripting-1/the-script-element/log.py": [ @@ -588629,6 +596406,18 @@ "4014bf8d2c024f3c9bc8d90595fa9af7786fed3e", "support" ], + "html/semantics/scripting-1/the-script-element/module/charset-01.html": [ + "212b17deecd882699ef7f26ffa397f4cd2a705c4", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/charset-02.html": [ + "84794e90fb4dbd4e11fbee3e4b390b8b3f01d54e", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/charset-03.html": [ + "364c6d3b48ef8143d62d6f6bb02aa5554b0bd367", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/compilation-error-1.html": [ "e36eda2e9941e0cfefbfd867d36da6de4dfe7b2e", "testharness" @@ -588637,6 +596426,10 @@ "fe3191547b7292f0c486febe0cef930a0a8fa590", "testharness" ], + "html/semantics/scripting-1/the-script-element/module/credentials.sub.html": [ + "52879d70166ca501a81688766ef9b928660796ab", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/crossorigin-common.js": [ "a58804b6e2495f99ec3f8b7894ff52186a49a427", "support" @@ -588689,6 +596482,10 @@ "6bd1fff05e91002539688b03eff9d7313e0de9dc", "support" ], + "html/semantics/scripting-1/the-script-element/module/custom-element-exception.html": [ + "df1ab90d1a7aa3b74f1097283f8f9c116f42f9ee", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/cycle-tdz-access-a.js": [ "00e8e5ec0b5bd3b3e8735bb38ceb5749a5090efa", "support" @@ -588705,8 +596502,56 @@ "32b68baebfa9d82753f186ff34789922b1467e81", "support" ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports-error.html": [ + "fd09ee8d075fc21786f6ed605acace65d94d1325", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/dynamic-imports.html": [ + "fab2384255a9cccad102dd1f7e3ccec2d9f5f34a", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/inline-event-handler.html": [ + "5d91ebe7470fc1ab17e075f98f6e72a879ad60e6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-classic.html": [ + "b69fecbbf7254070d2f7a651a6429f829b65e275", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external-module.html": [ + "e8fe7c798834fcd1c3f084a7344ed1f063c09831", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-external.js": [ + "3b18d95251c1f5470f1269cf42847c2ac257b16f", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-classic.html": [ + "41aa6634b6ab394eea6eaf9dc4fe621d2ee14b9d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/propagate-nonce-inline-module.html": [ + "997859fce8ed8854053d089a78ab999b3f88a072", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-classic.html": [ + "c5e3bf053403a49ee72c7464b1c1d0758f0fc8be", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-base-url-module.html": [ + "a33d3b405b1a826f51dadb18431c855b13aee612", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-classic.html": [ + "e22e6f200162000f043d114c89def6667097d13d", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-module.html": [ + "b332499d43e0768b5ddf1d5dbb5cd8ca702c3c64", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/error-and-slow-dependency.html": [ - "3c45e09c2192615bc44da576403a5ba065eb1ebf", + "32455a1418d94fa68368bae3b1c0291204f6b4e3", "testharness" ], "html/semantics/scripting-1/the-script-element/module/errorhandling-parseerror-common.js": [ @@ -588722,7 +596567,7 @@ "support" ], "html/semantics/scripting-1/the-script-element/module/errorhandling-parseerror-dependentmultiple.html": [ - "956e41c3916bdf33307cd8c6e76fd48079433807", + "06f50ed88c9b682cea7bc511adc92dff6cd7d1dc", "support" ], "html/semantics/scripting-1/the-script-element/module/errorhandling-parseerror-dependentmultiple.js": [ @@ -588742,7 +596587,7 @@ "support" ], "html/semantics/scripting-1/the-script-element/module/errorhandling.html": [ - "ffd411f153c55abf313fba5ab349b6a0cc50ba0f", + "10ccf68924459d54784ebc9cfdcdad21cb20811e", "testharness" ], "html/semantics/scripting-1/the-script-element/module/evaluation-error-1.html": [ @@ -588830,7 +596675,7 @@ "testharness" ], "html/semantics/scripting-1/the-script-element/module/imports-a.js": [ - "8188ade38a674e3ac9d4a404f318d499713d4801", + "fda06c1c54bf3202f7c5ca0fbc56167c81abd9e0", "support" ], "html/semantics/scripting-1/the-script-element/module/imports-b.js": [ @@ -588889,6 +596734,122 @@ "80fa90a214bb4839703c36f9db36e07f3a2ca7f2", "testharness" ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4.html": [ + "dbb8eb640576cd4f658e32dec441919e943f8d21", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4a.js": [ + "051586d3af5158af29ee8f46157964252a47ef65", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4b.js": [ + "ab58fcee083c1484097922a5e4f90927d798b13d", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4c.js": [ + "7ba0fbc265b5d816566bbee9dda4959270cd739c", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-4d.js": [ + "bcbde9b3648aaac72d8d2ae20846a53cef8abed3", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5.html": [ + "fcc8da57e88ee87592a02888c54bb6d66e5172f6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5a.js": [ + "b946a91f9241587336e2e173ad2e094c3c374e79", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5b.js": [ + "4ce41460910bd773fb1ba8432e20187991af5a9e", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5c.js": [ + "d19dda7708e1f524da0ae82f26d01897290d5c2e", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5d.js": [ + "ccc29417e76a978123dc6a0c85eeb4b61fd128e1", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-5e.js": [ + "49aebfc4b8248cd6039ef345ce89331bd18be4c8", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6.html": [ + "3551a3ff4bb431ac58f5756f44fd529008f57379", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6a.js": [ + "7e23dd514acd330e9156c45cd5821138d48fc427", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6b.js": [ + "babcf67942ddc996ec49bc2e7cf0db30378ae1fa", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6c.js": [ + "105bb52e0cb5bbbf47a959b2da23c14a9a8d3391", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-6d.js": [ + "52199bd9779c8ff3c606934f2db7801a8fb791dd", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7.html": [ + "0a0751baa86be9922f3676e459472cfdb4aa67e6", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7a.js": [ + "ae6edd647b25ebc5267dc54a85e41d09d0159252", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7b.js": [ + "73c79dc1dfd80094b8a983171ec380fd8f4d39c0", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7c.js": [ + "35739dc7feeeb2121f9559d6dd2f16a881c00cbd", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7d.js": [ + "a2ac1ce5cc9f227728edba988d4d0700394ed13f", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7e.js": [ + "a2b6fc5dc9bcee139c7f9148cd39536f43a295ff", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-7f.js": [ + "b8f46f5cfd3f85714684fe3f175723437d03b6a2", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/instantiation-error-8.html": [ + "62b71ff7d3d3a74337a3c782fe75fdbcd37b1b27", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/integrity-matches-inner.js": [ + "bf1734923e4507555842710515c20288532fd995", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/integrity-matches.js": [ + "1bad15e87002c14169a06bc65449093646cba6d0", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/integrity-mismatches-inner.js": [ + "e2f89748841c2026e03f09fa95f4e01f82f6c0a1", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/integrity-mismatches.js": [ + "22357a48e06898bddce26a9a74551c9fc2b2d3df", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/integrity.html": [ + "e74521926155dcee55da8575caf330b342345617", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/late-namespace-request.html": [ "a04ecfd484ada80c436c880c6fb39abba47eac1c", "testharness" @@ -588897,6 +596858,14 @@ "2fd8c4ee6fcc66a8ddc2100a0840ebcc324a7d58", "testharness" ], + "html/semantics/scripting-1/the-script-element/module/load-error-events-inline.html": [ + "9b35d8d7ba6bb4826274c9570056cc962660d715", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/module/load-error-events.html": [ + "304dc3a7e9cd48699742b0a1431adda1d0f253c0", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/missing-export-nested.js": [ "5c6c1dae178b88b42ce87964e372f7d7db99ba70", "support" @@ -588905,6 +596874,10 @@ "27cd038ca24450b1aeb9fe52cb9dea85998d108c", "support" ], + "html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml": [ + "32a4a4db2a5325b909078c73f76ab51085e66c5a", + "testharness" + ], "html/semantics/scripting-1/the-script-element/module/module-vs-script-1.html": [ "a7fd504c7bfeefb445de9f2a1212986f27e80465", "testharness" @@ -588921,10 +596894,34 @@ "4ce8bcce2537785c41f054175119e39169ed6110", "testharness" ], + "html/semantics/scripting-1/the-script-element/module/resources/check-cookie.py": [ + "49a8855de3a01f4fa8abfd5c9dbc3d0c1af2e182", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/resources/credentials-iframe.sub.html": [ + "78e5b389be7049324224b89562eaf39fb0e1a9e5", + "support" + ], "html/semantics/scripting-1/the-script-element/module/resources/delayed-modulescript.py": [ "f09db3d2acdf3aba3fc8c67b2f089a0ba506c799", "support" ], + "html/semantics/scripting-1/the-script-element/module/resources/import-non-utf8-with-charset-header.js": [ + "5ff227dc83335d8a3e8da0161993c1de239ee7f8", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-non-utf8.js": [ + "263589f24f862c862ac8f47ba2de71b77bd9e5bd", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-utf8-with-charset-header.js": [ + "23ca0a693a1d6ee4eca34bf27c55764e769437c6", + "support" + ], + "html/semantics/scripting-1/the-script-element/module/resources/import-utf8.js": [ + "c88ce333101627fd7674c1b4ede04fd1d0cf5bae", + "support" + ], "html/semantics/scripting-1/the-script-element/module/script-for-event.html": [ "c225684e0c7d09f9628aab589c8673b140994243", "testharness" @@ -588973,6 +596970,10 @@ "e6f03a1d03faf88a31cdc08eddab26b2d4c029f4", "support" ], + "html/semantics/scripting-1/the-script-element/module/throw-error.js": [ + "5ce16a70c6b65be0612f3a62ac8f4dcfd6becc6e", + "support" + ], "html/semantics/scripting-1/the-script-element/module/throw-nested.js": [ "c0672d30dc8a0109b5a1a3e38b9a1b481e36c94a", "support" @@ -589005,6 +597006,18 @@ "4ce8a4cf095d43c542aa8cbcdfd57c5cf381a97b", "testharness" ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-16be.js": [ + "c5524f60baeb48504b1a62e12611c34fcb60370f", + "support" + ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-16le.js": [ + "fe79fc884260e9be74c098719136f0eb1f2dac8a", + "support" + ], + "html/semantics/scripting-1/the-script-element/resources/bom-utf-8.js": [ + "5ebf2ec79435c375eeca84b12167801f0b6c576a", + "support" + ], "html/semantics/scripting-1/the-script-element/resources/cocoa-module.js": [ "43291b3e6eff8267c88100990aae5d4b2a09f3bd", "support" @@ -589017,10 +597030,22 @@ "5797045ac8591d2662a6714367ae5fb257881793", "support" ], + "html/semantics/scripting-1/the-script-element/resources/load-error-events-helpers.js": [ + "57a043fff23635ce04b62672429b6abb088cdb9b", + "support" + ], + "html/semantics/scripting-1/the-script-element/resources/load-error-events.py": [ + "0a9007a17bed4635d7f384d3a32a6d2dff11738c", + "support" + ], "html/semantics/scripting-1/the-script-element/resources/set-script-executed.js": [ "87f80eee703965c88f2bf7015bfa76233d459d06", "support" ], + "html/semantics/scripting-1/the-script-element/resources/slow.py": [ + "200bd721dadd0eb50d0b7734b17a081505697cc9", + "support" + ], "html/semantics/scripting-1/the-script-element/script-charset-01.html": [ "4d8f27447b5c76174a2e353f160066fbe156a005", "testharness" @@ -589049,18 +597074,6 @@ "458423e7b86ccaa89ffc0dc9f2c6b5b5bcea02cb", "testharness" ], - "html/semantics/scripting-1/the-script-element/script-language-type.html": [ - "6f8f694290991475df6df99996e8f39b610b58c5", - "testharness" - ], - "html/semantics/scripting-1/the-script-element/script-languages-01.html": [ - "586f48daa539249c83dc93688dc7920e94326825", - "testharness" - ], - "html/semantics/scripting-1/the-script-element/script-languages-02.html": [ - "9d287c52a5b9b3a392ba78c285a41861a2cfff24", - "testharness" - ], "html/semantics/scripting-1/the-script-element/script-noembed-noframes-iframe.xhtml": [ "9023542ad8ef8efb989675d9afa189289aa77f85", "testharness" @@ -589113,6 +597126,18 @@ "773d82ec904b3bc9565fb94813af228e7833cf87", "testharness" ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-empty.html": [ + "c26ddd7838ccbb36cc2216ba8236ea6ebf67e2c5", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-js.html": [ + "2ff44c86f93aef83c837fb9cb4fc2116bbf60e12", + "testharness" + ], + "html/semantics/scripting-1/the-script-element/script-type-and-language-with-params.html": [ + "7520d0e13774dc4243e902f0aceae943893c52cd", + "testharness" + ], "html/semantics/scripting-1/the-script-element/scripting-enabled.html": [ "4a1324770dec284d6a8432a1ae94ff27f4fe5322", "testharness" @@ -589301,12 +597326,16 @@ "661adb3f098161bf4535d9184e175612cfcab886", "testharness" ], + "html/semantics/scripting-1/the-template-element/template-element/template-content-hierarcy.html": [ + "20d5847c7978323f71a46625e9e1fd2eb899063c", + "testharness" + ], "html/semantics/scripting-1/the-template-element/template-element/template-content-node-document.html": [ "1943b45780474af52c24d8c734072aba2fe6a442", "testharness" ], "html/semantics/scripting-1/the-template-element/template-element/template-content.html": [ - "61432b241e8d7e2cd8d4c70f10260fd2f13371eb", + "a4d34cf0ed7b52cc9c30ad1d6b6aa322b5cfd2b4", "testharness" ], "html/semantics/scripting-1/the-template-element/template-element/template-descendant-body.html": [ @@ -589393,6 +597422,10 @@ "6be1e4a40962036b4fc0a300e8b13a082b391713", "manual" ], + "html/semantics/selectors/pseudo-classes/checked-type-change.html": [ + "3ac87c477fd16cfc944b19c7e843fe0a61c84c20", + "testharness" + ], "html/semantics/selectors/pseudo-classes/checked.html": [ "b5790716eff3f91ac04f78e669bfacac4ede5642", "testharness" @@ -589433,10 +597466,18 @@ "e20ded9d68245b887923a0cc14f6d46bc34fd809", "testharness" ], + "html/semantics/selectors/pseudo-classes/indeterminate-type-change.html": [ + "490ebd95eca88e917baf5550015af18ab8de5c34", + "testharness" + ], "html/semantics/selectors/pseudo-classes/indeterminate.html": [ "d4a60c5c7e3a3fbf16e87d347856b27a731a8820", "testharness" ], + "html/semantics/selectors/pseudo-classes/inrange-outofrange-type-change.html": [ + "ef8776ed618df10937a704b154a1adfea351ac76", + "testharness" + ], "html/semantics/selectors/pseudo-classes/inrange-outofrange.html": [ "8bcc8d0d7997c2bd55d66e816741ec4a9651dec7", "testharness" @@ -589445,10 +597486,22 @@ "c35cbd27d802f058e34ef687e41e3bb0f5a1ec3b", "testharness" ], + "html/semantics/selectors/pseudo-classes/placeholder-shown-type-change.html": [ + "d3d596673f9a9310d433f3500109ec03e1b7e588", + "testharness" + ], + "html/semantics/selectors/pseudo-classes/readwrite-readonly-type-change.html": [ + "68bfceb6c65638a0deeba8630c2e6e09f5dc344c", + "testharness" + ], "html/semantics/selectors/pseudo-classes/readwrite-readonly.html": [ "835c87fe2a1952890b1adc3f39981a0c1360b5be", "testharness" ], + "html/semantics/selectors/pseudo-classes/required-optional-hidden.html": [ + "0d132ded36e5eaad8c5a4018bc6f966c739f70ca", + "testharness" + ], "html/semantics/selectors/pseudo-classes/required-optional.html": [ "503189428dbc44ad4cd5d9c93b22d2ea9307d89e", "testharness" @@ -589498,7 +597551,7 @@ "support" ], "html/semantics/tabular-data/processing-model-1/span-limits.html": [ - "221803eac571dfc67c97122467743be20b1d17c0", + "8e22913e1a3cae5de1413765e5e8de559d5178f2", "testharness" ], "html/semantics/tabular-data/the-caption-element/.gitkeep": [ @@ -589649,6 +597702,14 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "html/semantics/text-level-semantics/the-a-element/a-download-404.py": [ + "c28a2e25288ef685cbcba11493a5eab7d5ede9a5", + "support" + ], + "html/semantics/text-level-semantics/the-a-element/a-download-click-404.html": [ + "9c9b5c7f78d9c06707d4aaca8256f1fb3da9f06f", + "testharness" + ], "html/semantics/text-level-semantics/the-a-element/a-download-click.html": [ "64cd3f544c42f21c33456e000788aeaab2fed3eb", "testharness" @@ -589673,6 +597734,10 @@ "d6cf92ac34d83cdd6357d516daeb87108933f8ed", "testharness" ], + "html/semantics/text-level-semantics/the-a-element/resources/a-download-404.html": [ + "f703d9a7ce1e09e0c9ef9ea2bd2cd2b318613f6d", + "support" + ], "html/semantics/text-level-semantics/the-abbr-element/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -590006,11 +598071,11 @@ "support" ], "html/syntax/parsing-html-fragments/the-input-byte-stream-003.html": [ - "9a6797fc94ed04cdbe5585502ac8f9671d93a36b", + "50a189451bcbec4009b8f7068aa59ea038c27248", "testharness" ], "html/syntax/parsing-html-fragments/the-input-byte-stream-004.html": [ - "f659c89c624ea7e0d10113dabd082c117d1e2fd9", + "3e0dd140e28c9cb66a532e4c9c8e7e4b1b5121e3", "testharness" ], "html/syntax/parsing-html-fragments/the-input-byte-stream-007.html": [ @@ -590681,58 +598746,6 @@ "f777c3f2ce746d415814083dc932f4a25a82c34f", "support" ], - "html/webappapis/idle-callbacks/basic.html": [ - "1349f9f3bc645fc999dcd2da6e53aa46779053c6", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-exception.html": [ - "84270b568b8f4d67d04da5df99cd2e0eb8e51977", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-idle-periods.html": [ - "65056dde042c8c0a25d3f9c375f0925aabab955f", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-iframe.html": [ - "ace7008a593a32ca016685aaa85bda9b4c4bd8c8", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-invoked.html": [ - "e7cf5a399d92f1fcb98f6ebb1ed3283d60d2bfe2", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-multiple-calls.html": [ - "af6e6a65fda2486ac8669340988b1d57a178e77a", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-removed-frame.html": [ - "ff034276659407d2dea91d2b0ed0e5919b875904", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-suspended.html": [ - "f3f9eeda9e2d47825c77eaf278be6e976a8e1715", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-timeout-with-raf.html": [ - "febb81c38f530c81d9e9837df2c6d603225ecfd1", - "testharness" - ], - "html/webappapis/idle-callbacks/callback-timeout.html": [ - "ba76964575cdf9b433f26c8a5d7a8183ab5c16e9", - "testharness" - ], - "html/webappapis/idle-callbacks/cancel-invoked.html": [ - "30787d765fa435c1392bd852559042bf3c2e2553", - "testharness" - ], - "html/webappapis/idle-callbacks/idlharness.html": [ - "520ee58982b43875f3caa08d7f46b9c6311be0b6", - "testharness" - ], - "html/webappapis/idle-callbacks/resources/post_name_on_load.html": [ - "4c2db9979bcf68c61e62a805d59d95b7d164d9af", - "support" - ], "html/webappapis/scripting/.gitkeep": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" @@ -590894,7 +598907,7 @@ "testharness" ], "html/webappapis/scripting/events/messageevent-constructor.https.html": [ - "78d9fe8ca88a24621890aee14d33694aa76c6a27", + "41b986c878176f99ef150c12ef6b74d00ef1f7cb", "testharness" ], "html/webappapis/scripting/events/onerroreventhandler-frame.html": [ @@ -591177,44 +599190,20 @@ "2c41fa08c5296f814d286d8b459424c5c488e3e1", "support" ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content.html": [ - "5a9a9f9452e113cc458fda86528a0240d33bd092", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/001.xhtml": [ - "421d04eab9a840fbe22b090996e8d145a055449d", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/002.xhtml": [ - "b3cb232ea7347baada581c3221dfcc0a5fb20aed", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/003.xhtml": [ - "62feedab0f34fddae585c18ba25dbb1a113a49ec", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/004.xhtml": [ - "7a32f6ff9f251674430f2133fdf35610b879733d", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/005.xhtml": [ - "40c238fbc46063b619b079de9c042c5b2f55a3b7", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/content/006.xhtml": [ - "a160f3bdac64c538b1f801f5a6f4a067338eb1ad", - "testharness" - ], "html/webappapis/system-state-and-capabilities/the-navigator-object/get-navigatorlanguage-manual.html": [ "d487c6dac121b518886c5f9c3389e54a6238a81f", "manual" ], + "html/webappapis/system-state-and-capabilities/the-navigator-object/historical.window.js": [ + "2a13612466333815c1ee890ff8ef68163ad5fbca", + "testharness" + ], "html/webappapis/system-state-and-capabilities/the-navigator-object/navigator-indexed.html": [ "3a478a2d6f508242244308641a2d57d4eb00798b", "testharness" ], "html/webappapis/system-state-and-capabilities/the-navigator-object/navigator-pluginarray.html": [ - "f1907fd820e2f6a195400a9bca96f3dae45fc308", + "dc5ba1cb0f402f0fb0243bb2fa1b9da0c610341d", "testharness" ], "html/webappapis/system-state-and-capabilities/the-navigator-object/navigator.any.js": [ @@ -591229,30 +599218,6 @@ "9ab91396894612ad2a71643cd5253fcc8572983a", "testharness" ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/001.xhtml": [ - "d7418838994fc0f6916e89a1b79d2a9c8536d7c7", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/002.xhtml": [ - "3bdec81bc84240cba8f5dbd24b8c6f5ae035f9c0", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/003.xhtml": [ - "02eeb4a40996b0c0fc44da1b14e0ecf3c58b3cd0", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/004.xhtml": [ - "29522f446c7df762eac96c7b7d05d96a49a2558e", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/005.xhtml": [ - "d99c6f077b63017d4a5782b751a6d288b55fd92d", - "testharness" - ], - "html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/006.xhtml": [ - "8efe37cac0d5dd0004bf0743c702eba27690058f", - "testharness" - ], "html/webappapis/the-windoworworkerglobalscope-mixin/Worker_Self_Origin.html": [ "9b895ac9dba41e20e341114eac7ab383cd8b08fb", "testharness" @@ -591305,6 +599270,10 @@ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "http/OWNERS": [ + "0bf8031d11c018af20c2a7387685b7b370ce643a", + "support" + ], "http/basic-auth-cache-test-ref.html": [ "42fbbd76956a8d2a84221500f70bd5c42cf5c75a", "support" @@ -591321,22 +599290,34 @@ "c86f164a128d02814744e0456e4588062eb016c8", "support" ], + "http/refresh/README.md": [ + "f503dfb32f6762191ad3fda507256b697ffd1602", + "support" + ], + "http/refresh/navigate.window.js": [ + "d49d82110916c7bb675bb1c332c0d5499c180028", + "testharness" + ], + "http/refresh/resources/multiple.asis": [ + "b0986e96d4eea0e280aec1a82bec472e39abcb22", + "support" + ], + "http/refresh/resources/refresh.py": [ + "a64a162dee650125a4ba6244caa9a8a1de397371", + "support" + ], + "http/refresh/resources/refreshed.txt": [ + "eb5608b416f1f461e2acd0dbc848cd93807250d9", + "support" + ], + "http/refresh/subresource.any.js": [ + "dd861a7c3fd42255edb603f50c7466dd9132917c", + "testharness" + ], "http/resources/securedimage.py": [ "bc4c7a8b5eef0e082a5fa7c8c763957d92730747", "support" ], - "image-decodes/image-decode-iframe.html": [ - "2632f69b005ea382ed91bfb71a7e0e2ee931a0c8", - "testharness" - ], - "image-decodes/image-decode-path-changes.html": [ - "64dde3f7b1f9ed02e4433858f075123f18c092a4", - "testharness" - ], - "image-decodes/image-decode.html": [ - "02d38d593fb42587c3ef261c349f7c42db345005", - "testharness" - ], "imagebitmap-renderingcontext/bitmaprenderer-as-imagesource.html": [ "f80d1496329c64643d2b40e478779929de20c499", "testharness" @@ -591501,6 +599482,10 @@ "44481e3f374d75b735ac01ae83dc8ed9330238fc", "support" ], + "images/smiley.png.headers": [ + "4f956a2d550f09444239d1c0bc640200a3c60102", + "support" + ], "images/threecolors.png": [ "3c394b0d754a7b02514b46d5483a0014d5dcdca6", "support" @@ -591521,7 +599506,67 @@ "4e33f8928d27bd64a96d72c32de08ebd483ab888", "support" ], - "infrastructure/failing-test.html": [ + "infrastructure/README.md": [ + "2f3b62e45352d2226918e0959616c04a82547d9f", + "support" + ], + "infrastructure/assumptions/OWNERS": [ + "946f23f945163bf9f9da080291b21473f6e1cbd0", + "support" + ], + "infrastructure/assumptions/ahem-ref.html": [ + "65ecf705ea9804f42a2503941afe96a0c06dd3b7", + "support" + ], + "infrastructure/assumptions/ahem.html": [ + "770fd700c20d041fcfc2d01b53b3f0671c95ec15", + "reftest" + ], + "infrastructure/assumptions/canvas-background-ref.html": [ + "0868a5443b1aacb8fd95327bc7c71d071158b0f1", + "support" + ], + "infrastructure/assumptions/canvas-background.html": [ + "2f1a763d3e15a27a9220b1f084847f33092003d0", + "reftest" + ], + "infrastructure/assumptions/html-elements.html": [ + "dacd5dc7e1d723046d5e9eea0a0eb8046d501fca", + "testharness" + ], + "infrastructure/assumptions/initial-color-ref.html": [ + "23bd9bc50c23f6bdbe2c63bbd652a28e1a222586", + "support" + ], + "infrastructure/assumptions/initial-color.html": [ + "14b5a61881546831e2b2733ae9592b2f932f86c4", + "reftest" + ], + "infrastructure/assumptions/medium-font-size-ref.html": [ + "49f1b97b20c6ef7b0452e078fcfc56d8f3c14f77", + "support" + ], + "infrastructure/assumptions/medium-font-size.html": [ + "011f54dc11a955ac173621651c67b2282d046dd9", + "reftest" + ], + "infrastructure/assumptions/min-font-size-ref.html": [ + "5a0be668075cd811b2dc28267210c4cfdd692397", + "support" + ], + "infrastructure/assumptions/min-font-size.html": [ + "df47a9a9342da260175776c3406856be096d0012", + "reftest" + ], + "infrastructure/assumptions/tools/ahem-generate-table.py": [ + "7057b804e191b4c1a53df3b631042f9726eb8309", + "support" + ], + "infrastructure/assumptions/tools/build.sh": [ + "e7549e915a809b48cac816dacdd7a9bbf476b596", + "support" + ], + "infrastructure/expected-fail/failing-test.html": [ "c832afb4826fd43d2fcc4f5e3fd6a773a6ee35f0", "testharness" ], @@ -591534,7 +599579,7 @@ "reftest" ], "innerText/getter-tests.js": [ - "08171e0a781c05d91841e483d7e18c670c82c827", + "e5ec1c1fd4777a1a1c25720047a955ec04c0d014", "support" ], "innerText/getter.html": [ @@ -591557,20 +599602,48 @@ "cd25518dd402033694667ccd1982fd3b85faa412", "testharness" ], - "input-events/input-events-typing-data-manual.html": [ - "f94325d74e69fbd62bfdff3c0f4676a3d2c50d09", + "input-events/input-events-cut-paste-manual.html": [ + "442b82811d9fabc1cd4b398ac28cac58d4f2f78b", + "manual" + ], + "input-events/input-events-exec-command.html": [ + "233270068ad21c786fed0603a522d286c2419d56", + "testharness" + ], + "input-events/input-events-get-target-ranges-manual.html": [ + "1c8c1e8d43593ac85807f22fc221d72de0d792a2", + "manual" + ], + "input-events/input-events-typing-manual.html": [ + "f585014db144083ee2f70f6fd65f78bf2e289093", "manual" ], "interfaces/OWNERS": [ "f9c94ab08fa997459cba17e61d8cd00ee8b07b46", "support" ], + "interfaces/clipboard.idl": [ + "5af2846c7f9ff93f2f4f13780d0356cdac6a0d4f", + "support" + ], + "interfaces/console.idl": [ + "14a90aae85ba0822b3dc7113a42cded55395765b", + "support" + ], + "interfaces/cssom-view.idl": [ + "1bcfadd098734fc82c0cf791d4c0d35d69423ce2", + "support" + ], "interfaces/cssom.idl": [ - "bb17bbe93776dbeb33f061a7a90889e922e3138e", + "fbd624297dbfaa5e0fc2144b701c38eda41537ac", + "support" + ], + "interfaces/dedicated-workers.idl": [ + "16b2bc5c05aab5838458dfee6203b83d36b13dfd", "support" ], "interfaces/dom.idl": [ - "86f2e15d4b32af7b5127283eb3cfab5a78b46c0a", + "915affb8d20dcc9055d3f453efbb893d14fc529b", "support" ], "interfaces/fullscreen.idl": [ @@ -591578,19 +599651,27 @@ "support" ], "interfaces/geometry.idl": [ - "b4c2837ade7a509306755eb7b682f6648c3684e3", + "dea55d151bd19d342f9b28bb2f11e5108ab970ff", "support" ], "interfaces/html.idl": [ - "137e061bbab6b23150d6ae9128df56a96cd1d68f", + "5e6afa54c3b4c41f31e24e6fbb55f0e77259c09f", "support" ], "interfaces/mediacapture-main.idl": [ "3d59aebd6219a0312ade8c543bb389030d670d82", "support" ], + "interfaces/payment-handler.idl": [ + "d1d50028218427ecb20ddd67061c9726fddcce3a", + "support" + ], + "interfaces/payment-request.idl": [ + "3a5f9a4e768409532916c751e7169c35ec0e23a8", + "support" + ], "interfaces/remoteplayback.idl": [ - "f7c100f4275f2e32fbca3bb8d9c4900df879ffe4", + "fc724b70bc1e1d30e538ee5154a99d4871414302", "support" ], "interfaces/touchevents.idl": [ @@ -591598,13 +599679,141 @@ "support" ], "interfaces/uievents.idl": [ - "3fabcfa40caf9c66bc74bcd83663eddb0f385051", + "de07cb2600834f13c49e00d6d77df5108244b3ce", + "support" + ], + "interfaces/web-share.idl": [ + "d3ab33fa078f1b3bd4b29e174369073aab3963d5", + "support" + ], + "interfaces/webidl.idl": [ + "19271414e0e602d5bb4ec8343a9a5e10a9b65d3c", "support" ], "interfaces/webrtc-pc.idl": [ - "4f94c4236168ed722f71d81bd957e0da72b29c71", + "2e9e783362e8ea80cbad3c9c688d63b9c8256163", "support" ], + "interfaces/webusb.idl": [ + "7b5749e1fece69552e0a8bfac7af401fac15394d", + "support" + ], + "intersection-observer/bounding-box.html": [ + "a3ac1b70ba26234b7c968055171e652f3a8a14d8", + "testharness" + ], + "intersection-observer/client-rect.html": [ + "acec9a4f59ebee1840950cf766a45676490eef84", + "testharness" + ], + "intersection-observer/containing-block.html": [ + "8bdf6fa6a3ee09130981bf83728aa9f61a6ebc54", + "testharness" + ], + "intersection-observer/cross-origin-iframe.html": [ + "98ac8bd3447bc16e86c4b15708dcd86aa4b5ed92", + "testharness" + ], + "intersection-observer/disconnect.html": [ + "d8206b91756a367394ea9d444deefc0f37589427", + "testharness" + ], + "intersection-observer/display-none.html": [ + "3dc956e76b23ae44f2694f4b24579f896a1086b5", + "testharness" + ], + "intersection-observer/edge-inclusive-intersection.html": [ + "97921caeabdafb402de1a6f64fc28176eda3e6db", + "testharness" + ], + "intersection-observer/iframe-no-root.html": [ + "6cbea44f209e59ea0b901b0fe1cec7ac1aee0b64", + "testharness" + ], + "intersection-observer/multiple-targets.html": [ + "83173248b825b97063c61dd31c64d8fe7ba10aac", + "testharness" + ], + "intersection-observer/multiple-thresholds.html": [ + "dcfa7d005d1f94186b173b20d4f9c367abc5a77b", + "testharness" + ], + "intersection-observer/observer-attributes.html": [ + "69c802af77a38c450ce81c4c010588b0e4f240db", + "testharness" + ], + "intersection-observer/observer-exceptions.html": [ + "28ccc6905713894b43033e30949170439215bf2e", + "testharness" + ], + "intersection-observer/observer-in-iframe.html": [ + "3e6dcbc7aac43899186395f50649195b2ecc4c74", + "support" + ], + "intersection-observer/observer-without-js-reference.html": [ + "4211529e1fdd3bfb9b3b64c29b7d000b3c706408", + "testharness" + ], + "intersection-observer/remove-element.html": [ + "f2b3688fd8e069a41e16086baad74bda0fe2f180", + "testharness" + ], + "intersection-observer/resources/cross-origin-subframe.html": [ + "91073aed8b250177d69ee36e9be95c30c9cf1c95", + "support" + ], + "intersection-observer/resources/iframe-no-root-subframe.html": [ + "a9ea444d6bb15cda784871e2d495dc204b0e3d50", + "support" + ], + "intersection-observer/resources/intersection-observer-test-utils.js": [ + "889d403e334e3c0fc4ae7a6af06ef9504145fa2b", + "support" + ], + "intersection-observer/resources/observer-in-iframe-subframe.html": [ + "5f390b2e969132bce9ab486cbf2292765d5c62f2", + "support" + ], + "intersection-observer/resources/timestamp-subframe.html": [ + "7b590da7cf426cc7d2e3f25fac30f4533e36153c", + "support" + ], + "intersection-observer/root-margin.html": [ + "be98d804610d2c08ee516a4aecbe59ffc58c22bd", + "testharness" + ], + "intersection-observer/same-document-no-root.html": [ + "0f29996e4542db243c3fcd9c108463ba7260cb8e", + "testharness" + ], + "intersection-observer/same-document-root.html": [ + "71876c5290184f77223843c7d3c0bed670e2ee3f", + "testharness" + ], + "intersection-observer/same-document-zero-size-target.html": [ + "c1d1054447e116becb50aaf96aad00a25f0a6752", + "testharness" + ], + "intersection-observer/shadow-content.html": [ + "11681640d5c8b2c62229ed5a717172f917d75ba4", + "testharness" + ], + "intersection-observer/timestamp.html": [ + "0d57a6abc3c3056f921401f629ab231c458cf4cb", + "testharness" + ], + "intersection-observer/unclipped-root.html": [ + "67dab96304c745f1b5462bb1074753b09d77fbd1", + "testharness" + ], + "intersection-observer/zero-area-element-hidden.html": [ + "59d854e89ca0d7b035a87376566775ca2f3420e5", + "testharness" + ], + "intersection-observer/zero-area-element-visible.html": [ + "f3e1fbeb1a912be412724cec47a6aa981664ff7d", + "testharness" + ], "js/behaviours/SetPrototypeOf-window.html": [ "92efe1a4f3910a32097fb3cbeef0019d82a0e78a", "testharness" @@ -591693,56 +599902,60 @@ "6f8091035f4aa18131c548a81cbe80ba328169c9", "testharness" ], + "longtask-timing/OWNERS": [ + "30a9c29ba53bac131c0cca801c01dddb4779824e", + "support" + ], "longtask-timing/longtask-attributes.html": [ - "a88bd658adcb9ef3dcbfa803397910e531bc864b", + "247359327818f59871be00d22942f6ecde5281a7", "testharness" ], "longtask-timing/longtask-in-childiframe-crossorigin.html": [ - "646324580798ab727e31db4c47b919bb9df6e6a9", + "1a461ce9d7283157047127312135a218044ec5c0", "testharness" ], "longtask-timing/longtask-in-childiframe.html": [ - "74f235096580d329eb0cc2d2c682857c2b6f2c6d", + "b2d61c298ef78fe19e1dc18e01db2bbf58cd1815", "testharness" ], "longtask-timing/longtask-in-externalscript.html": [ - "74329829a0248b8e81443f78b998bf97ac60e965", + "5d6f7a11f873c8e6477b105a8e7ae2547c5243ed", "testharness" ], "longtask-timing/longtask-in-parentiframe.html": [ - "4732540c350dcfed013f07af0590c5de04aacc2a", + "7b1a7373902b68ebcf8f5119cfe7904dd32acd03", "testharness" ], "longtask-timing/longtask-in-raf.html": [ - "e5a058a841e039e1d8f7b5f8b24d48937aad038b", + "d014ed0e7317871b8a14c9f2249a58d1df5589cb", "testharness" ], "longtask-timing/longtask-in-sibling-iframe-crossorigin.html": [ - "64085903b907b37077013d42747e3aaa8cf2b86e", + "6f9971d082ffa24a31e57697ea6bf929b237c62b", "testharness" ], "longtask-timing/longtask-in-sibling-iframe.html": [ - "d08d6f2ddf39615cc3dad7c65a01a29c9411a2a9", + "24fd1e4ce58d824d29a65edc913075ca98fe71d6", "testharness" ], "longtask-timing/resources/makelongtask.js": [ - "42c70ac5f3c87499e43eb6200e8c8007d7d1ad9c", + "64401c9b936a3a1bb43744d821258d43628819ca", "support" ], "longtask-timing/resources/raflongtask.js": [ - "9fc7b7f0c5dd55de7e5de9258fa6e70c759aed06", + "fd669203f66e5878150acf603610f2efdca51f33", "support" ], "longtask-timing/resources/subframe-observing-longtask.html": [ - "6a335da14401450f2da44c4d994c7c7b4102f57e", + "f2f852a5ec5aeb478b578948a301210f9ad12878", "support" ], "longtask-timing/resources/subframe-with-longtask.html": [ - "4acb6764c2fb60ad55733c420dfd7c1946542f17", + "07726af74120e3f066e8fd8f4988616984793428", "support" ], "magnetometer/Magnetometer.https.html": [ - "4e7d890f37469aecbce415187bb0bcf239dac37b", + "3fbdbbd6c3db9b1a44d7490101bea34045f1945e", "testharness" ], "magnetometer/Magnetometer_insecure_context.html": [ @@ -591754,15 +599967,15 @@ "manual" ], "magnetometer/OWNERS": [ - "36770a71443523aa2f91f9958ba24066f0b4dcec", + "b119dbb984792f33c6e7463f3105d37c3c3b7ad8", "support" ], "magnetometer/idlharness.https.html": [ - "b21217da9dc986e605d172d72a5f4f3e7b2aa216", + "a72e1c3443feae9bf9d19385c0ba96e66b97f20c", "testharness" ], - "magnetometer/support-iframe.html": [ - "4afaea574bcbd68422278c5e093cf6d37ab4f9f1", + "mathml/OWNERS": [ + "fc243e5e1a8898367d02bba2636a7b4f2541722c", "support" ], "mathml/README.md": [ @@ -592070,7 +600283,7 @@ "support" ], "mathml/relations/html5-tree/href-click-1.html": [ - "6f54e8ae0d27ed2e1df922d85da8bf8f939cd88e", + "f5986ded6bc98b1866fa2258e10da888ff56ec1f", "reftest" ], "mathml/relations/html5-tree/href-click-2-ref.html": [ @@ -592078,7 +600291,7 @@ "support" ], "mathml/relations/html5-tree/href-click-2.html": [ - "0737ec66e9d5421675cfaf3a010eb9acc328b1d4", + "12a08c6127f8aedcf886a58b7fb238da437d3122", "reftest" ], "mathml/relations/html5-tree/href-manual.html": [ @@ -592266,7 +600479,7 @@ "support" ], "media-source/interfaces.html": [ - "6cb50e9726f1ba107b4d4d8e24ca4bfd8599c38f", + "fa1b832ea50c89a6fc1880befecc5fa059ceb60a", "testharness" ], "media-source/manifest.txt": [ @@ -592286,7 +600499,7 @@ "testharness" ], "media-source/mediasource-append-buffer.html": [ - "56f0d90f006e300a412ec7ceb3c15a252ff303a5", + "fed1254d64c59b625af9745bbffcf5788ac5906e", "testharness" ], "media-source/mediasource-appendbuffer-quota-exceeded.html": [ @@ -592446,7 +600659,7 @@ "testharness" ], "media-source/mediasource-seekable.html": [ - "5f75983eeb4eed4095a625ec997c01eaba021166", + "6e92616bfb23e0d00e387688ff6754e68b1da35f", "testharness" ], "media-source/mediasource-sequencemode-append-buffer.html": [ @@ -592717,6 +600930,18 @@ "167093849b93b142723513ac72a725c97da635a8", "support" ], + "media/test-a-128k-44100Hz-1ch.webm": [ + "eeaba4c92c956b9b97c0241b10a54c32557b9e37", + "support" + ], + "media/test-av-384k-44100Hz-1ch-320x240-30fps-10kfr.webm": [ + "e7c89345ef8085498f642f2eac75ac9b867d5814", + "support" + ], + "media/test-v-128k-320x240-24fps-8kfr.webm": [ + "30080b0409424f065a1b286709c87c04c29fbb22", + "support" + ], "media/white.mp4": [ "577f031289beb30fa38824950ea297818bab8e81", "support" @@ -592725,6 +600950,18 @@ "c3f2ab0ca87e837a5ffc6dfc1e757e1357c49d1f", "support" ], + "mediacapture-fromelement/capture.html": [ + "d5ccd840a00ed4a77dda172663cd39a035565873", + "testharness" + ], + "mediacapture-fromelement/creation.html": [ + "f21413b0d01844dd41776c9a3b417a665b497e20", + "testharness" + ], + "mediacapture-fromelement/ended.html": [ + "5d400556089e656fdf481a033cfadf0a2dc1f2e3", + "testharness" + ], "mediacapture-fromelement/idlharness.html": [ "ceeb48e7982eb88561f4c1630cb0fcf15d9cf73c", "testharness" @@ -592746,35 +600983,35 @@ "testharness" ], "mediacapture-streams/GUM-api.https.html": [ - "8df77e469f423b7c7e84ddc6924e01d63b1ffc20", + "ea80e175f08b16600df620d6a46a89dc571ea4f8", "testharness" ], "mediacapture-streams/GUM-deny.https.html": [ - "ff6cf94acac74d1a650d6c2515b762fa483b110f", + "58bc6b9e27d4c7036b188921598d9b5213f0b8db", "testharness" ], "mediacapture-streams/GUM-empty-option-param.https.html": [ - "64d32a60ba62577a02f7314db5c1e43d3b0d51a9", + "274f1a871405b0efc068c718dd22624ea0bbb5a2", "testharness" ], "mediacapture-streams/GUM-impossible-constraint.https.html": [ - "d0f93cff7289917b298a33691204509188bb633d", + "afa2a8a631915f851f3c238476a361aa16865af6", "testharness" ], "mediacapture-streams/GUM-optional-constraint.https.html": [ - "9697e652b353ffbb8f1ef31038b0826a7c866198", + "425f35ad458fe835cbaeb66acdde95452519bdd0", "testharness" ], "mediacapture-streams/GUM-trivial-constraint.https.html": [ - "46175d553affeaa8c801359261816430f8b1fdb8", + "89758369578246d620e41d53a75ae0b885d589a1", "testharness" ], "mediacapture-streams/GUM-unknownkey-option-param.https.html": [ - "bfd825c8fb46797d043d57d70689a766fa557bd3", + "cfa1c007fadcdef21b043185903bfb0696b7b44a", "testharness" ], "mediacapture-streams/MediaDevices-IDL-all.html": [ - "f1927866a05c7700dc2218e3a45eae1532a4171c", + "2d9b604f3039fd5bebbe0491f0bb31d5b0b47722", "testharness" ], "mediacapture-streams/MediaDevices-IDL-enumerateDevices.html": [ @@ -592790,63 +601027,71 @@ "testharness" ], "mediacapture-streams/MediaStream-MediaElement-preload-none.https.html": [ - "0f2bbd7581f2f51376b7fada199b4d436f411dba", + "374f9942ebd05d866340981469ceb28bddf83727", "testharness" ], "mediacapture-streams/MediaStream-MediaElement-srcObject.https.html": [ - "f90dade04a03631f9c56333f621fd6379eb48998", + "f2958c6965640ff9e9dc2c038a593bdd41c6759c", "testharness" ], "mediacapture-streams/MediaStream-add-audio-track.https.html": [ - "eecbedef2bbb1281fd07e12d06f53455a8f87c88", + "1bcb7de8f2c0f85fed091dfcbb102d40264f387f", "testharness" ], "mediacapture-streams/MediaStream-audio-only.https.html": [ - "6bf048248ed199eb84d9ee815dc64d19d173291a", + "bc5a7f4380a0527fdc44c41b765e07df028d0dba", + "testharness" + ], + "mediacapture-streams/MediaStream-default-feature-policy.https.sub.html": [ + "955b6cfddae2c8961abfba52ffe9192224500d0a", "testharness" ], "mediacapture-streams/MediaStream-finished-add.https.html": [ - "18cb89d609c81cd00870f58682b03c89fb74afbf", + "9cd9b2b53c1353b46bf7efc9e8d0e0c215107dee", "testharness" ], "mediacapture-streams/MediaStream-gettrackid.https.html": [ - "1d1d2a92be009863a17487d211523f4309ee8e4b", + "ecdf2ad3e658c08dabff3e0d5860e4d86f434f0d", "testharness" ], "mediacapture-streams/MediaStream-id-manual.https.html": [ - "c5ec056499818621f5948684da4715f5f14be124", + "464a4e5b40a4aabf1302e24d51222b0374ff4c8a", "manual" ], "mediacapture-streams/MediaStream-idl.https.html": [ - "ad6beb09e5036ca5d84e1add79f265d4899bc294", + "2cf280abdf5598a21000a26365f243fcc7ffdb6b", "testharness" ], "mediacapture-streams/MediaStream-removetrack.https.html": [ - "84eeb7a7b9499e44f40e8a650373fcb86e502abe", + "28bdf571b37412078199e127ecf3a9423770f0ce", "testharness" ], "mediacapture-streams/MediaStream-video-only.https.html": [ - "5f3e3390b52c567894cbcdf610489fc5b17ec94d", + "831fba0fe66ff11b5ca91784a0f91d863bd8a348", "testharness" ], "mediacapture-streams/MediaStreamTrack-MediaElement-disabled-audio-is-silence.https.html": [ - "48620661c2947245554e227d559d551a93787ae2", + "c70017e897191d1c3d77ee504f9ca2f73bb0aa48", "testharness" ], "mediacapture-streams/MediaStreamTrack-MediaElement-disabled-video-is-black.https.html": [ - "ff30dfac08aae859ad469c15fd7e5469b830d3a9", + "9f8b4811f67bd0c9ed67327e9589db68432e3117", "testharness" ], "mediacapture-streams/MediaStreamTrack-end-manual.https.html": [ - "e5550adb1a9ce03ba672271aa1cdcec7ffde27d6", + "6511203b417168722d1e05d90e58364ebce145ea", "manual" ], + "mediacapture-streams/MediaStreamTrack-getSettings.https.html": [ + "013d31ba196d5a6f1506ceb8eab088e629dfd59b", + "testharness" + ], "mediacapture-streams/MediaStreamTrack-id.https.html": [ - "ea67395aec0f0c619ba7b94eb4bd26b317a945d3", + "46327fba3cf783d6506634b837f8308417f954cd", "testharness" ], "mediacapture-streams/MediaStreamTrack-init.https.html": [ - "5dec952b5ea64b644a7fd90ef41d2da95388167b", + "3cb9f842f12185de5f1696a8d0cdc2fe102c246a", "testharness" ], "mediacapture-streams/MediaStreamTrackEvent-constructor.https.html": [ @@ -592857,6 +601102,10 @@ "2ef6c1440dc82da13537af344dfa6a2c84cc0808", "support" ], + "mediacapture-streams/historical.html": [ + "96a34ddfb393f19df98b2334a71e78b40e333e26", + "testharness" + ], "mediasession/README.md": [ "5ceecb2611837e6c52a303cec32d8cb9fabe93a6", "support" @@ -592877,90 +601126,6 @@ "70a1f9e81faa3dbbe320a71a008e4594a29878a8", "testharness" ], - "microdata/conformance-requirements/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/converting-html-to-other-formats/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/converting-html-to-other-formats/json/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/dependencies/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/associating-names-with-items/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/items/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/microdata-and-other-namespaces/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/names-the-itemprop-attribute/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/names-the-itemprop-attribute/original-id.json": [ - "cc9626d22d5e06bb2397b813eff5e125d0fe7034", - "support" - ], - "microdata/encoding-microdata/the-microdata-model/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/encoding-microdata/values/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/iana/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/global-identifiers-for-items/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/overview/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/selecting-names-when-defining-vocabularies/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/the-basic-syntax/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/typed-items/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/introduction/using-the-microdata-dom-api/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], - "microdata/terminology/.gitkeep": [ - "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "support" - ], "mixed-content/OWNERS": [ "167112f19752c9c180831820b6e348427606b63b", "support" @@ -594562,7 +602727,7 @@ "support" ], "navigation-timing/idlharness.html": [ - "12635e5ffcc457a3db40ec483ea724f60a2ef59f", + "d05e1d10939fa6509bd7299d03d32d59f69a03f6", "testharness" ], "navigation-timing/nav2_data_uri.html": [ @@ -594570,15 +602735,15 @@ "support" ], "navigation-timing/nav2_idlharness.html": [ - "6931ae3947e9f6553890c4c7895b774faad02102", + "ffc5d6f4a11a4bf2ad72404fc62d88be1c45a5f5", "testharness" ], "navigation-timing/nav2_test_attributes_exist.html": [ - "9cbe8d9f7bf8c959c810ebee65a245f2de6f2943", + "6ed5a8f92b282d956d7d946cf031296ed7bfef50", "testharness" ], "navigation-timing/nav2_test_attributes_values.html": [ - "f13d01f6c6cfa90b2bd92312b3c2e1c1b3aeed59", + "e5f14ce9a725cbb3a88a73b5f137625334f1e3de", "testharness" ], "navigation-timing/nav2_test_document_open.html": [ @@ -594678,7 +602843,7 @@ "support" ], "navigation-timing/resources/webperftestharness.js": [ - "670154a84de50de0c6b310edfeb23a1f3d0d72d1", + "c149cde434fc6e82e9e50936308ec0ad9b3c2997", "support" ], "navigation-timing/test_document_open.html": [ @@ -594758,7 +602923,7 @@ "testharness" ], "netinfo/netinfo-basics.html": [ - "c98cb1ac5580fbd9f378313c5be1eb785585ede3", + "f0fa5c7071c5cdcf3d1cc3e99de27c4c40c20e99", "testharness" ], "notifications/OWNERS": [ @@ -600342,7 +608507,7 @@ "testharness" ], "offscreen-canvas/the-offscreen-canvas/offscreencanvas.resize.html": [ - "edbee70d71796502f9facde0f0d0e13a7207b3ee", + "1963e2f24313314c99e39e29f6818d39c2385a0d", "testharness" ], "offscreen-canvas/the-offscreen-canvas/offscreencanvas.transfer.to.imagebitmap.html": [ @@ -600354,7 +608519,7 @@ "testharness" ], "offscreen-canvas/the-offscreen-canvas/offscreencanvas.transfercontrol.to.offscreen.html": [ - "4623c0cbee66a2aff9d569a0ea52a09d277096ee", + "d434158f4ad895a531ad04708c6b5c31272a9e05", "testharness" ], "offscreen-canvas/the-offscreen-canvas/offscreencanvas.transfercontrol.to.offscreen.w.html": [ @@ -600737,152 +608902,8 @@ "054fe1ca53999433cf4cddff7193d9f05d6c48dd", "testharness" ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_autocomplete-manual.html": [ - "982fae5b648a4ffec9dcf189b388cdea548d171a", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_list-manual.html": [ - "a45044c38b98f57b697e8b521edaabe26b897153", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasdate-manual.html": [ - "4ce3a7f6b5a1b3a99ff810a10cb805c3a8d74839", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/input_valueasnumber-manual.html": [ - "8aecbcc14e2295f860f94444ed155e41b2ba73b5", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_length-manual.html": [ - "7e57d2b51b52665b2449a1963594ce0e8ac7af5e", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/Not_Use/select_selectedindex-manual.html": [ - "a41a903089c804cbc5b3892af00d283f02d318f5", - "manual" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_checkvalidity.html": [ - "e6c56660e7c34d00e8d213dbc224d0ab1b855a59", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_labels.html": [ - "b101e88a54c0137bc3c91c576750a15e7ac26257", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_setcustomvalidity.html": [ - "0117c628e255c4605832d079b917674b9253b6b2", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_validationmessage.html": [ - "68cd80401bdc7fca7b030425b9c647ca4edb202a", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_validity.html": [ - "9f08314910a23e3b2d02fb2494735cdc997354a7", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/button_willvalidate.html": [ - "1e374d7c17ed9927771e0b3d133a78a5749d9cf7", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_checkvalidity.html": [ - "b962a1ffe8aece17c35fbd17cc860fa021c87abd", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_setcustomvalidity.html": [ - "47c535a2322a360140699c871601381b7b9ad4a2", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validationmessage.html": [ - "7baa8d557e2113037500c7fb3f2665d07bdaa605", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_validity.html": [ - "06fe951ea001f9467bb1b25f31e2a730af250360", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/fieldset_willvalidate.html": [ - "5cfea5e35e04ddc746a572672951aaed70751870", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_action.html": [ - "8b1b58933750ceb37accb96be8cd52dccdad8595", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_checkvalidity.html": [ - "0f4b2f45cdc4f92f6e7668ebaf0e194b23a985c3", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_length.html": [ - "c46ff6f668f275fa7c6437e4d9e4dbdbc5fe2146", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/form_submit.html": [ - "8b7b994e4f791dda19f6124005e179891131c493", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_checkvalidity.html": [ - "a17793a91995bdf8578ec993fb3e3858f2087dd6", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_height.html": [ - "124ae4829b7e6eae12cf7bc77340cef954b96510", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_labels.html": [ - "2253acf35e842371d97adc580b5bbdc17bda8345", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_setcustomvalidity.html": [ - "73d60e2eb4150112e6bb34381f79b877002c0611", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_stepdown.html": [ - "ec4115b1a35e0ff15f49031d54af4668114ea327", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_stepup.html": [ - "7b2e7039c308c8aca6c2dc5fec99b5f07108092b", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_validationmessage.html": [ - "08d730c42e4951cdd22581fcf46db3463a56855d", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_validity.html": [ - "d0ad05c573ef8dec7b87140b3cf5ca33af32c5d4", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_value_invalidstateerr.html": [ - "aec0217d87765d6a1f59a2766453b6899eb8612f", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_valueasdate_invalidstateerr.html": [ - "f239e0a1b5ca28586347df5d3f53a2c00d5db1e5", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_valueasnumber_invalidstateerr.html": [ - "c36fd44454ab7bb69a7ced66ee0b127bc98d1360", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_width.html": [ - "ea165b1cf1bbba9e6feacd3694182e4272d207aa", - "testharness" - ], - "old-tests/submission/Infraware/Forms/contents/Forms/input_willvalidate.html": [ - "57ab60fe29974212415aca5372752d8f576731f5", - "testharness" - ], - "old-tests/submission/Infraware/Session_History/contents/Session_History/css/result.css": [ - "33f5ab222c677190c2812f5dae2d9ae58441e4cb", - "support" - ], - "old-tests/submission/Infraware/Session_History/contents/Session_History/index.html": [ - "f92819ed994d67f2b1c7576f96dc0ca8214dc10e", - "support" - ], "old-tests/submission/Microsoft/dragdrop/dragdrop_000-manual.htm": [ - "3deafc85db69960f4dba903542f8175c3e102f12", + "3b19176b2b546f741b52ff2aa11633d2fc9f392d", "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_001-manual.htm": [ @@ -600890,7 +608911,7 @@ "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_002-manual.htm": [ - "4cf69ef89695860c26da2ae05be227ce98df0e3d", + "c26c5cf57753fcb32b15fc2761c8c4f9b4e5cbaf", "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_003-manual.htm": [ @@ -600934,7 +608955,7 @@ "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_013-manual.htm": [ - "f77e322c36c171a5e3214c3f17ccd8c1293027af", + "585e7b7bdb022d14c582381fb8377fbbe42c894e", "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_014-manual.htm": [ @@ -600942,7 +608963,7 @@ "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_015-manual.htm": [ - "cca5e58827fa7347657baa892ad1634f85e0d9ff", + "cbc9e684d05f7ca0a4681fd64983fbb07cde804e", "manual" ], "old-tests/submission/Microsoft/dragdrop/dragdrop_016-manual.htm": [ @@ -600981,290 +609002,10 @@ "f0b34dbb131de195d4d9709872a2a44856a358a6", "testharness" ], - "old-tests/submission/Microsoft/images/blue-area.png": [ - "b87d753e5caae6d356ed5ae0bf9430e69380a968", - "support" - ], - "old-tests/submission/Microsoft/images/blue-border.png": [ - "d7e6fa96c94057798d394cfbd2cf9be077ba5870", - "support" - ], - "old-tests/submission/Microsoft/images/blue.png": [ - "7de5cdb5ad04ac365430b3b5f5ba01d2ba57ea23", - "support" - ], - "old-tests/submission/Microsoft/images/fail.gif": [ - "a4dad89f8247eef2a574d1d96b0d188e84f1b57f", - "support" - ], - "old-tests/submission/Microsoft/images/movie_300_frame_0.png": [ - "1f29964d20d88de0d659fd76b864b51681582870", - "support" - ], - "old-tests/submission/Microsoft/images/poster.png": [ - "bbc45c317f75201c1cbb2da7aa545b3a982d2c6e", - "support" - ], - "old-tests/submission/Microsoft/images/poster_blue.png": [ - "cc45057561ac2849cca29068981742ce98578bfc", - "support" - ], - "old-tests/submission/Microsoft/images/poster_green.png": [ - "4e33c4b7b8a991de8427d8b2d3ec63f3f52da5cb", - "support" - ], - "old-tests/submission/Microsoft/images/poster_red.png": [ - "4eda712fc284ba0854dacce162f5aa04b1e8b24e", - "support" - ], - "old-tests/submission/Microsoft/images/rect.svg": [ - "5a211884bd17e0c8ee7940c6d4dfdb8c3e95671f", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_001.htm": [ - "48964e2680c692875469694d563a97cfe672c39b", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_002.htm": [ - "ffbb78c74d7bdb93e34eddce4ffa4caa51817aaf", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_003.htm": [ - "e2870e9585dcd621146c28186cb31c7941e7d9d7", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_004.htm": [ - "af6d52f175930dc8fc4085bb6a5300dd7769da63", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_006.htm": [ - "f61c5288124b87006246e64c75d1a34c85504a13", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_007.htm": [ - "d6db044955736bc2b0497155c7979c39ae691cf3", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_008.htm": [ - "ce7769f9fa964b7b7a36edcbf09e4b4087588b30", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_010.htm": [ - "ef69e9687003a9119bd031b71b5a2ebb035da1a5", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_012.htm": [ - "c73d69b345af0d0a51eb1a9ab059b8f5f0ea9a86", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_020.htm": [ - "0c7084688df3eb695fb16956caa3411063e3b080", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_020a.htm": [ - "f90ff7b84ca93d6e0382c8d19fad54f1b79cbdcc", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_021.htm": [ - "edbc32a0032d525635a567462d15eab2ad11ae22", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_021a.htm": [ - "43e04efb96b00b226cb7122d0638fbafb1baf9a5", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_022.htm": [ - "cb08fec6513c3d44c476b0eb11e553f8abf4e3f8", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_023.htm": [ - "bb8bfec1199055af6539746ac086781ac8d69387", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_024.htm": [ - "5a9234351a43c94b787b37534196379d9de5e84f", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_026.htm": [ - "d51ae27e86848df7fbe4c915f8fa834a7388fa81", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_027.htm": [ - "812e203c471ceb9544a392c4e17b40c7253041ff", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_028.htm": [ - "108b8c0998b5d0f312bb388416828b605c41d15d", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_029.htm": [ - "c2b462ee8e71b2aefa4c79c3e804ee934af25aa1", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_031.htm": [ - "6de8e378d8a29737c10d133e0f2e8b944b2e2ab4", - "support" - ], - "old-tests/submission/Microsoft/sandbox/iframe_sandbox_032.htm": [ - "ae3b4502848aa1a70338f4cc4b752dd363c87774", - "support" - ], - "old-tests/submission/Microsoft/sandbox/sandbox.pdf": [ - "44050f8922b1dd32fcf9dcf4e1bf331646edf496", - "support" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_001.htm": [ - "c8d66c610d701b925870ce13f1778181c96f151f", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_002.htm": [ - "96e201a2071f304a1108a816a6184bfa1b3f37fc", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_003-manual.htm": [ - "c55979564d1de0153369bef2cf124c579a1c759d", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_004-manual.htm": [ - "3c05adf2b1fea715ea8b15a9165042eb8016616f", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_005.htm": [ - "f7275e130ec241de07e09692bc3eb658cf9131ca", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_006-manual.htm": [ - "1c38f4b6b5e7d2273d54a7d10add0d60b49c0465", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_007-manual.htm": [ - "ad8f48b0c839d82f45c13031e7f40278c8c91c77", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_008-manual.htm": [ - "ec87b739d6b4abdd68b27302fe61d60c7bd06e46", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_010-manual.htm": [ - "9f446f802853684f79ea0ad4ae8f87c578751eea", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_011.htm": [ - "29e029f0eea294ee83f1c82a61786ab405841396", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_012.htm": [ - "3d1568f115a78bd98de94b7c32fd19d147bf51ba", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_013.htm": [ - "68fcf3dbc17401e3edb2e1799a3fb4a56e76a3e7", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_014.htm": [ - "8967643e1a800c447b4afb09c94c8e66ba0f7d66", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_015.htm": [ - "fbd93f402e90b176ec272a006d3697fbfec582fd", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_016.htm": [ - "1b05ffc484b8c07dcbb9090ab9eab4e2714bc0bc", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_017.htm": [ - "46aa1d91d0ac6f677d099305661fe9d76113f545", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_018.htm": [ - "ab791525ddc5d8845eea85d39125604edc95126f", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_019.htm": [ - "5cdb69cb141ab5e70da7eb09e920d32d320cffb9", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_020-manual.htm": [ - "25c2095aa2190ad093974083f9be701e59029668", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_021-manual.htm": [ - "480582a7bc736ab265a2dc00504583795ada3a51", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_022-manual.htm": [ - "3539bbe4691fad447ada818cfa24a2230ce493cb", - "manual" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_023.htm": [ - "5d4b06a4e5418643b2b8cd58279d6f6763446767", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_024.htm": [ - "cfec02a319f7333055023b4c9b4440951c732957", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_025.htm": [ - "5419edd55d86d2e536a7647293eac43589341ea6", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_026.htm": [ - "692a5ef1e836e27b6c19ca44e7165de07d779084", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_027.htm": [ - "b32331c80b01870e5336dd11684cd7f9231965ad", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_028.htm": [ - "8fc2311fd970454af714c395992ba65eea99d384", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_029.htm": [ - "79f12ea6165eca74d14465edb96688b6cd18924a", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_030.htm": [ - "f548832bd5902d2fc1a2f3a34822d00848c7c2f8", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_031.htm": [ - "48f43203e1750bd5ced9c4522097c84a63f370db", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_032.htm": [ - "fe53da9326a7e639281b4d00930cf1bd604aa113", - "testharness" - ], - "old-tests/submission/Microsoft/sandbox/sandbox_helper.js": [ - "26a0364fcd01bf6448057fb6eacad5ecb16cb5ac", - "support" - ], - "old-tests/submission/Microsoft/sandbox/standalone-fail.htm": [ - "59b8ea582a1d64a26fdccb01bd3cf14d1b347257", - "support" - ], - "old-tests/submission/Microsoft/sandbox/standalone-iframe-content.htm": [ - "d45d9d424b82bec52c44372e99279d1b11f0fbdf", - "support" - ], - "old-tests/submission/Microsoft/sandbox/standalone-pass.htm": [ - "8e495cf37e35d8a142a1550756e78004c0acfbaa", - "support" - ], "old-tests/submission/Microsoft/selection/RemoveElementContainingSelection.htm": [ "bf01b165fa15b374f50f67055f85ce24a79138c9", "support" ], - "old-tests/submission/Microsoft/selection/addRange.htm": [ - "5c88ec51e9f0ea8fcde573d3c485853d234f7603", - "support" - ], - "old-tests/submission/Microsoft/selection/collapse.htm": [ - "1b3a015748aadbb8ed80c50eab4a8a57cabb359d", - "support" - ], "old-tests/submission/Microsoft/selection/collapseToEnd.htm": [ "7ab29052320bb2d05ac6bcd9e7282d939e0dc1b5", "support" @@ -601309,702 +609050,6 @@ "dbebb6a0f2c125dc5c7ddeccccae2eb6496d29f0", "support" ], - "old-tests/submission/Microsoft/structuredclone/echo.js": [ - "092d33c695a185b38798d5e0ba12666a6f26e48a", - "support" - ], - "old-tests/submission/Microsoft/structuredclone/structuredclone_0.html": [ - "2cca7ed81a132d2fcc9267eeab13b63239ce0027", - "testharness" - ], - "old-tests/submission/Microsoft/xhtml5/colgroup_valign_bottom.xhtml": [ - "0a17fc9900d71aa232a3f2b70c99c5f5b08c6e00", - "support" - ], - "old-tests/submission/Microsoft/xhtml5/colgroup_valign_top.xhtml": [ - "86518ffd005cc320c75ab21add3aad40003aad74", - "support" - ], - "old-tests/submission/Opera/script_scheduling/001.html": [ - "600080685d1161455ff6315b4e020c6e7af809ba", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/002.html": [ - "0592dd7ea86299173e40007f865294c6ece7ce8b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/003.html": [ - "2e00173f0a31d89e03e334a34e816954736b6b7f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/004.html": [ - "efb4570b83dfe91806103d1eab382f958aa6908d", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/005.html": [ - "eaf72e018801e7a1ec753e25c10887dd23ca8759", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/006.html": [ - "d7b02d2e0a8a66f1ade9813e960467e18cc80131", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/007.html": [ - "be07dbc5e306681711a41335e5ec77fdde0f1cd1", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/008.html": [ - "f42f84cd34b9cda00292afdfe8be2e76a82960dd", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/009.html": [ - "c945db2f84e8c4b05f8f36f4b2bf789ccc07c89c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/010.html": [ - "16ee83f5a6556c1ab69ce4a455a313c1bd6d0ab2", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/011.html": [ - "68fb6e929d6fe4980f164aa544fec29126255de2", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/012.html": [ - "54f78aff425fbbb21ac6a418e4eae5452733cf1f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/013.html": [ - "94b6e0558f5e64ab1f087e021d1bbe4ab54d9c6d", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/014.html": [ - "2605ef5f637d3a8b53bf5a2e0a4fa618ffcb7312", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/015.html": [ - "90172b91f0fc5855b44372c365ae681856e7bfe5", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/015a.html": [ - "fc6f3367d0cdf49c971a441c30e600ce16172784", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/016.html": [ - "d7c6889ff1ec0e5bd05fdb3ae749badc4e0b18c3", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/017.html": [ - "f4e2a16e9a8a612c758c38ec7a6123e061e3ba29", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/018.html": [ - "f31b9f0e4b5925d7f84475ddf2288d094b67c524", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/019.html": [ - "c4497ebff084597f7d2da3d05d9538b539de9a19", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/020.html": [ - "b073c63563743bd592975d5af25744aa6e7b3b63", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/021.html": [ - "9ac42051b581afacc584eb644482513a101c2382", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/022.html": [ - "c6c7e33f99efb5cdc587ed45d7767fcfc9c1875c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/023.html": [ - "aba03041f8bbade7f83f31d8a38ff247db0a033a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/024.html": [ - "c8cdb10f8b9f0dc43e636b83b83eefe8806a47c2", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/025.html": [ - "e0559c2c6fc1b4014ccff023591121dd1fc3274f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/026.html": [ - "e9b9373fafe9f2f3da4f54182b5976fdeab30f96", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/027.html": [ - "cced91c915de2d036f83890ee75599adac66473e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/028.html": [ - "2976bb7c8394f611e28a9de4eba7234be0e86b09", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/029.html": [ - "5489f55410bec9e48775179f3b4404ca97b05b5c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/030.html": [ - "931af49603550d16c2f680695daf1a4be0e18a84", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/031.html": [ - "383b24c1df0cba1ace7f225f6b44f5148ad4922c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/032.html": [ - "e6a2bf9ac6f7b637c055c0219fb4cb8ddd0fcc32", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/033.html": [ - "f581245a38ad7941d34d0ab5faf39c292556c8f0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/034.html": [ - "38f3ea50362c2f2dd996433326e963fdfea9dd27", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/035.html": [ - "3dd6bf09b113dc3347171a4720e89f1e9360552e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/036.html": [ - "dfb0d5e5f49455fb69798abc018b980d8b876d4e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/037.html": [ - "5dcb03165f18e3159a4571772126b8f956dfd288", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/038.html": [ - "52065f6ac80829f00fcb5e6b731742773828fdae", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/039.html": [ - "8f1cc330e3aa99be1324239a939ea0c9c0344c4b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/040.html": [ - "6a05b448509b68bb59c2f38a363d996fa95107ef", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/041.html": [ - "24848d462f5e6cb45cb1143fb2dfc98c2f3e1f16", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/042.html": [ - "dc8a7c64229d2b4e8a7c5a09d17c2dc832b2be5b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/043.html": [ - "8cca4d39e9e4760eac906e1fb6b0a6dd313cf6de", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/044.html": [ - "55d225f25c2e3db589dd8bc0e0f164747b53e6fb", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/045.html": [ - "37321a0ca1226643aa3b9c4d62b942475d610b9f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/046.html": [ - "58af91b9175e5afefe0c9ffef26df87e28812eaf", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/047.html": [ - "1ea58df6d7b8080a08c8c950a6d753ca6d7973ea", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/048.html": [ - "0b395ca210c644d7318c381876f95c65930b4bb5", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/049.html": [ - "58d7eb0e40585eebe57bb50d08498835556380ad", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/050.html": [ - "37c44d5bd82e4cc839404ec4af5e92b06614cbfd", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/051.html": [ - "6208f818ca2009c15e4a0bb7f9653c6928a69804", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/052.html": [ - "e8193c210331af0a0b21f775fb199d05dbd667a5", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/053.html": [ - "611d706f28f30c6588661eefd0a00131fd354de0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/054.html": [ - "be071a1fda3e2873bf453160665925d994b70c53", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/055.html": [ - "6b282bda0e17a53df4d49457bf005a83f8b2c05c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/056.html": [ - "8b607fab9cfb89feb062bbcf5c938607bae53047", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/057.html": [ - "72688f2a9cccd51d36d303bcb74ab2a5aeb66dd1", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/058.html": [ - "8f0fe763850d7db28b88cba850790b94cc7b3609", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/059.html": [ - "aed4289e63b9039ea4e4c9320cc63617b2c2d710", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/060.html": [ - "d2f1927659a74daaf526ed60f79e86c5448e15db", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/061.html": [ - "82cca51baa7e57cc27cf6e91517fdf4d7658a938", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/062.html": [ - "feb1b20ae372f7892a47b80f35b439cf52443073", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/063.html": [ - "820e78ec069916ed875535840adf58c882b912b9", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/064.html": [ - "730e369359057dddee3631bf5fec733d049570e4", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/065.html": [ - "86fa4e81d9a685ce0c9df6b6e4e903d84e36f535", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/066.html": [ - "837015a45f6ce4c1b4f3e16d6940616608aa5af6", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/067.html": [ - "f883a1cc977c4a7fe60e3b092508650521397e14", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/068.html": [ - "61f912469372089d3a42bb6fc531449ecb3fa758", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/069.html": [ - "d1ee26c303c8e7c3e6f5041a25a978073be697f4", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/070.html": [ - "3da0ba23c1d5ba1fb50b09c1527a1954670452b4", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/071.html": [ - "dc60148531fe0a74c353c1f7a94ec347d9811387", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/072.html": [ - "4a526bc1c4b4ae127374fd9ced0476cea452480e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/073.html": [ - "c7b8530547caf295982ce937339240551e7b12f3", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/074.html": [ - "617745997272248b6056df0f5fdd8b8bd7a06f43", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/075.html": [ - "01089de4c049a4b35e675f8ac6c5c82f0770201e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/076.html": [ - "cb0431a664dd6c493acafbf93f0f578ef14daf85", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/077.html": [ - "2bfe280f0ae7b745f2217055e66579ab6fb06769", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/078.html": [ - "71244598c4d1c581fb0b8c9a9eb1b19f642428f7", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/079.html": [ - "c8ad7d7bd5cdfbd52d4250b43df2abd4f06320e5", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/080.html": [ - "4d00ef083f033195a1ae390f890b0add644ef647", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/081.html": [ - "736fc94a557cc1664e1fd925e043fad9851b4579", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/082.html": [ - "5b7ecbe358157d4f41569b9b17675121a77aec1b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/083.html": [ - "b89df3759ab2a99cd5c9083b780347435f446560", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/084.html": [ - "bcebac9bb723954517dbb6fec37737ba19ce939b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/085.html": [ - "cd01cf16c67489de21779c1353257b0370c0fb56", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/086.html": [ - "8b1a7067a1f4e9258d1d0f1772f59c32eac926f0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/087.html": [ - "df3141759eeeb1540255e7fbd4d4d93128710dbc", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/088.html": [ - "eeb025d85f71a3a450e86405222ecfc9afb3529d", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/089.html": [ - "0f03075cd5b09dd0ba17c4e4755661881a26af66", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/090.html": [ - "bffe7c2005287562c1f9308cfdfd7ec167cb7f72", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/091.html": [ - "2baf6e46ff983ccadece2398ed22a626f401ee58", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/092.html": [ - "f070a8b078f5f7a41e684e6103b57647e697e49a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/094.html": [ - "659f91819f3041b2d2c81c81d7dc12d581ad9bea", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/095.html": [ - "e6f049bc7253331e4e5f7449490b1d0d3484d069", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/096.html": [ - "51768500b4094f3e09545678c79e3cc21a79ec05", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/097.html": [ - "3ac30238216932854620a416f05cb1e7abcb25aa", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/099.html": [ - "49a56e4ebe6a752002776f81c8511b6f34852a15", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/100.html": [ - "c8e8962700545210d6f2e900af7e562d6d624171", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/101.html": [ - "8aa9b4d0c0c3aec53f4b9cbbbe04a98198379c8f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/102.html": [ - "0b63d6d6e084ce841d491badee08cb3854095576", - "support" - ], - "old-tests/submission/Opera/script_scheduling/103.html": [ - "6c302cc82ff1e6601cde8b65a3c2657aa24f3614", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/104.html": [ - "f6f164b354426f813d5db92a71e0376a7d80927d", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/105.html": [ - "be5da9049dbc111612c9000e11299e83e56ed258", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/106-import.html": [ - "e231c8038d73b9ee2dedfe0682fb8c21d5271fcb", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/106-noimport.html": [ - "0ae4f0b07e4d96371f6cfa2f8344945caee4b936", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/107-import.html": [ - "cd8a4716caaabb26a1dd6cb38068479b351a49fe", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/107-noimport.html": [ - "60448c23c8165a2c4f439d89732f8fedf8498a3a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/108.html": [ - "8e6efbb104c4ae47162246fba69eb5fc90187f21", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/109.html": [ - "aa58a708ca71f5fa1851bfcea55a46b2add90a9f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/110.html": [ - "6d43803781726a849be707a65e866cf7cfd7650c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/111.html": [ - "a99a1c9e43cbd3332130a165774dd54d4ac8c4be", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/112.html": [ - "4447a3344bfdf9e3d56a6bf754c33d2f53933aa0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/113.html": [ - "3c2fb63108173f4a593678133c361a0c00d3d167", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/114.html": [ - "291ae93a0616b7c660ff90187c50ef9651d37f72", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/115.html": [ - "ea2566aadd4697a8635e4f7deb7bfd9829a1a3f9", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/116.html": [ - "04c55da04319500e067bd0eec273102f468af0e0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/117.html": [ - "42ef819a45a0f7ea38d12916e78f9c098c270d1a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/118.html": [ - "be6abe20855830d6516ee5ae4f73898e46eac349", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/119.html": [ - "cc32b1d7115f6803cd91176e8497238f25575169", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/120.html": [ - "2f3647df39d8655173ca28dc69508c9ddd0d2457", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/121.html": [ - "af72febfd67dcae75f570be9fce544793581540b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/122.html": [ - "f78807ecaf353613a4a55c567569308afa14ff14", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/123.html": [ - "4cdc670b2177f03f02790850e3dd557c778c962e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/124.html": [ - "cc22e8f1534dcac2507622a8c4946017596a1966", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/125.html": [ - "9f141f0670d3483c2d1de1577db65154cc870518", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/126.html": [ - "46ce40e99442957493920b9c2c01d0a76a6ea10a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/127.html": [ - "9334cfbf95320e52e87d6c32d5f130b4a2c891f2", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/128.html": [ - "f68a149a41e074e6f6b486afe13366a1af7d68d8", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/129.html": [ - "2c572f0d5458bce00e595eb1a89f0b4286d8982d", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/130.html": [ - "7b8781d93d336a012de476f65f4cbcd6eaa6cf94", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/131.html": [ - "24b959e74a6c4150cd2696483b887449540671b3", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/132.html": [ - "030a5aa95ca9d96323da9a04aa60b763f6f087ed", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/133.html": [ - "20f72898a1f86e3ecd0ac5e50d761a6508156bf0", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/134.html": [ - "4f1cc0bb75447083be81af8c462a849a248789f4", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/135.html": [ - "e99c455cc443c2eca61bbd68067cc9394e20111f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/136.html": [ - "2c19dc5583577e957d6a8b6514a1ca3fc30d8f5a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/137.html": [ - "761beeaa1e7768c8ed207b3ea90fe9b580995f3f", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/138.html": [ - "d91858c8a3039586084b72c07a210116cc68f776", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/139.html": [ - "8410429412390c3e6c1ed3424ae37b2fea84842a", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/140.html": [ - "74a4679bdd67d0824b17a037951ea9a91bc75142", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/141.html": [ - "0f50a848604cbe77ecfa07ee1fa1b1ab29fa21f5", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/142.html": [ - "527bd61c3797e7e8c004fe86e81fb739743edd7e", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/143.html": [ - "7ea69ea1609261ba04ec269ae37317b18dc5a18b", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/144.html": [ - "d130d5587062f185d540d00cd50816241aa8c112", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/145.html": [ - "9710225d260f83ff49dcf2bfb4e42cee2cedbd66", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/146.html": [ - "b484b07c4a575789523a60afaf6a7e2d42812c9c", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/147.html": [ - "950c46780c11601e46d383ea7b9fe3f351cf6813", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/148.html": [ - "01e8dcb0e1aab56420bce9660e7d61f1124d6101", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/149.html": [ - "93ce7733a174f16ff233fb03b6fcaa0ea7b13c29", - "testharness" - ], - "old-tests/submission/Opera/script_scheduling/css/background.css": [ - "7a48895f08aca52493e4c9e192a382664b00341b", - "support" - ], - "old-tests/submission/Opera/script_scheduling/css/import.css": [ - "2e8c8d9ede773e4078b2e8926d08c87e5b649bf1", - "support" - ], - "old-tests/submission/Opera/script_scheduling/pages/helloworld-postMessage.html": [ - "7b165a0bb8182c587d7328cb2295639e3c7e535b", - "support" - ], - "old-tests/submission/Opera/script_scheduling/pages/helloworld.html": [ - "f9203d943610e70b87f79b7beb331fe9520a4bf7", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/count-script-tags.js": [ - "54818d68b9c9ef3d0ede269cc75eb12e977fe8b9", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/find-body.js": [ - "e65eff4f877fb89de51f569e07add665147cd9c9", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/find-foo.js": [ - "4b22b857070d1aa7615e889d2602196ca9431049", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-1.js": [ - "722fea5d23733d822faf5717f66f2ff2cccb62a4", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-10.js": [ - "8b70b5a43ab3f1efd9755bf95f9a2713bbe588ce", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-11.js": [ - "af092f1827bebd1e69f3b914049ad4febfcc8dc5", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-12.js": [ - "7dcd929b6b7dd65553f87ec8b0fbf0ec84c335b2", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-2.js": [ - "3a3c18956bb0ccf8c13b301cd3c6f0a6e474ce75", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-3.js": [ - "80d22183699d06a1b7da5136a118404a7e05778e", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-4.js": [ - "80c723fe3486f7cb90b7b9fd25ea836125e562d1", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-5.js": [ - "45ce718f612e0adf967327716087f04325fcbee9", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-6.js": [ - "f7b945c3ed8e981a7f0ed1fc971c08fe05f971a5", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-7.js": [ - "39f911ed6844c0d38ccd91c3642e234c274a916c", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-8.js": [ - "fe0ad17a092c33cad29ffe0a00325ac573c0f464", - "support" - ], - "old-tests/submission/Opera/script_scheduling/scripts/include-9.js": [ - "2cd9bb85862c8c577e2dff564459516f4a4b2c07", - "support" - ], - "old-tests/submission/Opera/script_scheduling/testlib/testlib.js": [ - "a33ccc49dfe5d8f23ee61a29fc8a26a3969409f0", - "support" - ], "old-tests/submission/migration.txt": [ "80f76c03a8e921a83a82f2bf01beb2175248dd67", "support" @@ -602662,11 +609707,23 @@ "manual" ], "orientation-sensor/OWNERS": [ - "36770a71443523aa2f91f9958ba24066f0b4dcec", + "b119dbb984792f33c6e7463f3105d37c3c3b7ad8", "support" ], + "orientation-sensor/OrientationSensor.https.html": [ + "145b750c49bf703c68bcf4ad645448bc284d393b", + "testharness" + ], + "orientation-sensor/OrientationSensor_insecure_context.html": [ + "700603c508503fe859502f334153aaa7f5e6f511", + "testharness" + ], + "orientation-sensor/OrientationSensor_onerror-manual.https.html": [ + "6f0eb976affc21e49f48c42c1bd9d9eb0083ee40", + "manual" + ], "orientation-sensor/idlharness.https.html": [ - "049b5e9505165723cec70237e2ae5f0e2c7948f0", + "9301519eebff3db962bbeb148bf3dd3b1e305a23", "testharness" ], "page-visibility/OWNERS": [ @@ -602674,7 +609731,15 @@ "support" ], "page-visibility/idlharness.html": [ - "6bbcc548a783a56340aa256e5f51ca51c1b3f4d3", + "e3f97d7f03caf99d71e9528c6db75c13c477b4eb", + "testharness" + ], + "page-visibility/iframe-unload.html": [ + "b97bb09efe6a8e410f6bfd71dc92f041d1b980bf", + "testharness" + ], + "page-visibility/onvisibilitychange.html": [ + "d1d46a5280fcc364815d87e3a4ee68b0404e8ebf", "testharness" ], "page-visibility/prerender_call.html": [ @@ -602685,8 +609750,16 @@ "2d6d55d85e17a9fe978db6dbe25ae35a599d5683", "support" ], + "page-visibility/resources/iframe-with-subframes.html": [ + "17615ac4c33fd7f2e49c3b5357de3b976eb2963b", + "support" + ], + "page-visibility/resources/iframe.html": [ + "bfcc8f9ef2153686a0817b9d0f9fb36f2db73493", + "support" + ], "page-visibility/resources/pagevistestharness.js": [ - "63604473eabaa8d3b9b410a1a0087d9b4b2e7b90", + "1c77f9af66e2d39e97056273c35197827f03bb06", "support" ], "page-visibility/resources/prerender_target.html": [ @@ -602725,16 +609798,128 @@ "5695dc622d2bc89c33c10fd73aac173c87cc7ad2", "testharness" ], - "payment-request/OWNERS": [ + "paint-timing/OWNERS": [ + "2b1094a1e18f3321cc7a3740cae2d5b2d5f85772", + "support" + ], + "paint-timing/basetest.html": [ + "f34f6729a82f6efc16dc4d62c95f706688d0456b", + "testharness" + ], + "paint-timing/first-contentful-bg-image.html": [ + "6ee710d78e5f0f174ba00fea97c49d05641ed514", + "testharness" + ], + "paint-timing/first-contentful-canvas.html": [ + "b179da1518178287879fa36c4adbd3c5dc291e92", + "testharness" + ], + "paint-timing/first-contentful-image.html": [ + "d557aed2ab81949a2916b764dea207b50bab6278", + "testharness" + ], + "paint-timing/first-contentful-paint.html": [ + "7cf0881d8a247bc85e8c8ad1be131b84dc9b56bd", + "testharness" + ], + "paint-timing/first-contentful-svg.html": [ + "41436ee277f1882235b668afb7144f14491c6a5c", + "testharness" + ], + "paint-timing/first-paint-bg-color.html": [ + "bf6555a04e08636abb0f25c0948d8e7e5a34eb62", + "testharness" + ], + "paint-timing/first-paint-only.html": [ + "826a97fb19bfcad80b1957251c3d57e995e78990", + "testharness" + ], + "paint-timing/paint-visited.html": [ + "58554c3e238bf6d598817e425c609d44e69438d2", + "testharness" + ], + "paint-timing/resources/circle.svg": [ + "81e7e9fd9b897bd8a62959368a0b7e7f2c2533cf", + "support" + ], + "paint-timing/resources/circles.png": [ + "dda93e587da353e712ff9bc671ebcafa8dea222f", + "support" + ], + "payment-handler/OWNERS": [ + "c5e5d0fd086bbe946f99aa8836785c81a2bccb3d", + "support" + ], + "payment-handler/interfaces.https.any.js": [ + "a20a5909c9a94120049e45e543cc623b875ea7f5", + "testharness" + ], + "payment-method-basic-card/OWNERS": [ + "ee0b02c59588d15b6efdb983c492ebbf50127e1c", + "support" + ], + "payment-method-basic-card/empty-data-manual.https.html": [ + "f58fecb7d70aac64befe54f403208da14e479b1b", + "manual" + ], + "payment-method-basic-card/payment-request-canmakepayment-method.https.html": [ + "70f2de7b94ca8e22fdbfed6d39f6f1627b5bf3b0", + "testharness" + ], + "payment-method-id/OWNERS": [ "78f6ac38657ede306b767f1156cebd44bebbfb8e", "support" ], + "payment-method-id/README.md": [ + "20d0e6d34a096a9e8c59a8e6ae7d0bfeaa0e6344", + "support" + ], + "payment-request/OWNERS": [ + "a2937112040fe45b12ba87b6fb75bd9be6aab6ad", + "support" + ], + "payment-request/PaymentAddress/attributes-and-toJSON-method-manual.https.html": [ + "e1aefd7497d3d5005df88d034fbde4e6b26823d6", + "manual" + ], + "payment-request/PaymentRequestUpdateEvent/constructor.http.html": [ + "017f1f1aca43171083833ddb27ff66e39902e85d", + "testharness" + ], + "payment-request/PaymentRequestUpdateEvent/constructor.https.html": [ + "91210fe058e95195ff5f999a1540ce0f2914f552", + "testharness" + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-call-immediate-manual.https.html": [ + "300c0740bdbeadcc7aad94e759ec8eff4256b7c8", + "manual" + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-duplicate-shipping-options-manual.https.html": [ + "6d139db4c12f85981ea3d1e6dc167e21510847fb", + "manual" + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-method-abort-update-manual.https.html": [ + "4a166673c699656849c0dc4eba9076b9cdc613ff", + "manual" + ], + "payment-request/PaymentRequestUpdateEvent/updateWith-state-checks-manual.https.html": [ + "d05ca169a1766893613ba546e60259e8dc848f96", + "manual" + ], + "payment-request/PaymentRequestUpdateEvent/updatewith-method.https.html": [ + "08e63c4605bfa4838984aff13a82458ca2a6bdf8", + "testharness" + ], + "payment-request/algorithms-manual.https.html": [ + "6b1c0579e14eadb2daf3ece2443c605a1d8bb57b", + "manual" + ], "payment-request/allowpaymentrequest/active-document-cross-origin.https.sub.html": [ - "7cb0cd48493781fe9a4f059365752fdc8d1ada6c", + "e96ac343e8533e8e90d3cbd4113a902b9e93e0bc", "testharness" ], "payment-request/allowpaymentrequest/active-document-same-origin.https.html": [ - "0bcf7a59e03f70b56cc448910acab4188e225c86", + "8bbacc77b15f179bfc7ec4e08809e07181675030", "testharness" ], "payment-request/allowpaymentrequest/allowpaymentrequest-attribute-cross-origin-bc-containers.https.html": [ @@ -602746,7 +609931,7 @@ "testharness" ], "payment-request/allowpaymentrequest/basic.https.html": [ - "fa308475bf7e81d897f39c5df4d0cd2795df7da7", + "0e8a08f2e25a1cc3302d68322f504930ebd3fc8f", "testharness" ], "payment-request/allowpaymentrequest/common.sub.js": [ @@ -602754,7 +609939,7 @@ "support" ], "payment-request/allowpaymentrequest/echo-PaymentRequest.html": [ - "f330e448c1ac380bcaa23bc5bc15c3253aba18c4", + "1c0428fd7d3bdc4302bb061f6f99ce98d0e400b2", "support" ], "payment-request/allowpaymentrequest/no-attribute-cross-origin-bc-containers.https.html": [ @@ -602766,76 +609951,148 @@ "testharness" ], "payment-request/allowpaymentrequest/removing-allowpaymentrequest.https.sub.html": [ - "9452392f0dc2b4feb4ee87f09952819998b9e39c", + "3aa81e7a578d5250854a14a617140111969570f6", "testharness" ], "payment-request/allowpaymentrequest/setting-allowpaymentrequest-timing.https.sub.html": [ - "b8c0121e830a6b2c8897d98ee8cbd381802d4735", + "d92b607f67ce478d505544bb43cd015b4bc89987", "testharness" ], "payment-request/allowpaymentrequest/setting-allowpaymentrequest.https.sub.html": [ "6e4028440fff617d6a0e9abb06625891eb53b28a", "testharness" ], + "payment-request/change-shipping-option-manual.https.html": [ + "9285ebf2cd716ea072c18fe668e95cf6ce4ec3de", + "manual" + ], "payment-request/historical.https.html": [ - "c0c611a34326ac2eba18e48d640aa358deaae551", + "6695acdcd1647fdd37702a7f63658dcd50f25596", "testharness" ], "payment-request/interfaces.https.html": [ - "29af302db74de64e2bd1352ad92092a309d28c92", + "87fb3213b7442ceb3f096d88b6bae3074f96d29c", "testharness" ], "payment-request/payment-request-abort-method.https.html": [ - "c9ee5af2ccd5ad364090807c8427f1d4624d3747", + "5c1ddf4e9e2a896036912983462f51f8ff6aa82b", "testharness" ], - "payment-request/payment-request-canmakepayment-method.https.http": [ - "b20131bc3f2717212f9940920183d650ee111333", - "support" + "payment-request/payment-request-canmakepayment-method.https.html": [ + "44a75a5b40fc80970bb629dd4d98722849d862f7", + "testharness" ], "payment-request/payment-request-constructor-crash.https.html": [ - "bbf131cd4517d450299cac05560a137c23f47e8f", + "9983391839ed64c41f9a7ecfb48a9b4abe6b497c", "testharness" ], "payment-request/payment-request-constructor.https.html": [ - "44d2656f2990c51063254326521a02218a7fc500", + "1cda9bee85f3afe53e492a7f0e98b12cbfcd9b98", "testharness" ], - "payment-request/payment-request-id.https.html": [ - "3e74f97fdf39bb1ca9f2cb5596155705cd15b5b0", + "payment-request/payment-request-ctor-currency-code-checks.https.html": [ + "cee3a8a8b9d25b5a44445a416b1bc9be2b341a04", "testharness" ], - "payment-request/payment-request-in-iframe.html": [ - "26f2715d33e6d00e5ce03d7b07f35db2ac027acf", + "payment-request/payment-request-ctor-pmi-handling.https.html": [ + "1be7fcc83fe7d90e59135b5c16e42bbd27b7390f", + "testharness" + ], + "payment-request/payment-request-id-attribute.https.html": [ + "9a8a1ffc3cd7ba3c29380c4a9962bd17f35087c3", "testharness" ], "payment-request/payment-request-onshippingaddresschange-attribute.https.html": [ - "9a16b563d8b5f355b73b84d01f61f910bab7eb18", + "c9e3679232a83abe6a9eefcb28e3387d2c7810e5", "testharness" ], "payment-request/payment-request-onshippingoptionchange-attribute.https.html": [ - "439c524e66216aad471ecea680a36430f89d9af9", + "9488e832b86b582310b0f46a68f9cf420b473e98", "testharness" ], "payment-request/payment-request-response-id.html": [ - "88df88efdb1d44b56ac9758295f2e2920ae6c9ff", + "8feda1d3b4c071014d4c8c7898598c7d23086216", "support" ], + "payment-request/payment-request-shippingAddress-attribute.https.html": [ + "ce33b78031644cb508c6fe148c21c37128b422c0", + "testharness" + ], + "payment-request/payment-request-shippingOption-attribute.https.html": [ + "4dbafc96c5effd3b697026aa9a29095e8f4a9296", + "testharness" + ], + "payment-request/payment-request-shippingType-attribute.https.html": [ + "27ecc7e10e50bf2df07f84a15972c3b913ebf32f", + "testharness" + ], "payment-request/payment-request-show-method.https.html": [ - "518136ad885f95172e578f6e2c165a559c51896b", + "1e4c792de7013839c713555a0a295bcbb9597094", "testharness" ], - "payment-request/payment-request-update-event-constructor.http.html": [ - "6ddbcd3b5847492daf0c2e913369bc861e4d006a", + "payment-request/payment-response/complete-method-manual.https.html": [ + "dc083332294137bd562060c7bf13f0664e6e038f", + "manual" + ], + "payment-request/payment-response/helpers.js": [ + "992e5ce9af876e7d3f76168f15691afd43b41791", + "support" + ], + "payment-request/payment-response/methodName-attribute-manual.https.html": [ + "88c5c390ad6396a7ffd5f11948adddfb2458b4fd", + "manual" + ], + "payment-request/payment-response/payerEmail-attribute-manual.https.html": [ + "d2aa361068844ac6fc95dd694a19eb093df399b0", + "manual" + ], + "payment-request/payment-response/payerName-attribute-manual.https.html": [ + "3e18addaac52270128e3c4dd6e3f5d421816a67e", + "manual" + ], + "payment-request/payment-response/payerPhone-attribute-manual.https.html": [ + "72009bc00083e739816d3442c42ed87f43d3e253", + "manual" + ], + "payment-request/payment-response/requestId-attribute-manual.https.html": [ + "5bda341b3faa65d5ff24cbc4fd5afe110e413146", + "manual" + ], + "payment-request/payment-response/shippingAddress-attribute-manual.https.html": [ + "27768a28c6d3ecee925ff096bc9a7f028dc53f18", + "manual" + ], + "payment-request/payment-response/shippingOption-attribute-manual.https.html": [ + "da91f7d011efeb58409d300bed3c0a4c3c7367d6", + "manual" + ], + "payment-request/rejects_if_not_active.https.html": [ + "b7defcf07abde6a18f0012c21bee2e00a5669cd0", "testharness" ], - "payment-request/payment-request-update-event-constructor.https.html": [ - "6b546870fd384a5bf2106d25fd3159a72f8537b2", - "testharness" + "payment-request/resources/page1.html": [ + "9bd62a5279e60dc30b39c449f4aefbe30f9db336", + "support" ], - "payment-request/payment-request-update-event-updatewith-method.https.html": [ - "d85bca2ccb865c11c550a9d9c1d8770b2c68d6bd", - "testharness" + "payment-request/resources/page2.html": [ + "9bd62a5279e60dc30b39c449f4aefbe30f9db336", + "support" + ], + "payment-request/shipping-address-changed-manual.https.html": [ + "db68756c6cc3cc2146f608a04988cd938a2dd0de", + "manual" + ], + "payment-request/updateWith-method-pmi-handling-manual.https.html": [ + "b473073ad106e9e0732adb6bfbed5f54d6ec3194", + "manual" + ], + "payment-request/user-abort-algorithm-manual.https.html": [ + "31a6f480d015c6c715df2001b03f487a205a7311", + "manual" + ], + "payment-request/user-accepts-payment-request-algo-manual.https.html": [ + "37f114e9c510722f9966c092c8a4f5008688d86e", + "manual" ], "performance-timeline/OWNERS": [ "b82f9756b15ef3ea45fb250e304031d9ceaee9c7", @@ -602846,15 +610103,23 @@ "testharness" ], "performance-timeline/idlharness.html": [ - "14c5244fdb2af22bdad8b5333d2dd5b9696a9e49", + "30e6893af2cda301efb45fa7cfe16cec04701445", "testharness" ], "performance-timeline/performanceobservers.js": [ - "ac475b58b945d09335e80f40c6238ab7ebdab7fa", + "0faeecf506da5b8a5c722a1ce8c7b5854227bca0", "support" ], + "performance-timeline/po-callback-mutate.any.js": [ + "7dc6bb730a7a5ddd9c96dc76c4ca66494c138732", + "testharness" + ], "performance-timeline/po-disconnect.any.js": [ - "28868de2ef9fa4aebe4a65799e899e4e9afbc192", + "91a3adfc0de224ef81349891452bb3759d53767e", + "testharness" + ], + "performance-timeline/po-entries-sort.any.js": [ + "495bbed0d3144282716f09ee682f562db922c77e", "testharness" ], "performance-timeline/po-getentries.any.js": [ @@ -602870,11 +610135,11 @@ "testharness" ], "performance-timeline/po-observe.any.js": [ - "78b32c64ddb9e6da80b57fb1f91576dd0f59b13a", + "40ad487d03ae3d8812dec02869d402636d10811e", "testharness" ], "performance-timeline/po-observe.html": [ - "0076397128975660e1f66f8d23e6b6945d2a804e", + "2486507d5925b6429899ddf4db386990d7ae560f", "testharness" ], "performance-timeline/po-resource.html": [ @@ -602885,6 +610150,14 @@ "f2f3c2b3cef895f514f595932b767299cd6dade0", "support" ], + "performance-timeline/resources/worker-with-performance-observer.js": [ + "6536127a1136f45cd59f62a9851fe61ceabe3d5b", + "support" + ], + "performance-timeline/worker-with-performance-observer.html": [ + "dc978fd8669d67118109fcab245010fdd7d799b0", + "testharness" + ], "pointerevents/OWNERS": [ "e76cae8532b1259fa8665b515468d0b25b0a9bb3", "support" @@ -602909,6 +610182,10 @@ "11d5baa9206313270be6289205b002b623af85db", "testharness" ], + "pointerevents/html/pointerevent_drag_interaction-manual.html": [ + "1eb570dbed48373f9e840b7694b774448b689879", + "manual" + ], "pointerevents/idlharness.html": [ "6ca74eb661910c27ed6cb8bbbb819b749007a75f", "testharness" @@ -603086,7 +610363,7 @@ "support" ], "pointerevents/pointerevent_support.js": [ - "2b8c7b6d0917b9cc624735b7dc1105a732f9b3f4", + "f2ab5ea976ffd62c669fda2db1484a4733ce5b28", "support" ], "pointerevents/pointerevent_suppress_compat_events_on_click-manual.html": [ @@ -603282,91 +610559,179 @@ "testharness" ], "preload/download-resources.html": [ - "df19c269c7193a5dc86630799afcd16a941f58a5", + "f4894d37e5687cdadf8aa6879cf233b8af4e84da", "testharness" ], + "preload/dynamic-adding-preload-nonce.html": [ + "b088a043cea13026f2a6aeff1e329728440f27f4", + "testharness" + ], + "preload/dynamic-adding-preload-nonce.html.headers": [ + "bc989923b6d9ff44e3efbd511264a3ba9e294078", + "support" + ], "preload/dynamic-adding-preload.html": [ - "9f952dc438559f60028e09bc47d4a88722a56408", + "b69da90e272530d4f42bf6d9c5b3b772d1ffce48", "testharness" ], "preload/fetch-destination.https.html": [ "d24a50f1f0a52371f84ec35ccc1d99df63c7da44", "testharness" ], + "preload/link-header-on-subresource.html": [ + "ea2f018b648d77b13b8010b4ebe63cdc5f846603", + "testharness" + ], "preload/link-header-preload-delay-onload.html": [ - "636fd33d632c5d3dfeacd0e3d479ebbba1d0a436", + "2f786770b2d0ea00c999e10afc46a85ec737d8e5", "testharness" ], "preload/link-header-preload-delay-onload.html.headers": [ - "a1c0a4f2f25e358784567be95cc02edc03173f45", + "80630631003ae230caab5a49c1073d7dc1e4c9aa", + "support" + ], + "preload/link-header-preload-nonce.html": [ + "5686f83e37283200f9fd24483a4412af8816ee73", + "testharness" + ], + "preload/link-header-preload-nonce.html.headers": [ + "5cecc11ba51e0f6a7dcff46dd0c0c1a3fa8e3fc7", "support" ], "preload/link-header-preload.html": [ - "93d80aee2daf5434d78484a412213f17fa92886f", + "baccd9981f5a8e4a7ac6d57bc3feac67bcd0d676", "testharness" ], "preload/link-header-preload.html.headers": [ - "d30ac6e50fb6d6b996814f9e98d88262d715c16e", + "8957392c3329646d4a17506b1fc5e3e4bb6237a8", "support" ], "preload/onerror-event.html": [ - "8d07912e570ef8ece9ffdc8f6cc8eeae219a3e5c", + "9f85f429c75d8469ef4bad843a09a307a20c6f58", "testharness" ], "preload/onload-event.html": [ - "8d190661c002ffe0c6f2fca51454fc2d67a6f465", + "a02dd91451d598684a91575e8b09bda81c90e43f", "testharness" ], "preload/preload-csp.sub.html": [ - "fabb968b75579b301045ecb00380336815e36e86", + "6b883cf98ebedfffbc66ab01db8736b3a978ba3b", "testharness" ], "preload/preload-default-csp.sub.html": [ - "4686e9047519b9a3e90ccda610442006c35cfc63", + "5dc342bc568e96a53d5d8c0259a4f3c32a9a6ae5", "testharness" ], "preload/preload-with-type.html": [ - "b15b6022d8fd4bdc88e7a54429667eb223bc2464", + "ede6cb60bc1fff4f5b7740f66f039c88adb23f6f", "testharness" ], "preload/reflected-as-value.html": [ - "835cd55f66486f2a66fd65d201a9184fb276ddab", + "28b98f82200b0c3461a9ff440df454a254f5e62a", "testharness" ], + "preload/resources/A4.ogv": [ + "cb9a48e1d53911d5be214320adfbf7596632a316", + "support" + ], + "preload/resources/A4.ogv.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], + "preload/resources/CanvasTest.ttf": [ + "10a7017b4caead6817aa08b25f14950e6402dd95", + "support" + ], + "preload/resources/CanvasTest.ttf.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], + "preload/resources/dummy-preloads-subresource.css": [ + "788dde4e1879591cdd0e8298741f30b0d12578cd", + "support" + ], + "preload/resources/dummy-preloads-subresource.css.sub.headers": [ + "74cf2e94b49905203c42c7e701bd2308997347ea", + "support" + ], "preload/resources/dummy.css": [ "788dde4e1879591cdd0e8298741f30b0d12578cd", "support" ], + "preload/resources/dummy.css.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/resources/dummy.js": [ "bcd2891de63b59f9d6941009ec42f2020396617e", "support" ], + "preload/resources/dummy.js.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/resources/dummy.xml": [ "2cd5f1a5408f112904afbc7a1e97d75d3ed93ce7", "support" ], + "preload/resources/dummy.xml.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/resources/empty.html": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], + "preload/resources/empty.html.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/resources/fetch-destination-worker.js": [ "04e1fd5f1b1829ab9df389f9497681c585b42b78", "support" ], + "preload/resources/foo.vtt": [ + "fbfdfb2648866047d0fa2a4ad4fde3462a491857", + "support" + ], + "preload/resources/foo.vtt.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/resources/preload_helper.js": [ - "bb0ed5216594759b2f0f0aa0cf3e9d2f072950d9", + "56ca07621a7198b2f983b3f13a5a63d9ce81ab3c", + "support" + ], + "preload/resources/sound_5.oga": [ + "167093849b93b142723513ac72a725c97da635a8", + "support" + ], + "preload/resources/sound_5.oga.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", "support" ], "preload/resources/square.png": [ "fa547a180b73a5422d52c1702c9d1e43b1083f9c", "support" ], + "preload/resources/square.png.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], + "preload/resources/white.mp4": [ + "577f031289beb30fa38824950ea297818bab8e81", + "support" + ], + "preload/resources/white.mp4.sub.headers": [ + "ac876cf9750337fcde99e547f5dc1223bb200772", + "support" + ], "preload/single-download-late-used-preload.html": [ "8476855931b0148754287ca5674000a1b6a9bca2", "testharness" ], "preload/single-download-preload.html": [ - "3ee15736925ad7eed449ff3074353140598461bd", + "2b7af8e911957d6b49246a17ceb284b97981241e", "testharness" ], "presentation-api/OWNERS": [ @@ -603430,7 +610795,7 @@ "testharness" ], "presentation-api/controlling-ua/common.js": [ - "6b788aa76cb93a0454839209bb84aa25cd38011f", + "c6b28c0515da47b6c82a94ed23d88dddf5a51f82", "support" ], "presentation-api/controlling-ua/defaultRequest.https.html": [ @@ -603450,7 +610815,7 @@ "testharness" ], "presentation-api/controlling-ua/idlharness.https.html": [ - "1d4a84cb5b0706a2a9d0332126b960b75c41cc28", + "2c04fce046431ca8e3ddb3eee5428ac99e4c217a", "testharness" ], "presentation-api/controlling-ua/reconnectToPresentation_notfound_error.https.html": [ @@ -603554,7 +610919,7 @@ "support" ], "presentation-api/receiving-ua/support/PresentationConnection_onmessage_receiving-ua.html": [ - "7d7b0bb899d0ab8415c1705f5bee2ca7a9866561", + "da347fdf1c5c44a5974107678caab349add80c2f", "support" ], "presentation-api/receiving-ua/support/PresentationConnection_send_receiving-ua.html": [ @@ -603578,7 +610943,7 @@ "support" ], "presentation-api/receiving-ua/support/idlharness_receiving-ua.html": [ - "adffe1f696cf03f0041383992ab59e47db0ab8c0", + "7d2a67a137e77029179039e34a86a9abe81189d7", "support" ], "presentation-api/receiving-ua/support/iframe.html": [ @@ -603646,7 +611011,7 @@ "testharness" ], "quirks-mode/OWNERS": [ - "3a52efa37cb05c353bb8ce78146c42db6a238b74", + "adc83b19e793491b1c6ea0fd8b46cd9f32e592fc", "support" ], "quirks-mode/active-and-hover-manual.html": [ @@ -603657,6 +611022,10 @@ "01c5b2e89c88d4145429e8860eaa88f728d0601b", "testharness" ], + "quirks-mode/classname-query-after-sibling-adoption.html": [ + "a9fd790c46562057d00b9a042f548d28259042d0", + "testharness" + ], "quirks-mode/hashless-hex-color.html": [ "161c0bfaabbfb59c426e855b9dcfa746ea9e8f95", "testharness" @@ -603698,7 +611067,7 @@ "support" ], "referrer-policy/README.md": [ - "a908472f8b8c083f37da8feb38a198363f75376c", + "da67e3de754801ef0b51b7be9bebc7170769388c", "support" ], "referrer-policy/css-integration/README.md": [ @@ -603737,6 +611106,10 @@ "00233e7d4513c8e3c4b7f7fa60f313ef1b6dbddd", "support" ], + "referrer-policy/generic/link-rel-prefetch.html": [ + "96461340190f20f47a50b7fa4e6cdf9d2a7e09de", + "testharness" + ], "referrer-policy/generic/referrer-policy-test-case.js": [ "20c8273fd2a2cad07d3a607717d69d6ae94cf27e", "support" @@ -611161,6 +618534,94 @@ "3d220a3cc0e6a05fbc40c0ab0e46a2e60162b2be", "testharness" ], + "requestidlecallback/OWNERS": [ + "84f418b8b821f1498bf87feaaf1f07de77720a4e", + "support" + ], + "requestidlecallback/basic.html": [ + "b464e0a43f79867fc07f9843921ef63ad4581a23", + "testharness" + ], + "requestidlecallback/callback-exception.html": [ + "84270b568b8f4d67d04da5df99cd2e0eb8e51977", + "testharness" + ], + "requestidlecallback/callback-idle-periods.html": [ + "65056dde042c8c0a25d3f9c375f0925aabab955f", + "testharness" + ], + "requestidlecallback/callback-iframe.html": [ + "ace7008a593a32ca016685aaa85bda9b4c4bd8c8", + "testharness" + ], + "requestidlecallback/callback-invoked.html": [ + "e7cf5a399d92f1fcb98f6ebb1ed3283d60d2bfe2", + "testharness" + ], + "requestidlecallback/callback-multiple-calls.html": [ + "af6e6a65fda2486ac8669340988b1d57a178e77a", + "testharness" + ], + "requestidlecallback/callback-removed-frame.html": [ + "ff034276659407d2dea91d2b0ed0e5919b875904", + "testharness" + ], + "requestidlecallback/callback-suspended.html": [ + "fe63f3ea133dbdb48b1a525a40d34a231e9a3789", + "testharness" + ], + "requestidlecallback/callback-timeout-with-raf.html": [ + "febb81c38f530c81d9e9837df2c6d603225ecfd1", + "testharness" + ], + "requestidlecallback/callback-timeout.html": [ + "ba76964575cdf9b433f26c8a5d7a8183ab5c16e9", + "testharness" + ], + "requestidlecallback/callback-xhr-sync.html": [ + "272a688feaefc3c1ebab315ae9f4633f11a966f1", + "testharness" + ], + "requestidlecallback/cancel-invoked.html": [ + "30787d765fa435c1392bd852559042bf3c2e2553", + "testharness" + ], + "requestidlecallback/idlharness.html": [ + "520ee58982b43875f3caa08d7f46b9c6311be0b6", + "testharness" + ], + "requestidlecallback/resources/post_name_on_load.html": [ + "4c2db9979bcf68c61e62a805d59d95b7d164d9af", + "support" + ], + "resize-observer/OWNERS": [ + "59d77bdffdf0b2a5132447d23642f7a71bd3ba71", + "support" + ], + "resize-observer/eventloop.html": [ + "f356e188c1a873c9058c17143463c8397ed33689", + "testharness" + ], + "resize-observer/notify.html": [ + "29f22b18a6ae894b80bec599dd71fc5050dbb292", + "testharness" + ], + "resize-observer/observe.html": [ + "d86de600a53f4a804b0b88b751ca764d97c4c24a", + "testharness" + ], + "resize-observer/resources/iframe.html": [ + "e404bac83361b96185f5351784dbe56a4ef0d305", + "support" + ], + "resize-observer/resources/resizeTestHelper.js": [ + "17aac2df7ca1362a4ce443663b642362e87cc150", + "support" + ], + "resize-observer/svg.html": [ + "fb544abe50fddcd302d000e08bc822d21a31df6f", + "testharness" + ], "resource-timing/OWNERS": [ "8fd9729d4d10437b0a46b5c0c00729b37f17b361", "support" @@ -611170,7 +618631,7 @@ "support" ], "resource-timing/idlharness.html": [ - "c2582fcd7d9cf40d10d86589c341789ba94a68bd", + "f6ff9054d4412a6089ff182c9df0dcf4626dab21", "testharness" ], "resource-timing/iframe-setdomain.sub.html": [ @@ -611237,6 +618698,10 @@ "9e8051a2ff8fff72b36ed1cecb61f9e7bba29071", "support" ], + "resource-timing/resources/blue.png": [ + "99949c515749e66f471c3589ee7a0ef518aaccb5", + "support" + ], "resource-timing/resources/fake_responses.html": [ "c942abc1e8c1672935ffc8ce34821891345bacb9", "support" @@ -611246,7 +618711,7 @@ "support" ], "resource-timing/resources/gzip_xml.py": [ - "dfddf3eb3e80d77163ae12a5df71ed3e9559722a", + "cf637a4389fd259dee3a2df56194a68b3744b4c6", "support" ], "resource-timing/resources/iframe_TAO_match_origin.html": [ @@ -611317,12 +618782,16 @@ "59692fb2ebe890d65acba54aa2f814fcf9b46d39", "support" ], + "resource-timing/single-entry-per-resource.html": [ + "e23e9cab8d42a3bb6b0635cd3916d9131ccc6ba2", + "testharness" + ], "resource-timing/test_resource_timing.html": [ "16c8af27032f9babbc6b5443a033a44d5597ff1e", "testharness" ], "resource-timing/test_resource_timing.js": [ - "212dd1f05242ce9e850698b0c9f7eff085313838", + "504f20a00b7be9c3b15666dfe34df02856a8bc72", "support" ], "screen-orientation/OWNERS": [ @@ -611593,6 +619062,10 @@ "adcc65d54d59715ee740b2436486058ec578b63a", "testharness" ], + "selection/addRange.htm": [ + "00a3f3a9ffd0976d98d4857632e11fac6f184cb4", + "testharness" + ], "selection/addRange.js": [ "36982e3d91452822913d41c41c36d28339cab8a2", "support" @@ -611613,6 +619086,10 @@ "a66ab339d964529b3ba8a9af48eb26a4b9b55028", "testharness" ], + "selection/collapse.htm": [ + "7827a1438470252437440cedde0a0acf17713f15", + "testharness" + ], "selection/collapse.js": [ "fdeaf514b240bdeadd89829e3321465d3e376926", "support" @@ -611658,7 +619135,7 @@ "testharness" ], "selection/interfaces.html": [ - "55d32a5d2a362a2d7bd0ddc580fa24180f3d3579", + "1fb2684472fc29c5460b709908b6f0c4f779f1c1", "testharness" ], "selection/isCollapsed.html": [ @@ -611666,7 +619143,7 @@ "testharness" ], "selection/removeAllRanges.html": [ - "bd203d8878c4de59de476fe6fa7417bd2678dfcc", + "c1ed8afc2f1ee80f5131d1ead6930c9895a2a6f3", "testharness" ], "selection/removeRange.html": [ @@ -611726,7 +619203,7 @@ "support" ], "server-timing/resources/blue.png.sub.headers": [ - "d14ff7ce6dce67417c14192a89f4fe2d31c099a7", + "7ae842dc0c2e6a26e68aea5867214eb2dbd2b08b", "support" ], "server-timing/resources/green.png": [ @@ -611734,15 +619211,15 @@ "support" ], "server-timing/resources/green.png.sub.headers": [ - "e2fca01ea5a9c31731a1d5c4199849bf728da892", + "827dfe4dedd1d3854048b1b13e336200a05cc0da", "support" ], "server-timing/test_server_timing.html": [ - "eab2a2be6984346d7fd83c8f3dcc99b2f3e09a08", + "2c8420d5bc6ac45923f0c5cbc43c6bd88caa877c", "testharness" ], "server-timing/test_server_timing.html.sub.headers": [ - "c49030e9c6dabb55bff24b633b6660212bd2ecca", + "ffca8e9271c6760a63ca331c541799a537411994", "support" ], "service-workers/OWNERS": [ @@ -611962,7 +619439,7 @@ "testharness" ], "service-workers/service-worker/ServiceWorkerGlobalScope/resources/close-worker.js": [ - "559815205e99f825fdc0a0f2564e7e25586f3c05", + "4c116d7223d6d76ed2baa2cd39e2002f45d58171", "support" ], "service-workers/service-worker/ServiceWorkerGlobalScope/resources/error-worker.js": [ @@ -612062,13 +619539,17 @@ "testharness" ], "service-workers/service-worker/claim-fetch.https.html": [ - "adec77bbeec2ec9ea7da3aba94375bc92e1b4f6f", + "69100d1070d261e9819217fd7a6531f48b343e14", "testharness" ], "service-workers/service-worker/claim-not-using-registration.https.html": [ "0a87c373f6ad15e8901487e71414662af5b2cee3", "testharness" ], + "service-workers/service-worker/claim-shared-worker-fetch.https.html": [ + "6393cb102990f971bf011fdcbbd1c5d7c07d438c", + "testharness" + ], "service-workers/service-worker/claim-using-registration.https.html": [ "5ddaf9e70e6873bfe5029f7d5ee12c1a93356ab6", "testharness" @@ -612077,6 +619558,10 @@ "dac61fcadc94d01fa1f46ac65d81c0405d90ecd3", "testharness" ], + "service-workers/service-worker/claim-worker-fetch.https.html": [ + "2088f1d6974ad87503c950b5df665725f629e80d", + "testharness" + ], "service-workers/service-worker/client-id.https.html": [ "bc07ff54eaf1fecc2a46ebcf34059590ac8c866d", "testharness" @@ -612098,7 +619583,7 @@ "testharness" ], "service-workers/service-worker/clients-matchall-client-types.https.html": [ - "3219697b2d6fb9694ad4db1e2d157807b5e5dbcb", + "7c522e90fd156ba8b044acd4e606a0242b93f11a", "testharness" ], "service-workers/service-worker/clients-matchall-exact-controller.https.html": [ @@ -612170,7 +619655,11 @@ "testharness" ], "service-workers/service-worker/fetch-event-redirect.https.html": [ - "2a6f2d4f818ac325edd9c69c1b08801961728b20", + "48c8d37bcdc37f83d5cfec4e1baba0f8aa1a24e4", + "testharness" + ], + "service-workers/service-worker/fetch-event-referrer-policy.https.html": [ + "48c31881c1933ae05cbd3d782754c5202c6b055c", "testharness" ], "service-workers/service-worker/fetch-event-respond-with-argument.https.html": [ @@ -612202,11 +619691,11 @@ "testharness" ], "service-workers/service-worker/fetch-event.https.html": [ - "9f991210c315a2d436f760b099a43871692c64c4", + "8fb51ce7439e3b8ee21eb5bc8924b2db884fd412", "testharness" ], "service-workers/service-worker/fetch-frame-resource.https.html": [ - "77709ff94cfaeec0b01e157714244d1b568c6b18", + "fec588cba5090da6bb4914c6719b8e4076a57c82", "testharness" ], "service-workers/service-worker/fetch-header-visibility.https.html": [ @@ -612258,7 +619747,7 @@ "testharness" ], "service-workers/service-worker/fetch-request-xhr.https.html": [ - "088581ef6036d3cc8688d5974461d8e5b8ed1cfd", + "b30618dfe4c10370865229cbe9606cce8ed42040", "testharness" ], "service-workers/service-worker/fetch-response-taint.https.html": [ @@ -612305,6 +619794,14 @@ "6cafc3245c88f7d96f6a4672b327d3b58ee4a0ee", "testharness" ], + "service-workers/service-worker/immutable-prototype-serviceworker.https.html": [ + "5c17042fa54cd1fdba6f7aae513412d4a223b432", + "testharness" + ], + "service-workers/service-worker/import-scripts-redirect.https.html": [ + "ad5ca174b55222c41d1dc1a21fe0bc070357062b", + "testharness" + ], "service-workers/service-worker/import-scripts-resource-map.https.html": [ "6bc46467c667f942fd30de063806474e8c94cff0", "testharness" @@ -612325,8 +619822,12 @@ "dda1a1967e6e0be64b9bd2198a08aa0429e185ff", "testharness" ], - "service-workers/service-worker/interfaces.https.html": [ - "f5e18c249ad8264548923f3c875ffeff523ab424", + "service-workers/service-worker/interfaces-sw.https.html": [ + "c6ea8c330c7886581ba57314cc65a707b25b44f3", + "testharness" + ], + "service-workers/service-worker/interfaces-window.https.html": [ + "c596bb509623d00646cd8c1420394f7de8ff742d", "testharness" ], "service-workers/service-worker/invalid-blobtype.https.html": [ @@ -612341,6 +619842,34 @@ "3c75caa66d3906602d10b07ff22e7d0f210cfee9", "testharness" ], + "service-workers/service-worker/link-element-register-basic.https.html": [ + "c38709eafae1c43fb6de9c90ad41634bfb749d14", + "testharness" + ], + "service-workers/service-worker/link-element-register-mime-types.https.html": [ + "7f09c63104e39c76638e9193ac07e383ac0435ad", + "testharness" + ], + "service-workers/service-worker/link-element-register-scope.https.html": [ + "c29407cfdce522c6a576d866ece6fffe831c85ac", + "testharness" + ], + "service-workers/service-worker/link-element-register-script-url.https.html": [ + "f3920a47686a1e4792f097f52cf51531dccd58a8", + "testharness" + ], + "service-workers/service-worker/link-element-register-script.https.html": [ + "9751dfe02dff339124352311115e61b19e7edf66", + "testharness" + ], + "service-workers/service-worker/link-element-register-security-error.https.html": [ + "026a444eb0ff60e7885f70c7a4c3fa03a2510de3", + "testharness" + ], + "service-workers/service-worker/mime-sniffing.https.html": [ + "d61a859a111dea758efb91480817fa1a029c152b", + "testharness" + ], "service-workers/service-worker/multi-globals/current/current.https.html": [ "2f7a23c1a4dfa7feb121e55d13ff8a0980165b37", "support" @@ -612450,7 +619979,7 @@ "support" ], "service-workers/service-worker/navigation-preload/resources/redirect-scope.py": [ - "2083b2fadd7fd759adf1c36a2522f116dacb5d16", + "dfc8da93b28871eb02d0d4f357d12fa2b320efe9", "support" ], "service-workers/service-worker/navigation-preload/resources/redirect-worker.js": [ @@ -612498,7 +620027,7 @@ "testharness" ], "service-workers/service-worker/opaque-response-preloaded.https.html": [ - "4441c255d614ef6d898873f81aa9e5090fbf2875", + "9b82b28618ed405aa5dddd35341a076aceea91d6", "testharness" ], "service-workers/service-worker/performance-timeline.https.html": [ @@ -612553,10 +620082,6 @@ "785f0ea662160a5b7b3fe6a7580e62f793e100cf", "testharness" ], - "service-workers/service-worker/register-link-element.https.html": [ - "fcd2a244ad1f12c954c231c479f89beaa3c145e6", - "testharness" - ], "service-workers/service-worker/register-link-header.https.html": [ "fa97635d3a16a0f2a0a0bae8e4b81c8b5100d9cd", "testharness" @@ -612569,6 +620094,10 @@ "c729f05001dc2f4d2958010bab806e474507c934", "testharness" ], + "service-workers/service-worker/registration-basic.https.html": [ + "23c73f4e971d567cc62a3b9f3e478e87bb065691", + "testharness" + ], "service-workers/service-worker/registration-end-to-end.https.html": [ "b7840bdb1c3ee304996942465b52644919f11422", "testharness" @@ -612581,12 +620110,32 @@ "6d11b9ecf339e6e476fe594d5cb4e0873b0845d1", "testharness" ], + "service-workers/service-worker/registration-mime-types.https.html": [ + "f96e0103bef5163690b4bc837b5fc6adf6163527", + "testharness" + ], + "service-workers/service-worker/registration-scope.https.html": [ + "8e509079ae4fc3ba0e3fcf60f4a5d3efd137c7f0", + "testharness" + ], + "service-workers/service-worker/registration-script-url.https.html": [ + "5bb7d7fce7eb1e6e96975c7b657ee5a463f8d9df", + "testharness" + ], + "service-workers/service-worker/registration-script.https.html": [ + "afd8bfc2343053af9d424fc25af012cfc9de46f1", + "testharness" + ], + "service-workers/service-worker/registration-security-error.https.html": [ + "c0d8abc53c14cefb1e58e8a3e7149b8bdae062a0", + "testharness" + ], "service-workers/service-worker/registration-service-worker-attributes.https.html": [ "04a6fd8d3ff62fa4d969b629eb5f541c6447ae12", "testharness" ], - "service-workers/service-worker/registration.https.html": [ - "0a06c368a14c008c385c9df3cde35f090d96d58b", + "service-workers/service-worker/registration-updateviacache.https.html": [ + "90c97975a11fc639e775d26e9d0354d514ae7a9b", "testharness" ], "service-workers/service-worker/rejections.https.html": [ @@ -612629,10 +620178,34 @@ "0ddb4f1cf84729ed673295719ec58a3e5d600a12", "support" ], + "service-workers/service-worker/resources/bytecheck-worker-imported-script.py": [ + "b488558e1bb16901b0a9b60f40aeddab9c464021", + "support" + ], + "service-workers/service-worker/resources/bytecheck-worker.py": [ + "11a8883c24628b25f3faa1470da05caddd5eb094", + "support" + ], + "service-workers/service-worker/resources/claim-shared-worker-fetch-iframe.html": [ + "2f7b5ec149446b2a81044e8b50ccc644facb4e42", + "support" + ], + "service-workers/service-worker/resources/claim-shared-worker-fetch-worker.js": [ + "f5b8d26920aecfde1ee34657aa6006304c7da5a3", + "support" + ], "service-workers/service-worker/resources/claim-with-redirect-iframe.html": [ "fdc472f4e9a591f0b471174b2aa1783107731f49", "support" ], + "service-workers/service-worker/resources/claim-worker-fetch-iframe.html": [ + "e72805025860524858f2518ef6ce671180d6107b", + "support" + ], + "service-workers/service-worker/resources/claim-worker-fetch-worker.js": [ + "39b8e09aee52800a3d01effd3d7ca19c1d926d30", + "support" + ], "service-workers/service-worker/resources/claim-worker.js": [ "e779a28c42928ff10219073171c1216c6623b4d4", "support" @@ -612754,7 +620327,7 @@ "support" ], "service-workers/service-worker/resources/extendable-event-async-waituntil.js": [ - "6974e3550cb50b5789c10681abf0a1174bc1a3b8", + "1c4145015d38589beea2e5a6850bb4f97f773e0a", "support" ], "service-workers/service-worker/resources/extendable-event-waituntil.js": [ @@ -612774,7 +620347,7 @@ "support" ], "service-workers/service-worker/resources/fetch-canvas-tainting-iframe.html": [ - "04c234d3cc210d24962ce2b7cbbefcbd16d335e8", + "aee62d5b6ee22664c493036c879ed8d530b5ba1d", "support" ], "service-workers/service-worker/resources/fetch-cors-xhr-iframe.html": [ @@ -612805,10 +620378,6 @@ "95ae0c97941a6b1645690e8504e7de8c6be634b1", "support" ], - "service-workers/service-worker/resources/fetch-event-redirect-iframe.html": [ - "f24007259baeab7e9a6932d35e0b2a5305b159a4", - "support" - ], "service-workers/service-worker/resources/fetch-event-respond-with-argument-iframe.html": [ "4a9d7e189909b5adfdd4d1c0ebddb7cd90fde159", "support" @@ -612934,7 +620503,7 @@ "support" ], "service-workers/service-worker/resources/fetch-request-xhr-iframe.https.html": [ - "3e514258608705763ee932821bee89696be1d2e9", + "72a1a0895f9b511075f77c618c8ab0aabd177346", "support" ], "service-workers/service-worker/resources/fetch-request-xhr-sync-iframe.html": [ @@ -612954,7 +620523,7 @@ "support" ], "service-workers/service-worker/resources/fetch-response-xhr-iframe.https.html": [ - "5b29c0807de1229631a27ad3c9d66f288631938a", + "8a7db09b6c8f89414e6310c3744361f545f44758", "support" ], "service-workers/service-worker/resources/fetch-response-xhr-worker.js": [ @@ -613017,6 +620586,10 @@ "9ea5eb8893ae3d75c18566f5862c66df6bc831c0", "support" ], + "service-workers/service-worker/resources/immutable-prototype-serviceworker.js": [ + "0a428649e0ceaaacdea5d156e829c63668bc3f72", + "support" + ], "service-workers/service-worker/resources/import-mime-type-worker.py": [ "7881cd81f7fe54bf3be799f3549098c78b896574", "support" @@ -613025,6 +620598,14 @@ "95d29c9b8749cabf795d9a867e260827a8360640", "support" ], + "service-workers/service-worker/resources/import-scripts-redirect-import.js": [ + "34472e2e6dac507ca6c937f3ce872d0b5718b89a", + "support" + ], + "service-workers/service-worker/resources/import-scripts-redirect-worker.js": [ + "9507f4a23a9f54a898139c19e62fdf6ce3b21690", + "support" + ], "service-workers/service-worker/resources/import-scripts-resource-map-worker.js": [ "bafc81b044c2a52f4ceefcd15a0b8b3c7553146e", "support" @@ -613049,12 +620630,12 @@ "9682ae01719d07e5713307a26b1b825087c4cf65", "support" ], - "service-workers/service-worker/resources/interfaces-worker.sub.js": [ - "393be6f93713e198afc5d2b7e6d229a39d591426", + "service-workers/service-worker/resources/interfaces-idls.js": [ + "881448e41003f3e942e6a0b8220e39db279da5cf", "support" ], - "service-workers/service-worker/resources/interfaces.js": [ - "87d2be95591f013b611a30c6251b6d49099e377d", + "service-workers/service-worker/resources/interfaces-worker.sub.js": [ + "1cb237ff00a54414a6e4010f1288be51799a52d5", "support" ], "service-workers/service-worker/resources/invalid-blobtype-iframe.https.html": [ @@ -613105,6 +620686,10 @@ "a9f19c8f8f6908c4a4732bbd0f6b2f3d19401909", "support" ], + "service-workers/service-worker/resources/mime-sniffing-worker.js": [ + "b37f174839f3fa92cb46835d3574e547de369b88", + "support" + ], "service-workers/service-worker/resources/mime-type-worker.py": [ "72d9b6815717b9405835262abb40147d0d4170f0", "support" @@ -613130,15 +620715,15 @@ "support" ], "service-workers/service-worker/resources/navigation-redirect-out-scope.py": [ - "8a4436e53f60b74062f0788bce089dc707f61388", + "c8b62fd6752deca11449831db271c3d8ec59874a", "support" ], "service-workers/service-worker/resources/navigation-redirect-scope1.py": [ - "8a4436e53f60b74062f0788bce089dc707f61388", + "c8b62fd6752deca11449831db271c3d8ec59874a", "support" ], "service-workers/service-worker/resources/navigation-redirect-scope2.py": [ - "8a4436e53f60b74062f0788bce089dc707f61388", + "c8b62fd6752deca11449831db271c3d8ec59874a", "support" ], "service-workers/service-worker/resources/navigation-redirect-to-http-iframe.html": [ @@ -613201,12 +620786,16 @@ "d81c494e7c0aedc7921c6d5a8c7a17b9b1f5a8aa", "support" ], - "service-workers/service-worker/resources/opaque-response-preloaded-iframe.html": [ - "df5f1602891ffd5344dfcdf8d2e406f27b3f54e8", + "service-workers/service-worker/resources/opaque-response-being-preloaded-xhr.html": [ + "d42457f8fdee9f0608f3cccc37872cbed3fe4eb9", "support" ], "service-workers/service-worker/resources/opaque-response-preloaded-worker.js": [ - "84b0397640b74bc2cd5d8cd4fb90eb29dd5e032b", + "132a7dee868b03130d40611eb6b3420dbba35552", + "support" + ], + "service-workers/service-worker/resources/opaque-response-preloaded-xhr.html": [ + "c53a1ee705cbe97b7843705b0834eafc8a890056", "support" ], "service-workers/service-worker/resources/other.html": [ @@ -613265,8 +620854,28 @@ "b137bd995f0ca7b0ecc6ee6f5dc87a3a4e524364", "support" ], - "service-workers/service-worker/resources/registration-tests.js": [ - "bdb31335f8d15de455108e0186183f1acdaef41e", + "service-workers/service-worker/resources/registration-tests-basic.js": [ + "c20d86c2cc5de592c60524689411ec1db0b0c9ab", + "support" + ], + "service-workers/service-worker/resources/registration-tests-mime-types.js": [ + "6b0eb1390ec3b00a6625c4a74feb2cd68c6b0e72", + "support" + ], + "service-workers/service-worker/resources/registration-tests-scope.js": [ + "370f57a2cd56d39a2f1f60b61c9b6c54b3f512ed", + "support" + ], + "service-workers/service-worker/resources/registration-tests-script-url.js": [ + "88678c58dcfa4e5355d8f96607f92c81d7d3c5d4", + "support" + ], + "service-workers/service-worker/resources/registration-tests-script.js": [ + "3f153749950ea228d110e0bfcab51c339e734e38", + "support" + ], + "service-workers/service-worker/resources/registration-tests-security-error.js": [ + "9bd12c8a1819a2d2c00e49df61972307b63a1a73", "support" ], "service-workers/service-worker/resources/registration-worker.js": [ @@ -613338,7 +620947,7 @@ "support" ], "service-workers/service-worker/resources/skip-waiting-installed-worker.js": [ - "6c6338c7aad6dfc6ef45458fb40441a04820aa6d", + "96561dc391ccdb01200c468d0af36efa0f485705", "support" ], "service-workers/service-worker/resources/skip-waiting-worker.js": [ @@ -613354,7 +620963,7 @@ "support" ], "service-workers/service-worker/resources/test-helpers.sub.js": [ - "113528ec940b15e9d7b6b982b6301c762a22b345", + "d1fae09808cce3b97e13ac73e7b781c5b51592a6", "support" ], "service-workers/service-worker/resources/testharness-helpers.js": [ @@ -613369,6 +620978,14 @@ "cc8130f60240234fa216778dac70dd34fe4b2374", "support" ], + "service-workers/service-worker/resources/update-max-aged-worker-imported-script.py": [ + "6a70122d9af961de27dd9958f86a92c0d7ff7f7e", + "support" + ], + "service-workers/service-worker/resources/update-max-aged-worker.py": [ + "dc5784aa563f93a2ebd8c57acddefe8c3dcc1c3f", + "support" + ], "service-workers/service-worker/resources/update-nocookie-worker.py": [ "0790be63a2023cccf03f84b2e5c8f5daa7958dd0", "support" @@ -613438,7 +621055,7 @@ "testharness" ], "service-workers/service-worker/skip-waiting-installed.https.html": [ - "c635baadef3503e526f475132584da3f161b2d0a", + "00c260790547216d53e663404cf7cf9ecc7aa913", "testharness" ], "service-workers/service-worker/skip-waiting-using-registration.https.html": [ @@ -613493,6 +621110,10 @@ "9f43ba359c4d564f75d4ce4b6a040aac6ba50d5b", "testharness" ], + "service-workers/service-worker/update-bytecheck.https.html": [ + "ab13a5489f964de56db2fe25c5895a8a55ab7d88", + "testharness" + ], "service-workers/service-worker/update-recovery.https.html": [ "aac5705d6844e4a33200418504adb57053a45be2", "testharness" @@ -613750,7 +621371,7 @@ "testharness" ], "shadow-dom/Extensions-to-Event-Interface.html": [ - "ab0f4124c0d8d7e0bdffbb0300d1b6d1b57d7dda", + "b8a8b22197eb1c17e9cea05c73826211dd2f2532", "testharness" ], "shadow-dom/HTMLSlotElement-interface.html": [ @@ -613801,8 +621422,16 @@ "d8b41c5d5bd80cb9a680506d5c3170f30b10cae1", "testharness" ], + "shadow-dom/event-post-dispatch.html": [ + "ab40bb984bbbf8acad097fee7bfe11302969ac0f", + "testharness" + ], "shadow-dom/event-with-related-target.html": [ - "d5e800955038a9998d9ce7db7405d3c6b1c15903", + "572ddb9624ba8871d93cb13fad830f1acc8d4cac", + "testharness" + ], + "shadow-dom/historical.html": [ + "1469992db34a25397dc3d5a5e1eb600e8afcf71b", "testharness" ], "shadow-dom/leaktests/get-elements.html": [ @@ -613822,7 +621451,7 @@ "support" ], "shadow-dom/resources/event-path-test-helpers.js": [ - "cb774b9ebdd143d2ba67be3d6b8d44a73b61d4a9", + "0b3340091c93e37362c5008fded9ac4efd042f35", "support" ], "shadow-dom/resources/shadow-dom-utils.js": [ @@ -613837,6 +621466,10 @@ "b6073e01e2544ffe2a8bb26946ac1cb5538ed195", "testharness" ], + "shadow-dom/slotchange-customelements.html": [ + "8071607531cdb7c3881e08f5557ccd9a7ecf4e45", + "testharness" + ], "shadow-dom/slotchange-event.html": [ "c72d9d156bf6772c3e5ea054310810b34a049b94", "testharness" @@ -614141,6 +621774,22 @@ "bc28599cea839c13daf4739168f8c1ea42526050", "testharness" ], + "speech-api/OWNERS": [ + "025f9f081f215505e0e55838d4afe136aba573cf", + "support" + ], + "speech-api/SpeechSynthesis-speak-ownership.html": [ + "6d72bb9c89ef527709fb01608e8b4d7e7bb7ccf7", + "testharness" + ], + "speech-api/SpeechSynthesis-speak-twice.html": [ + "60eaf93103abe422222307b3c4172f2a0fabee57", + "testharness" + ], + "speech-api/historical.html": [ + "45bfdcce349e2cb28611520b006c060347fdf58d", + "testharness" + ], "staticrange/OWNERS": [ "290c71b49f1147778f51898e114db808b4568549", "support" @@ -614169,14 +621818,14 @@ "76fa61c3a87485266a7f9d6f66e5d08bb7881ff7", "testharness" ], + "storage/interfaces.https.worker.js": [ + "da11cf56486fe08214f91d181b3a19775f6aa59c", + "testharness" + ], "storage/interfaces.idl": [ "d3ac8afefe85ca580a514349060b8019f6fccc36", "support" ], - "storage/interfaces.worker.js": [ - "da11cf56486fe08214f91d181b3a19775f6aa59c", - "testharness" - ], "storage/opaque-origin.https.html": [ "6ce5a9b14d80030f0adfa1808857294e8c923cb2", "testharness" @@ -614246,7 +621895,7 @@ "testharness" ], "streams/byte-length-queuing-strategy.js": [ - "e4b248c7de8b85df9ed01d707cf2dfcfd9a5bcb0", + "7ff2e4b0e5e51cd7a2769f4d39cd4eb7e5e1c8bd", "support" ], "streams/byte-length-queuing-strategy.serviceworker.https.html": [ @@ -614266,7 +621915,7 @@ "testharness" ], "streams/count-queuing-strategy.js": [ - "33f8db7addcc8e01d798b9199b6d78ad35d8a243", + "0668d6cba799e52f793778c92dce2e7c572712db", "support" ], "streams/count-queuing-strategy.serviceworker.https.html": [ @@ -614278,7 +621927,7 @@ "testharness" ], "streams/generate-test-wrappers.js": [ - "729d86f589af914bf59f046f40e3d98b5f37efc7", + "f40527e4036f235c2268e9f9c5b7267f2b0e3799", "support" ], "streams/piping/close-propagation-backward.dedicatedworker.html": [ @@ -614430,7 +622079,7 @@ "testharness" ], "streams/piping/pipe-through.js": [ - "bf2cebbca84051b446f728d92c065869207299f2", + "df36e48e468e526d2d77e80906d62d1ec8e6d276", "support" ], "streams/piping/pipe-through.serviceworker.https.html": [ @@ -614461,6 +622110,46 @@ "005490d4fc62797e432b03c33c349d9136815625", "testharness" ], + "streams/readable-byte-streams/brand-checks.dedicatedworker.html": [ + "b0f32b03a352ef7ac1940eda90414a5f65980194", + "testharness" + ], + "streams/readable-byte-streams/brand-checks.html": [ + "317e5c5cc2eedcc6902e8cc44567ea59e7f173ac", + "testharness" + ], + "streams/readable-byte-streams/brand-checks.js": [ + "15d95be48677eae31eece31a54d2d63fdf64c1bc", + "support" + ], + "streams/readable-byte-streams/brand-checks.serviceworker.https.html": [ + "c8279e28f5cd80d454d884154ae883a8c965705f", + "testharness" + ], + "streams/readable-byte-streams/brand-checks.sharedworker.html": [ + "6f3911baf77e26af2d7e7d7472caae4df6d5a27e", + "testharness" + ], + "streams/readable-byte-streams/detached-buffers.dedicatedworker.html": [ + "8742d541924382fb06a3258d6723f22ddf299045", + "testharness" + ], + "streams/readable-byte-streams/detached-buffers.html": [ + "9eb042e92c7592d9a5a233469d491d61619a9045", + "testharness" + ], + "streams/readable-byte-streams/detached-buffers.js": [ + "d593ac7499f206c20f8735e7b8c62cfed421bd8f", + "support" + ], + "streams/readable-byte-streams/detached-buffers.serviceworker.https.html": [ + "dbc50df2acf0108c88437262608314d1417f6a40", + "testharness" + ], + "streams/readable-byte-streams/detached-buffers.sharedworker.html": [ + "eb113a11109828edf35885b21e4e57fd3ef84368", + "testharness" + ], "streams/readable-byte-streams/general.dedicatedworker.html": [ "8583d80450b090c16ed0795170340d040449bbc1", "testharness" @@ -614470,7 +622159,7 @@ "testharness" ], "streams/readable-byte-streams/general.js": [ - "e8d971fb6491da06f9ceedb1b6cd6a5c06b6f3b4", + "4617fdb8c1ef68600f476dadcf47090100fc9ce8", "support" ], "streams/readable-byte-streams/general.serviceworker.https.html": [ @@ -614481,6 +622170,26 @@ "44f9ceaa3bfc9d8b92885997d322486bd0f237a6", "testharness" ], + "streams/readable-byte-streams/properties.dedicatedworker.html": [ + "0d766237560b16ddb1bfcd02e701089132f1b3ec", + "testharness" + ], + "streams/readable-byte-streams/properties.html": [ + "5daad347136ccd82e952ba0f29894c4634ab4e6d", + "testharness" + ], + "streams/readable-byte-streams/properties.js": [ + "4fd71882c2a1b8c35fb24a10599a6b90a0f32730", + "support" + ], + "streams/readable-byte-streams/properties.serviceworker.https.html": [ + "2ef8fc878249c429a89e0748e6a98fac47c1a99a", + "testharness" + ], + "streams/readable-byte-streams/properties.sharedworker.html": [ + "5c855e897d1143092ecc10b58268e6a576882184", + "testharness" + ], "streams/readable-streams/bad-strategies.dedicatedworker.html": [ "269e32606201603b326048f42573c8535c060a18", "testharness" @@ -614530,7 +622239,7 @@ "testharness" ], "streams/readable-streams/brand-checks.js": [ - "c8ffdcf56bfddf5792af6eed627db55d7df3b444", + "c4f26a5247feb64d9e1a2a6872e1a6a5819e4a5b", "support" ], "streams/readable-streams/brand-checks.serviceworker.https.html": [ @@ -614590,7 +622299,7 @@ "testharness" ], "streams/readable-streams/default-reader.js": [ - "4bf42e5e2f45275c98122fd6e884d7af0dee1e77", + "8746e2c94c2bc28431aefaae71d83f87c5738cde", "support" ], "streams/readable-streams/default-reader.serviceworker.https.html": [ @@ -614650,7 +622359,7 @@ "testharness" ], "streams/readable-streams/general.js": [ - "ef0060b256dfde2195f43529a1c1a0c63e290f16", + "e5ea14274f267ba4579627dd12b81e0863271328", "support" ], "streams/readable-streams/general.serviceworker.https.html": [ @@ -614661,26 +622370,6 @@ "44f9ceaa3bfc9d8b92885997d322486bd0f237a6", "testharness" ], - "streams/readable-streams/pipe-through.dedicatedworker.html": [ - "ed05dd7416cc07e178e481375c2372ce1094905e", - "testharness" - ], - "streams/readable-streams/pipe-through.html": [ - "fddee6be61036c7fcd88a2e4661fbf5b5f796a18", - "testharness" - ], - "streams/readable-streams/pipe-through.js": [ - "df79dbb2844e85b65abc5ffb356aedc833b81b0a", - "support" - ], - "streams/readable-streams/pipe-through.serviceworker.https.html": [ - "e6604dc4e7f4404ee9dea5ab237fb4636bf9e85a", - "testharness" - ], - "streams/readable-streams/pipe-through.sharedworker.html": [ - "8ecb019e754fd4239cb35c27787897efc2dacccb", - "testharness" - ], "streams/readable-streams/tee.dedicatedworker.html": [ "028f2d402a74140b40a9a3eace6aad1cc862bb64", "testharness" @@ -614734,7 +622423,7 @@ "support" ], "streams/resources/test-utils.js": [ - "099c7bce47262455ad4c51e59a2c92f5f6a9eb9c", + "a05a620307acb1e7cadba523b8a3c6d2de7e1748", "support" ], "streams/writable-streams/aborting.dedicatedworker.html": [ @@ -614802,11 +622491,11 @@ "testharness" ], "streams/writable-streams/brand-checks.html": [ - "884307be73730033fe07625cdecd6487468c4f96", + "317e5c5cc2eedcc6902e8cc44567ea59e7f173ac", "testharness" ], "streams/writable-streams/brand-checks.js": [ - "a9889b29e8265b8d236e54182df9c9052d9ae38d", + "d88b00326d9b6d78e0ce9955e3e47ae24f8feb1f", "support" ], "streams/writable-streams/brand-checks.serviceworker.https.html": [ @@ -614966,7 +622655,7 @@ "testharness" ], "streams/writable-streams/properties.js": [ - "651d62037ceff95818e8cd33c078a31e09dafd5c", + "cc5f851c607b8dc681cbdacb20362689d7259dea", "support" ], "streams/writable-streams/properties.serviceworker.https.html": [ @@ -615085,6 +622774,102 @@ "41feabebc138539a05d4b0b8833bff7440f43fd8", "support" ], + "subresource-integrity/ed25519-broken-signature.js": [ + "1db69de30b08f2d59395738881958b0895822d65", + "support" + ], + "subresource-integrity/ed25519-broken-signature.js.headers": [ + "3d1277ddbda9e56d08f86c2e147dfb442c60c581", + "support" + ], + "subresource-integrity/ed25519-multi-signature-headers.js": [ + "c6e2251496f85335f692107b57ccca1104547532", + "support" + ], + "subresource-integrity/ed25519-multi-signature-headers.js.headers": [ + "936c168e51d337e5a6d9dbb668d426532c2ac653", + "support" + ], + "subresource-integrity/ed25519-multi-signature.js": [ + "c6e2251496f85335f692107b57ccca1104547532", + "support" + ], + "subresource-integrity/ed25519-multi-signature.js.headers": [ + "49252675b2b19591f0dfb56a79c301ebf9c1fff2", + "support" + ], + "subresource-integrity/ed25519-multi-signature2.js": [ + "c6e2251496f85335f692107b57ccca1104547532", + "support" + ], + "subresource-integrity/ed25519-multi-signature2.js.headers": [ + "f2b9947e5be6f6420ab2d39f382fef0a5af913c3", + "support" + ], + "subresource-integrity/ed25519-no-signature.js": [ + "ef0d001cf032728c58832a0c149c0c9107927218", + "support" + ], + "subresource-integrity/ed25519-signature.js": [ + "c6e2251496f85335f692107b57ccca1104547532", + "support" + ], + "subresource-integrity/ed25519-signature.js.headers": [ + "3d1277ddbda9e56d08f86c2e147dfb442c60c581", + "support" + ], + "subresource-integrity/ed25519-signature2.js": [ + "c6e2251496f85335f692107b57ccca1104547532", + "support" + ], + "subresource-integrity/ed25519-signature2.js.headers": [ + "ccefb74016c47ae4e0a1e6d5d5da5300c738ffb1", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature-headers.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature-headers.css.headers": [ + "a48ada08c966ab04da44e19be8e49e79c29e758f", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature.css.headers": [ + "947c2af5229677b9c4b38b1e67384d87ab280902", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature2.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style-multi-signature2.css.headers": [ + "841a5408db8f751788e8173d2a29887d44175a33", + "support" + ], + "subresource-integrity/ed25519-style-no-signature.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style-wrong-signature.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style-wrong-signature.css.headers": [ + "3d1277ddbda9e56d08f86c2e147dfb442c60c581", + "support" + ], + "subresource-integrity/ed25519-style.css": [ + "41feabebc138539a05d4b0b8833bff7440f43fd8", + "support" + ], + "subresource-integrity/ed25519-style.css.headers": [ + "40773896fa85b0ac6545d3064f7e594e4e9b4339", + "support" + ], "subresource-integrity/matching-digest.js": [ "c28fd94f8c51bd90da2464338e91281304818e0a", "support" @@ -615097,16 +622882,32 @@ "41feabebc138539a05d4b0b8833bff7440f43fd8", "support" ], - "subresource-integrity/subresource-integrity.sub.html": [ - "74d5ee47bc3cb52208c82da1304fbb3b6cd51560", + "subresource-integrity/subresource-css-ed25519.tentative.html": [ + "082e0f1608b3f2dd1635f9bba98cb4778b345777", "testharness" ], + "subresource-integrity/subresource-ed25519-with-csp.tentative.html": [ + "7667e10ec87d0657911e66342488ea5f94d0c676", + "testharness" + ], + "subresource-integrity/subresource-ed25519.tentative.html": [ + "c1bc88cc0ac723970244270a584748bb25148dd9", + "testharness" + ], + "subresource-integrity/subresource-integrity.sub.html": [ + "3227dfa6ee2273f09b7fa927e556c713a6ddd4d6", + "testharness" + ], + "subresource-integrity/tools/ed25519.py": [ + "c219c7667f2a7f35d6978508740c74a5a1698ac5", + "support" + ], "subresource-integrity/tools/generate_javascript.py": [ "08e8f4066ad2f5d6b7cdb8e2b81ecfb71f4f61f9", "support" ], "subresource-integrity/tools/list_hashes.py": [ - "a30aed8fd663c8baa7c5b2a116122979f6d80cda", + "e75c0b03d14e410ef77f7a604459681bfcbd9925", "support" ], "svg-aam/OWNERS": [ @@ -615126,7 +622927,7 @@ "support" ], "svg/historical.html": [ - "aa221f26b20b39ff503bed79780a565e9be5ef21", + "f18f89f68fdf1266768700235f08e7181ce0e0e1", "testharness" ], "svg/import/animate-dom-01-f-manual.svg": [ @@ -617330,7 +625131,7 @@ "support" ], "svg/interfaces.html": [ - "0c355e7adc334d000991f4181d3bf254302eb915", + "3f659056fc469cb96bccd516a596fb183f005e9f", "testharness" ], "svg/linking/reftests/href-a-element-attr-change.html": [ @@ -617505,8 +625306,68 @@ "11c8d88f78cb3e857479000332af49484da99212", "testharness" ], + "trusted-types/TrustedHTML.tentative.html": [ + "1bcbd6d4d990c00449a95fd9c410c199b83b6661", + "testharness" + ], + "trusted-types/TrustedScriptURL.tentative.html": [ + "2a02a26d6c55e38d51abebe59b470d6f5008440c", + "testharness" + ], + "trusted-types/TrustedURL.tentative.html": [ + "e6cff885204af25c0233d9c18dd3de5cb82ed51b", + "testharness" + ], + "trusted-types/block-string-assignment-to-innerHTML.tentative.html": [ + "cde544697dbfa750e2f5ca8a1d7499d6c85c407e", + "testharness" + ], + "trusted-types/block-string-assignment-to-insertAdjacentHTML.tentative.html": [ + "739b7940a27a298ca05005e9549774f9e0c0122f", + "testharness" + ], + "trusted-types/block-string-assignment-to-location-href.tentative.html": [ + "b4da566f7eab26c9156e7976714618c74fd405b0", + "testharness" + ], + "trusted-types/block-string-assignment-to-outerHTML.tentative.html": [ + "a5301e971af8a918df577a3c00cf5d4be2b1d413", + "testharness" + ], + "trusted-types/block-string-assignment-to-script-src.tentative.html": [ + "4a92a5485db5e199036f10322a89b713b9b02423", + "testharness" + ], + "trusted-types/document-write.tentative.html": [ + "4eaf06e1d68d027a858ef6818aeac9b912164cbd", + "testharness" + ], + "trusted-types/innerHTML.tentative.html": [ + "d5797e778311a76860aab5ae1c1212ed6bf281b0", + "testharness" + ], + "trusted-types/insertAdjacentHTML.tentative.html": [ + "67298baa3acbfd88c9d867e60fc46ff8f9e2a2ca", + "testharness" + ], + "trusted-types/location-href.tentative.html": [ + "b6b009db2b50ef1a456762256c598b907cbdce81", + "testharness" + ], + "trusted-types/outerHTML.tentative.html": [ + "959d23151fe6fa7f049fac11336da8ab9d962d0a", + "testharness" + ], + "trusted-types/script-src.tentative.html": [ + "4a125530e91a3834077c658a9c0b550fcce8e626", + "testharness" + ], + "trusted-types/support/helper.js": [ + "6ea027fb1cee52a457e64f9b2b2c8294aa8a9dfc", + "support" + ], "uievents/OWNERS": [ - "0826698a2b0359d4b9201d5e7b2c9ceadfcf8ca5", + "d9038d2dcd0e077cfa7dbab516f2a8d74de2986d", "support" ], "uievents/README.md": [ @@ -617522,7 +625383,7 @@ "support" ], "uievents/constructors/inputevent-constructor.html": [ - "5af5377e8f5435b7c7bfafa2808e0a8dcf848ce4", + "9a8db75f8b2396f92f1bd0ff99a7fbffea637ceb", "testharness" ], "uievents/hierarchy/README.md": [ @@ -617545,25 +625406,29 @@ "551486b9882d33a0ce31740809eaec0352403d69", "manual" ], + "uievents/interfaces.html": [ + "e755618e522288e9bf6dc4fc592fd6658dc97aba", + "testharness" + ], "uievents/keyboard/README.md": [ "ee83feb002acf1f134fecf618d985103c906472b", "support" ], "uievents/keyboard/key-101en-us-manual.html": [ - "8c4bedcea88fd39cfe291e40b11c3b0cb510267a", + "0b54b880246409466d57dcbe941b89d74587e8e4", "manual" ], "uievents/keyboard/key-102fr-fr-manual.html": [ - "74ec4ae6f0cfa8ddc2f296d058a70d64977eb28a", + "65b31e543203b36d6a1026ba9da3e60de507cf67", "manual" ], - "uievents/keyboard/key-manual.css": [ + "uievents/keyboard/key.css": [ "54d5f8a452d8bbbd040e66af7594debacb6d0377", - "manual" + "support" ], - "uievents/keyboard/key-manual.js": [ + "uievents/keyboard/key.js": [ "d189977c13fcff73f9604a56a919676930176db4", - "manual" + "support" ], "uievents/legacy-domevents-tests/Status.html": [ "b4cfc46993f2349beca9aa583b1eaf24a1bdfe63", @@ -617841,6 +625706,10 @@ "58f5c03e1f544b12e467663cc2bc0c15673f80b9", "support" ], + "uievents/legacy/Event-subclasses-init.html": [ + "6b1d7bce96ca023959d5248aa8af0aa83c6d3aa5", + "testharness" + ], "uievents/mouse/mouseevent_move_button-manual.html": [ "9cc673035fef3c2e8677e8d6679babfe8a1af854", "manual" @@ -617938,7 +625807,7 @@ "testharness" ], "url/OWNERS": [ - "7fa17c86fb4b69c80e41b8b3d942f10acd158ca3", + "e41e711c143c9d39073b5cec75224014fab87e9a", "support" ], "url/README.md": [ @@ -617982,7 +625851,7 @@ "testharness" ], "url/setters_tests.json": [ - "6e388e46caf1a0259a6dc6778e7b33619e389751", + "4b01281c0f8811cf57f261f9328d7916c52f3619", "support" ], "url/toascii.json": [ @@ -618018,11 +625887,11 @@ "testharness" ], "url/urlsearchparams-constructor.html": [ - "854e06efa9598f66705605bdef20c4a500ab2e9b", + "e7d341e38acba7c7608da8567c20a3468ca522e2", "testharness" ], "url/urlsearchparams-delete.html": [ - "eaeaab453fb90ba939c4dca0db11a07d50acce26", + "4713dfec8b4277cc29520dbd25958bd74e440c19", "testharness" ], "url/urlsearchparams-foreach.html": [ @@ -618046,7 +625915,7 @@ "testharness" ], "url/urlsearchparams-sort.html": [ - "6a3904b5dada6b1e071b16529e75c6ce18ce45d6", + "dfc8f32339d084299318e9eb94fc47171247f2e1", "testharness" ], "url/urlsearchparams-stringifier.html": [ @@ -618054,7 +625923,7 @@ "testharness" ], "url/urltestdata.json": [ - "dad11f4fb0275d1900f3d2362628bff54814c6dc", + "d93eea5fddec950368ce502e2f895174b2b847f5", "support" ], "user-timing/OWNERS": [ @@ -618114,7 +625983,7 @@ "testharness" ], "user-timing/measure.html": [ - "8374bbae73ac549b6c8b953d25948ed33b579591", + "b021b6706afbf40f59ba1bbc743f4f4e57ea4f66", "testharness" ], "user-timing/measure_exceptions_navigation_timing.html": [ @@ -618122,7 +625991,7 @@ "testharness" ], "user-timing/measure_navigation_timing.html": [ - "b54bbb96f5c24b61e4d64a3633229781213d9cd2", + "ff8fb60c227078ab96eddbaee26c6c3b1fa3a9d4", "testharness" ], "user-timing/measure_syntax_err.any.js": [ @@ -618146,27 +626015,27 @@ "support" ], "vibration/api-is-present.html": [ - "0c3c74860bfa27bcdc22a29fe97aa1459a05148f", + "b8f5622deb5141ec9a3b66f6e30c6054d5a42288", "testharness" ], "vibration/cancel-when-hidden-manual.html": [ - "919d3a12fe1ae0b518f7a69a50bd95aaf06c4cd5", + "c83e444bb323268d89cca72b68de6893495ae702", "manual" ], "vibration/cancel-with-0-manual.html": [ - "98eeadb226d27685907319f364ac4091a962d995", + "33fefd5310ead5f12747716b30f212d8a8026b81", "manual" ], "vibration/cancel-with-array-0-manual.html": [ - "64a3b25d44cfe5773254ebdc6e22705177fb1eef", + "cd7b9d2818e06b8e305a087c00b770dcc6dddef1", "manual" ], "vibration/cancel-with-empty-array-manual.html": [ - "c5cb3390f2ba8af94f4f35398caa29b8f3c7c852", + "063a18afa082e52900742047dff81a3c22cd574b", "manual" ], "vibration/cancel-with-new-manual.html": [ - "4efea60445ee5349e58077cc06184f95d8c969af", + "62578765cf586c984017d38fac9e8f46cad96201", "manual" ], "vibration/idl.html": [ @@ -618174,117 +626043,121 @@ "testharness" ], "vibration/invalid-values.html": [ - "52dda7cccc18982483eaba6fd3e8d8ebcb4155fd", + "9c7367db5eaf70dc9a020560b43531e16d44fca4", "testharness" ], "vibration/pattern-array-extra-manual.html": [ - "48f43b7ddc69b0cedb1f3077212ec554c0d5a818", + "35ad58df83597875739f4c532b5e72011de0f0d3", "manual" ], "vibration/pattern-array-manual.html": [ - "cb86e49638093e65b0660982649733e96fa9c813", + "d0d8d333566ff1a2ace0ca3e36dadeb36952549e", "manual" ], "vibration/pattern-array-with-0-manual.html": [ - "ce0e6f0374c75ca7f6067fb837580ed850de30af", + "bd5c644b5609f702dfec4985e3b2dfdf2de4c622", "manual" ], "vibration/silent-ignore.html": [ - "bfa8b3fd032dcddf8b2fb6ea83d449b15c74b6fb", + "986e856b25f4cb4c28d0add4acd46ec3d83612f6", "testharness" ], "vibration/simple-array-manual.html": [ - "ae52d64dfea4e39179595d565f86c6a3a0fae756", + "30734ec1632c9666069505bb19554adb03c8f9b6", "manual" ], "vibration/simple-scalar-manual.html": [ - "f6ae98a534bfc2d0b57ef11f8f1ebb3d72629c3c", + "fcc5e59095f69e8f62120e392d84de9f4c5647a2", "manual" ], - "viewport/OWNERS": [ - "a4fed30c25d50d5ce774e4e5b431efa99f73ecf3", - "support" + "viewport/viewport-attribute-event-handlers-manual.html": [ + "09901d9056f2e31f630becdd07f800e00496700a", + "manual" ], "viewport/viewport-dimensions-custom-scrollbars-manual.html": [ - "34e5aa69477e51f2102eacb1295de1296eaf3662", + "ccef0829da2e4ebcad983235f97a6f3f767a0f51", "manual" ], "viewport/viewport-dimensions-scrollbars-manual.html": [ - "f6d7ef74f10b94ece1d3a7f0fc7573bf7672baca", + "465eb63a9f09880f98636502d4b3ee3b5e3ec794", "manual" ], "viewport/viewport-no-resize-event-on-overflow-recalc.html": [ - "9605e8e77cf652aa62c3730a3a5b4fa2f4e38011", + "f4d6cb3f76e4cf790875b3be90de821a279b3d82", "testharness" ], "viewport/viewport-offset-manual.html": [ - "f54fd0381984ca28532808d36e9c6806c3bfa09a", + "1d39d721a49e44d87583cb173cf0bba648fba352", "manual" ], "viewport/viewport-page-manual.html": [ - "4d0aabf3b0c75711d3978e9dec4d91f3f144755d", + "1431cc6a8495343697c01ef62d237c31a5850e99", "manual" ], "viewport/viewport-read-size-causes-layout.html": [ - "a5f89da7f731ad1627089dbd0df1ad292e53ccff", + "64a511ff2dd9c0381588b56b15fe1c82e0b1e07a", "testharness" ], "viewport/viewport-read-size-in-iframe-causes-layout.html": [ - "8bb04e31e5d5cb7e8ba152507b4b94471d38bfe8", + "8bf7b6c1a5721da2c1d1fc896d62a44893446a73", "testharness" ], "viewport/viewport-resize-event-manual.html": [ - "f3d9b990138377eaf0d7ccb0a5e3ff6b2a5bb3b1", + "38280c144ed74af990ebf9b65ad1d68052f93372", "manual" ], "viewport/viewport-resize-event-on-load-overflowing-page.html": [ - "906f44dee3be5931400b2b99dd8b4b4c3f6f6020", + "cd13682091b00c182e570a87eac642613a3c05c2", "testharness" ], "viewport/viewport-scale-iframe-manual.html": [ - "fe01308f32fe030aa4fcb442a3119bc40397cfcf", + "4ccf4a4bb7d13bc12afc6d9bbbc8072b460f87ec", "manual" ], "viewport/viewport-scale-manual.html": [ - "2350441e77ffb40ff0ace6ab565700eb605cbbbe", + "fd089f974778969d95cd7f6aa6389a6cf9dfb543", "manual" ], "viewport/viewport-scroll-event-manual.html": [ - "3119a8ede3338afe24583d3f79b6cba699ef0ad0", + "43e7031d3734a1c377e64d0f6a8247fef0782ceb", "manual" ], "viewport/viewport-scrollbars-cause-resize.html": [ - "b0a563926aedc95ce27182369b9921bea30b6ac6", + "a1017cff8faadfdcae008fd5f27e9c8e7c5383d3", "testharness" ], "viewport/viewport-type.html": [ - "f6c1ff74ac054612661a741ed63cc9e38c704b02", + "45334f4775607cd8547788e4107e81b03fad319f", "testharness" ], "viewport/viewport-unscaled-scale-iframe.html": [ - "9026a7bc429e19def5d082405a44e39a106652f2", + "d88c0bd1ce525137fb739182a35ae22bd6455c0f", "testharness" ], "viewport/viewport-unscaled-scale.html": [ - "68d25c2233a4e35bb6e0d24a07c39a3c23908e7b", + "eb5a1e32e015808651f008ebaaa785ec84d7a1f3", "testharness" ], "viewport/viewport-unscaled-scroll-iframe.html": [ - "f55662f1b5cbfc460014a13eabe470295555a98f", + "14e88914da4ce92b90cb191278aaa0a26e00ee7a", "testharness" ], "viewport/viewport-unscaled-scroll.html": [ - "9e5e473de8a4d0ff7cacf1b4f0fb8b45281a6285", + "12f4366f75a8fb078e1691c3ad091ea15a8561f9", "testharness" ], "viewport/viewport-unscaled-size-iframe.html": [ - "f2ab6df04eda125567a93c3221ba482cf2464875", + "937198c3bf9f26413c35e48f90b5b3b35e1c96a2", "testharness" ], "viewport/viewport-unscaled-size.html": [ - "ab196264ebd9d4deb1d7b510d5a08f4abf45fa5d", + "e92beb18c8adcf1f7d89cfa0512df46765440a5a", "testharness" ], + "viewport/viewport-url-bar-changes-height-manual.html": [ + "6b7e0dfc4b8bf51f7e5799a3089c2263e6dac63d", + "manual" + ], "viewport/viewport_support.js": [ "2e2e9480e8ccca07d4334d957b6a1c597a1f8fbd", "support" @@ -618298,627 +626171,627 @@ "support" ], "wai-aria/alertdialog_modal_false-manual.html": [ - "4474f69ff5b08402d45009d375f1a0c1d97a3498", + "754cdc408ed8152fa00cb22ae9148798e3b6f719", "manual" ], "wai-aria/alertdialog_modal_true-manual.html": [ - "c4806b5257c4773833395a97811f9f6f53237ea8", + "b5e55fb9f84d41d49b6d464ff838e6bf93e89d32", "manual" ], "wai-aria/application_activedescendant-manual.html": [ - "e0d72a20e249d425416ae87f1ae95af879170ff0", + "d8308fd422f658779a864616093e904e42c847da", "manual" ], "wai-aria/application_activedescendant_value_changes-manual.html": [ - "5d2fdd71f4aeb5a9a2206749acb88830e0a4b8da", + "4e71505531d12c69f9a982712c1d67cef0ef0f48", "manual" ], "wai-aria/aria-current_not_declared-manual.html": [ - "324c82df17ed329af958d09d374d1fe7c1af3dab", + "06f2576c3fe1e9ac32c7a85cd5e40342a3a4f253", "manual" ], "wai-aria/aria-current_with_value_changes-manual.html": [ - "f8d68ae8ceae0aeeb103a7480e867c8b8e7efe9f", + "e8b6e2e2e5f690867e3334f7c45a4724d00a757f", "manual" ], "wai-aria/aria-current_with_value_date-manual.html": [ - "b056105c712ff7d663ca1503480c0a73aacdaae5", + "13bb4f08afdc600bf5b13d3264985bb7815a346e", "manual" ], "wai-aria/aria-current_with_value_location-manual.html": [ - "99fa9466a41792114440a967e333070664581018", + "7aa384eb87ce58bdfb9dc1d937b1c8d32b47d813", "manual" ], "wai-aria/aria-current_with_value_page-manual.html": [ - "e7bd1caf26eb2b058420b7cc8e720749043962b8", + "91847017d79ff79ddbdfe694e8fea0da78ac579d", "manual" ], "wai-aria/aria-current_with_value_step-manual.html": [ - "012589a138d5c3423dd462994b6010da535d8d2d", + "749b289dfb529cbfb3b356540086f463965aae55", "manual" ], "wai-aria/aria-current_with_value_time-manual.html": [ - "be5a829a19818249201fed5f6ffd5a8ba02e69ca", + "f49a8f3a2467ad3bc0dc3cbaaf9e1cfa31766be1", "manual" ], "wai-aria/aria-current_with_value_true-manual.html": [ - "cab939d028e95da1d1b0fcedc9760ddc914b0498", + "ec3f2cd6a59d63f6efe753d2ab34293cec84173e", "manual" ], "wai-aria/aria-current_with_value_unspecified-manual.html": [ - "3c10b7d11e42bd33ae564638b7bcf279d095ae2e", + "3b5b8471080a303f0eca9e872bcf72ae9f141561", "manual" ], "wai-aria/aria-details_pointing_to_details_element-manual.html": [ - "79a84e9212395255a0d66cacc1d7b2016013e795", + "6e638999a1c8bcfc66da250322dec49fd2868219", "manual" ], "wai-aria/aria-details_pointing_to_div_element-manual.html": [ - "e236e8a9b3636a4856102dd9ca0f357695113972", + "32155fea154db4772d00298ba71500fa93180f2c", "manual" ], "wai-aria/article_in_feed_posinset_and_setsize-manual.html": [ - "71c916f22a2281066ca2a6e8a078f86df7203646", + "9e09b859a5000bef790a60856cf5ca8e20766094", "manual" ], "wai-aria/article_in_feed_setsize_-1-manual.html": [ - "b8211ce48ef3169d8777147e436566bbc978d674", + "76452d5ae4d5945c45c9b7ebda1624af3eee591d", "manual" ], "wai-aria/article_not_in_feed_posinset_and_setsize-manual.html": [ - "5e6ba423ced4df85aae71f0234e4df883f6f68ae", + "7f3b8130f9b8a421b48e25a67dd49a3760176d0f", "manual" ], "wai-aria/button_haspopup_dialog-manual.html": [ - "ebde034348367d0de4846f513b893fd4b538292d", + "108f4a0796ba86bfbf3547328c43b62c1553d1b5", "manual" ], "wai-aria/button_haspopup_emptystring-manual.html": [ - "fe1a0669555d1fb535714ea9bf25c14b94272f53", + "d008f881767d98788a280c28f30dd15e0b4507f1", "manual" ], "wai-aria/button_haspopup_false-manual.html": [ - "81ac95759365a20f94d8d7279ac25fcc82610cc0", + "cf3d8c78029128c0f9540fa5f340cfce69e28d2d", "manual" ], "wai-aria/button_haspopup_foo-manual.html": [ - "bf80557381db22456142b63a985df7e47d7eb550", + "e0161c6f138b6d6c6fea5ce5a30b605ccfc2cbc8", "manual" ], "wai-aria/button_haspopup_grid-manual.html": [ - "14e21d25c31ddcc12801c70114b7efc947331e5c", + "d679d1a2e13a5d73658c804e7fa3ed8465fcfa8a", "manual" ], "wai-aria/button_haspopup_listbox-manual.html": [ - "8fc2bd88d9d4222d8b3c30a3888fa40592c76861", + "f4c0e3ea8c2c27588937a3eb24661da832406ecf", "manual" ], "wai-aria/button_haspopup_menu-manual.html": [ - "5ae08497094b432b5fad8df9512512c1553ae916", + "e547bf37ad3062035a845b6e8ff85c2082bdcfc4", "manual" ], "wai-aria/button_haspopup_tree-manual.html": [ - "6c660c51df6aeab722bedbed64f7be7eb46bdac2", + "04c5530a3c3b0d97e39a23788304da6085c7c88f", "manual" ], "wai-aria/button_haspopup_true-manual.html": [ - "a7858f1137bb90d20e397478acc3106fc699a69b", + "06660fa8fe7b4a4a19727c1e1f4e93bf3b7e06fa", "manual" ], "wai-aria/button_haspopup_unspecified-manual.html": [ - "0d791a15ebdc111e48e6cf193b64fddbe1233ae0", + "ba242824494f6269d0d2c992037748bcd481953f", "manual" ], "wai-aria/button_roledescription_empty-manual.html": [ - "02e8c17c16956f706552e15f047ec7f7f285bf45", + "854033b2e291d4ed0e8553906305073aa5062fff", "manual" ], "wai-aria/button_roledescription_valid-manual.html": [ - "ba34a9172cd4aca2f5b993bc89b5f6251455b02c", + "609c9df2513fd3447ba7677e5fc8bef73d834847", "manual" ], "wai-aria/button_roledescription_whitespace_only-manual.html": [ - "9cbdb49690860b2f5d27667252a7bb70aada3482", + "b65b913b13e8065cb2dc3ec11fd9802ef7c1dddb", "manual" ], "wai-aria/cell-manual.html": [ - "834d5f2817238c77f2ff7d84cfcf130ea7fd93fa", + "0ec4a1d6fa6fe674fd59e8ee12119a26c0617d55", "manual" ], "wai-aria/cell_aria-colspan_2_on_div-manual.html": [ - "dbcfcede2f4b03c48f4f25a06cc86a0c4a55cbb4", + "20ed3d7c616a5df83b7ccb5348a0ec8910ea14e5", "manual" ], "wai-aria/cell_aria-colspan_2_on_td_html_colspan_3-manual.html": [ - "c43ff72c242ab1652d7ca7e7ca5eea23902f4d80", + "b7a0f0c405f7054650888757ef2e2414777d147a", "manual" ], "wai-aria/cell_aria-colspan_2_on_td_html_colspan_3_with_headers_and_border-manual.html": [ - "34726e1d88332b35f400bc38710489b36e6469fc", + "a9c6472baa2a60c2405be20e6cdfb25321d71a35", "manual" ], "wai-aria/cell_aria-colspan_2_on_td_html_colspan_3_with_three_actual_columns-manual.html": [ - "50a66444648047d92364b285f96bd92d22a1fc5c", + "f11c49f1db6d5246a3e14923a9bfadb1f2bb5ca4", "manual" ], "wai-aria/cell_aria-colspan_2_on_td_with_html_colspan_not_specified-manual.html": [ - "c72a990220f746dedb0501c1b429391c5d8ed656", + "49a9a8d79c91b840d4fa7c652437f34508c27825", "manual" ], "wai-aria/cell_aria-rowspan_2_on_div-manual.html": [ - "d737e00d21d0caf030f586b652bcf9cede6f5e5c", + "766a462e63e40ede31b5bcb28dfe4160199e4d6e", "manual" ], "wai-aria/cell_aria-rowspan_2_on_td_html_rowspan_3-manual.html": [ - "53bdc1deab18d8e6453ca4acda7818e2d40b3663", + "a906e8899c1131aeb6d12fac8ba6021d3ac35531", "manual" ], "wai-aria/cell_aria-rowspan_2_on_td_html_rowspan_3_with_three_actual_rows-manual.html": [ - "ab7904288326ef7d37b1ef2edeac7457f379a425", + "f977cc8e1100ca85b4251c2c08e7ed259c856e4f", "manual" ], "wai-aria/cell_aria-rowspan_2_on_td_with_html_rowspan_not_specified-manual.html": [ - "2fe3fb2279567437098626704e29292d2604fe84", + "62fc9761f1df3c93d97915ccb0296a27c4847b91", "manual" ], "wai-aria/cell_colindex_4-manual.html": [ - "e4b772ffbec3971567a632611b4d24f89a90faa8", + "2951c871b311f443b3ef63119299a3b7d15494e9", "manual" ], "wai-aria/cell_rowindex_4-manual.html": [ - "12a6b478fe42a6d4c509a4db01390b598057d3d2", + "0237b24b6e6cbfd5e35c20ddd3358821d57ab243", "manual" ], "wai-aria/checkbox_readonly_false-manual.html": [ - "0ca8232077c8ebe6124e6348876e0d7e305fcdc9", + "2ccf421bea917a7081b0e07179189ad47193cbe4", "manual" ], "wai-aria/checkbox_readonly_true-manual.html": [ - "c8710159d664ad1e47ffcede99591d36d19c758a", + "7d58401c763fa71fb51351948ce90c32d77bef06", "manual" ], "wai-aria/checkbox_readonly_unspecified-manual.html": [ - "39980b5e2b61c5b907b299f6581b61fc96176be0", + "b9c43e4c8c1913c6cdfc1e18a6cb4a26bd470555", "manual" ], "wai-aria/columnheader_aria-colspan_2_on_div-manual.html": [ - "02dbbd5d5065016aa6ad251b6972efbdb2adc3cd", + "0e259f88585602885fd753d9b3ce732f9d31a4a5", "manual" ], "wai-aria/columnheader_aria-colspan_2_on_th_html_colspan_3-manual.html": [ - "833176caaa8cc43ddeef6910c3c91d34d0f27a81", + "7b7d5ec0b8a57880e9699d590acb212f69245b42", "manual" ], "wai-aria/columnheader_aria-colspan_2_on_th_html_colspan_3_with_three_actual_columns-manual.html": [ - "8e991fc01285bf8b0df4600f2185aae321690324", + "2aa3893e949c87bd709273a0ef30e46147b8b2eb", "manual" ], "wai-aria/columnheader_aria-colspan_2_on_th_with_html_colspan_not_specified-manual.html": [ - "674ca111f421b11015b44680a894b124e0156e8e", + "5dd455653d81c7cf1bd9aea69cffea8a0d7a4aaa", "manual" ], "wai-aria/columnheader_aria-rowspan_2_on_div-manual.html": [ - "f8d61b206efd7b14349270a9cfbc0fc7b45144b5", + "c8ad953daf6925bc14e04ad76e947cd27dee5c7e", "manual" ], "wai-aria/columnheader_aria-rowspan_2_on_th_html_rowspan_3-manual.html": [ - "46c1c3749203b0177b42c8517f8f1486493552dd", + "beb80b0e82adf83da89213b9d1f7126560dad7e2", "manual" ], "wai-aria/columnheader_aria-rowspan_2_on_th_html_rowspan_3_with_three_actual_rows-manual.html": [ - "a352ec0168c837f7ac41e238d9f6b556a1636b4c", + "08e65dcc8fe5e6b641f9dcaa71c3ba0c98ede206", "manual" ], "wai-aria/columnheader_aria-rowspan_2_on_th_with_html_rowspan_not_specified-manual.html": [ - "f5ae66fb52322271cd48f8b0944c45f150a3c9a6", + "2ad181f5319b77d9db45fcbdabc8934cb9fa24aa", "manual" ], "wai-aria/columnheader_colindex_4-manual.html": [ - "763cf2903449e52748f60c9d94ba804eeb36e8e0", + "8289dc10e5f66c304fc370119bc29aaaa3e8ed8a", "manual" ], "wai-aria/columnheader_rowindex_4-manual.html": [ - "d7d2d22bbe8bd9653dfca49258966a3f5bddb630", + "fee6e82ce2af5dccdec2c730ea9988cbc3d4e1d8", "manual" ], "wai-aria/columnheader_selected_false_not_automatically_propagated-manual.html": [ - "07905926b9a086a9dac09e4208bff5c7be62d9fb", + "e869f2b1aa85c5e2e203d5521f9b08feb1f663ca", "manual" ], "wai-aria/columnheader_selected_true_not_automatically_propagated-manual.html": [ - "a94da04e13d0ffc5e4470fcd0681ca07cdb345a3", + "04f91ea9c7bc2376fcb510a692b35d2a5070b590", "manual" ], "wai-aria/combobox_controls_an_invalid_id-manual.html": [ - "870df040569649c51aa55f1cd4999d26412f0fcc", + "7bd7949e3668b305a5a623368ed6da2e144e2032", "manual" ], "wai-aria/combobox_haspopup_dialog-manual.html": [ - "fdd4269120fd9df0efe154b43a6153565da97943", + "961821dd5ce25610394362df85805695295045bf", "manual" ], "wai-aria/combobox_haspopup_false-manual.html": [ - "cc7de354f4a21d4aa0e999ea2441be72a71a5822", + "3f84b71eb40d187db111a82f0441d97cbc976a2e", "manual" ], "wai-aria/combobox_haspopup_grid-manual.html": [ - "d125af338b649432214e6140189349981836e858", + "018eb1a5e3acec237eaa2aff418b943e4db652e2", "manual" ], "wai-aria/combobox_haspopup_listbox-manual.html": [ - "8acc1c480dea1acf88ca7ca569604b8e9ea88ef5", + "fb411bd4b8308fee78d6e1723b9de63751da4e1e", "manual" ], "wai-aria/combobox_haspopup_menu-manual.html": [ - "378629479e77ea8389ec688bb33e539ce059ae2a", + "7becc965e84d0a68d15b3db779a7f9644bde46b4", "manual" ], "wai-aria/combobox_haspopup_tree-manual.html": [ - "b119af4fe48f9213c647e66a4a2a018558254bf9", + "cca6e5a853d8609855cf1d230c174bc66abd5e86", "manual" ], "wai-aria/combobox_haspopup_true-manual.html": [ - "0c513df922b7d0e343bc769253ac5ae8b52f4510", + "5586489253d14dba054db05683dfcaa0bb0da56a", "manual" ], "wai-aria/combobox_haspopup_unspecified-manual.html": [ - "710a825d44481c3f14d622e77b19c205f499dd1e", + "44e5de398426acb874cc1937e5183216ec35a712", "manual" ], "wai-aria/combobox_orientation_horizontal-manual.html": [ - "b0d1bfb6846a6c8008f5b61e5c86b7ff4507c10e", + "5bcd8c6c417fd7893bd56f454d5c68ab39da454e", "manual" ], "wai-aria/combobox_orientation_unspecified-manual.html": [ - "74cd83120d791c1c1328573ca078b7afeb62bcb7", + "38ce5005fbffaff4101e23118510309c044dc59b", "manual" ], "wai-aria/combobox_orientation_vertical-manual.html": [ - "ee0c7a375ddfe72da1c0acdf61430efbcbadecc5", + "b5c0f055a83c6ab23212c64f610c08def3e19e50", "manual" ], "wai-aria/combobox_readonly_false-manual.html": [ - "d197de6dd8bc807819dbd97c70cc7806c0cba25c", + "e7ddb2787f3cd24d722f41cbed0e46f1829a84fb", "manual" ], "wai-aria/combobox_readonly_true-manual.html": [ - "66add63e8639e204166b2d986600e45731b67f72", + "a8ed48eb1686c4d7d36da309a76c772d894fd886", "manual" ], "wai-aria/combobox_readonly_unspecified-manual.html": [ - "514077d1fe954cfb2880cf7490fa96a62993d3d9", + "33d47bc7569c9deace942d36f85167af931943f9", "manual" ], "wai-aria/dialog_modal_false-manual.html": [ - "15ca987281ad77292627823d69ecfaca9ac71523", + "b4705c5d80e52baac15c0c068663a02a925660f0", "manual" ], "wai-aria/dialog_modal_true-manual.html": [ - "24a9479dd97dd46a443477632fff425f80a44e3e", + "4f5282509f1bb49968e270ccbb7d436925d6ad45", "manual" ], "wai-aria/dialog_modal_unspecified-manual.html": [ - "beffdaa252e3043cb094ed655db013947d7d4ac8", + "a0405a2af36d1400d7a83aa2a5eeb6e92fdc1928", "manual" ], "wai-aria/div_element_without_role_roledescription_valid-manual.html": [ - "66ac2a107b7b7e517c5badfe10fcfed527d29235", + "a1878222bfe58fa9e40760d6ea8f362633875936", "manual" ], "wai-aria/errormessage_object_in_invalid_state-manual.html": [ - "0a2d618a703342da58071c35c510a370044e351f", + "2b588aec7e80f18d601bcf72370746d1d2851b40", "manual" ], "wai-aria/errormessage_object_in_valid_state-manual.html": [ - "458716e14fab5e9146acd42a1b738aade9c4638e", + "b218332ce5c032f72d012f22c3c0452bd0b88fd5", "manual" ], "wai-aria/feed-manual.html": [ - "946946d1fb7b9ded2b5c16f66315b999ccbcdfb8", + "5314038686453e25354d5444fcbdf5ad945cc965", "manual" ], "wai-aria/figure-manual.html": [ - "7efb8eb80093de1cb3a825cccac111c4e4a92b52", + "296f20edcfa4c2de5826af97e18b846b920c30a6", "manual" ], "wai-aria/grid_aria-readonly_false_automatically_propagated-manual.html": [ - "58e2c9fa82c4500e7dd3f2c60cbd7a07783d6dab", + "56b668db545c7b8cb1599c3d205b28218e19cf74", "manual" ], "wai-aria/grid_aria-readonly_true_automatically_propagated-manual.html": [ - "defa6fb97d9d71a6da5fef97ac788ae40d35d2f5", + "d02baf60fcebee6dd6e52e4884c8bb4e6729cfc1", "manual" ], "wai-aria/grid_busy_false-manual.html": [ - "fc5293d1eaf17932548fb4ffabeba91636d4d333", + "1e2a8ede68c23c6b308253546c3d25619318a4d9", "manual" ], "wai-aria/grid_busy_true-manual.html": [ - "525e53aea870f694194e7337efc54f04e9bf450e", + "8734b76e71476acf2c71f9bb7a714f890fd337cd", "manual" ], "wai-aria/grid_busy_value_changes-manual.html": [ - "c6f8e48d0633e5d2299db6d9a57ef44064f537b3", + "e5df53e46628117c5fe0e12d58334c845a9e404f", "manual" ], "wai-aria/grid_colcount_8-manual.html": [ - "d27a7c3ccc0186a970f85c12b177bd0390137887", + "b66693301f389b525ad6e933c5474505b56ab7b3", "manual" ], "wai-aria/grid_columnheader_readonly_false-manual.html": [ - "966772d35396d2946eecf282626ed76fff983bda", + "2c4a43cd02609acc031d33eb4e689648370abd59", "manual" ], "wai-aria/grid_columnheader_readonly_true-manual.html": [ - "c77203c5aff070fde3ba2a166a527a4047685fb5", + "f935328efc9d08b5af2e10f1259963b416bbaae6", "manual" ], "wai-aria/grid_columnheader_readonly_unspecified-manual.html": [ - "b0ba733622e16cd2cd8d282995cfb251a8fbb348", + "4cc660c0363fa6a4d4ab7542ee60a8f3617be879", "manual" ], "wai-aria/grid_columnheader_required_false-manual.html": [ - "ff3177c827e9878f399ee9ea3d21408e382bd7a2", + "5b2b2bb0ec6562b83dbf6356e6569d8c8ecf5217", "manual" ], "wai-aria/grid_columnheader_required_true-manual.html": [ - "f435b39b4c0c2a946a8b6f92fd9a602f652cde3f", + "45d1ab83024a4c88fa16985c58fe99ff44a8c3da", "manual" ], "wai-aria/grid_columnheader_required_unspecified-manual.html": [ - "8d6287495265d1b57dbb704e4d4be43b8aa6b84b", + "4f516fcd837222a86d2ecfb431b36361c73dc8a2", "manual" ], "wai-aria/grid_rowcount_3-manual.html": [ - "cef045744fef8f057ace5432b94b1d4159403f4d", + "beb0b7e7c70aec7a1c40c6a04bc0d58aff45d874", "manual" ], "wai-aria/grid_rowheader_readonly_false-manual.html": [ - "4be468949bce221b4d2c8918510aef8502382667", + "cab82961b14adc4c99e9321c0dc94b38eea2028a", "manual" ], "wai-aria/grid_rowheader_readonly_true-manual.html": [ - "70bf1009bbdfe23edec4904631c1619c596e5b48", + "9ebdaa97febbe584b1e44bf048a29814a24381ea", "manual" ], "wai-aria/grid_rowheader_readonly_unspecified-manual.html": [ - "4f0e5ca22061d60117b3a9ba1ba0d912f1495a41", + "c50f645b458fba36b881bc85474ea7b3c1710e45", "manual" ], "wai-aria/grid_rowheader_required_false-manual.html": [ - "63136f3c7b01adfbb2674fe0626bef5dc97f8ed5", + "56f954adf8783d91ce550c71b876850a3ea19521", "manual" ], "wai-aria/grid_rowheader_required_true-manual.html": [ - "1d69644d4a256c3a86dba4d8cf305bf3689d0071", + "bd031d825385c77efea8479087b407cae84164c0", "manual" ], "wai-aria/grid_rowheader_required_unspecified-manual.html": [ - "50a4f4995f11a6b92e3641853aa3ccfa4dc8ec21", + "0ce55c3222ff79ccfe99dbb18332fc67d96eaaa9", "manual" ], "wai-aria/gridcell_aria-colspan_2_on_div-manual.html": [ - "25067f7097c864aeda4eefe26f5be4bd325863af", + "1a7d9b0cc28bfaef446972e0fd42f4f51c4be3fa", "manual" ], "wai-aria/gridcell_aria-rowspan_2_on_div-manual.html": [ - "010d88a933289303f232113e4e8f8622c8003598", + "44a9be247679dd52a94f28a1d5147c953867fad0", "manual" ], "wai-aria/gridcell_colindex_4-manual.html": [ - "6199a65ea843c7dcce4d4f1111cc2107aebe5097", + "3f2cc5549c8c48bed4482eef4d15016a866a432e", "manual" ], "wai-aria/gridcell_rowindex_4-manual.html": [ - "64fa525a32345da709081cee13a81fc792c7c6c3", + "3ab620afeb2de8c158c1420949d151a2e98f061d", "manual" ], "wai-aria/group_hidden_undefined_element_not_rendered-manual.html": [ - "763f3cd871e5d962475d51c7c731c320771da71f", + "862b7a9ba1a34dbf9346b2fedeeb52a1a5502784", "manual" ], "wai-aria/group_hidden_undefined_element_rendered-manual.html": [ - "49c532fd3f0f4860e824de0724d8b4a242f11787", + "2adf0911f14a94eccd19cc8fdf71c7dc2ee4a2e7", "manual" ], "wai-aria/heading_level_unspecified-manual.html": [ - "fb9281071562532515626298f454cb34df3ea103", + "08fb0566ab4c31b346e61359a4726df4e358f3b5", "manual" ], "wai-aria/keyshortcuts_multiple_shortcuts-manual.html": [ - "05a59ef67203ab6071e92c089c9dd827569aec54", + "b55b4986db34910d5bc9eab9da5278959b65a571", "manual" ], "wai-aria/keyshortcuts_one_shortcut-manual.html": [ - "4450737fa1d041dfade64fbcb53b52a5b3b15509", + "4698eff259585037b1da1cc97112b906df28b6b4", "manual" ], "wai-aria/listbox_busy_false-manual.html": [ - "648441a3cdfe1497cca809ea8d1f2601ab5efd49", + "5569cc12e3b9d2b8fde247c790d72e11015ae78b", "manual" ], "wai-aria/listbox_busy_true-manual.html": [ - "590263880933fbd11c7a23be0d4f79805e2736de", + "10359f9d21d1fce801fcdd959a12cc5d3f959515", "manual" ], "wai-aria/listbox_orientation_horizontal-manual.html": [ - "1e94ef3f3433847c24e19c5bbabb19c89b5cf47c", + "4eac9ea9de1faaf6b4edf0d39453ed0c142d8229", "manual" ], "wai-aria/listbox_orientation_unspecified-manual.html": [ - "19be848a27f51882c242e2926829ffdfd6402557", + "4429e641a1c432347fa0989f1b4a912c238f81fd", "manual" ], "wai-aria/listbox_orientation_vertical-manual.html": [ - "d61e7e5f80b898f33e098cd988928743e66e02e1", + "3392029434e2f8a8e65fc06960e47f62c3d3224e", "manual" ], "wai-aria/listbox_readonly_false-manual.html": [ - "6215aef6018d0bd2e96d8268c22f4e0e8b6470ce", + "13f5c9c82beafb26b084dffbf9765cbc1b09a717", "manual" ], "wai-aria/listbox_readonly_true-manual.html": [ - "2a4c68f94c86705c977964a66b04ec9d77a76991", + "133b4d223e1c74ef642b8d627c3f04b7742cd4df", "manual" ], "wai-aria/listbox_readonly_unspecified-manual.html": [ - "9730fa266f511e3fbe81571164bf6fd4ccbfc0af", + "4f4e9ef883e7bf9d5e4c719cfec417a4ba427a55", "manual" ], "wai-aria/listitem_setsize_-1-manual.html": [ - "d1c13740bdea5368782fc63d69a86724cb72e42b", + "bde65a9d5a00ceed56cbce667a541570100c7279", "manual" ], "wai-aria/menu_orientation_horizontal-manual.html": [ - "b9486b82f7021651631cd6b245a4a15dcdf76d36", + "cb4012affde2f37218f511c11e92a24e987eba89", "manual" ], "wai-aria/menu_orientation_unspecified-manual.html": [ - "478c8468afce0cd6382d49c047e33309cfbb54f8", + "24903e47b6a6ae1be0a49df8a2ea2abfffd5cf72", "manual" ], "wai-aria/menu_orientation_vertical-manual.html": [ - "644f6a7babf3dedecc6fcbece2b064d95108d583", + "e7be595d08ccb2f6e94f1c5e3bd66e74f07a04e6", "manual" ], "wai-aria/menubar_busy_false-manual.html": [ - "ae32a78c10bf8369f1964797b418e01b92a93f39", + "f036c27a389e2680551846a5def6a9d56d398a43", "manual" ], "wai-aria/menubar_busy_true-manual.html": [ - "1f94737f35e78a4ab28ec77254e28b88e5db60c7", + "27a589285c997241c506cbb4aa2a05b546422e8d", "manual" ], "wai-aria/menubar_orientation_horizontal-manual.html": [ - "562009d3e450ffa6f17d13569ec685c53b349be7", + "f38cd16c8da078230397b8845b0584a087bd6a83", "manual" ], "wai-aria/menubar_orientation_unspecified-manual.html": [ - "7b643abbfb79a718239c7b7501142660a0ffeab1", + "6281641a562dc090ec2a31cb3569d3a0708b7ec4", "manual" ], "wai-aria/menubar_orientation_vertical-manual.html": [ - "38cf7ac0a2da58bac662dcab5829bbf4a7cef7f5", + "a9f61de067b3e926fb51fd0c0f1d8007ccc33857", "manual" ], "wai-aria/menuitem_posinset_and_setsize-manual.html": [ - "891df600c46c77d090279f2b7982d55a657539c8", + "b444b779d3f65b58bed822e6cc1440828f63557a", "manual" ], "wai-aria/menuitemcheckbox_posinset_and_setsize-manual.html": [ - "699233b362c77df950b9e45cc3e6ee083b86a661", + "39781006ca59817acf455d556b8c76cd6b489445", "manual" ], "wai-aria/menuitemcheckbox_readonly_false-manual.html": [ - "6bf1377e5f89d1b675b6882d00818898c507e77c", + "b8841fa91199dcc5662c06780d31cb8261ff92a6", "manual" ], "wai-aria/menuitemcheckbox_readonly_true-manual.html": [ - "cd6ed1a83a7fb54651d695f1bdf70e457b803c77", + "71b4785cf69375262139df7f18025f55d97774e6", "manual" ], "wai-aria/menuitemcheckbox_readonly_unspecified-manual.html": [ - "7d78d89134691a360ca4c8694deaa44bbac47152", + "3359f715e3d96cadb2eaf8f07904caeaff36846f", "manual" ], "wai-aria/menuitemradio_posinset_and_setsize-manual.html": [ - "7ce92f27e514c4362c45f4387e839a5028e7a6e3", + "81ced2031a3f8119f415b6ade261dc47b4c54852", "manual" ], "wai-aria/menuitemradio_readonly_false-manual.html": [ - "d8fcd51120ecf49dc423a8ce4db1b5960a55f9d7", + "ae7976e8c538e0e712f9ad91ad056a78c258df11", "manual" ], "wai-aria/menuitemradio_readonly_true-manual.html": [ - "2236c83482e0b0e4374880452f96a1316565d7a4", + "1b1959ce48d2f765952210b507213e7842c57152", "manual" ], "wai-aria/menuitemradio_readonly_unspecified-manual.html": [ - "7926d65dc6e034524ea46553aeee03b671494a8e", + "1ba57d551c68d52dc75748717106f7c1a30204c4", "manual" ], "wai-aria/none-manual.html": [ - "005e4f982bbcb5d23a79383d50418fcfb05c8cd6", + "2d2a19bfb7d55f8cb69fd8cbabf10f9d43fc36f7", "manual" ], "wai-aria/option_selected_false-manual.html": [ - "5a27d0b83878d76f9718a1c630e90f36da581f96", + "a9236aa03abaef97f1af1d9f3011b76d36100487", "manual" ], "wai-aria/option_selected_true-manual.html": [ - "ac88cde0974d7f689f222b525dbdbc49644597a0", + "fc5f2c6ddb47c33d9e732e0de6a023b25a196618", "manual" ], "wai-aria/option_selected_undefined-manual.html": [ - "bd4f2244e9dee99e9d28ba535e94d5f5cffb4f4f", + "7c7f968fdcfbacf6e63aff45f89cfc283de7259f", "manual" ], "wai-aria/option_selected_value_changes-manual.html": [ - "4b88c894f9eb92b701de56c72f833da11ebf82fe", + "e359cc94d1ef484632bf190876447654a23404ad", "manual" ], "wai-aria/radiogroup_orientation_horizontal-manual.html": [ - "6fb68f322c3370a8cf27df1f195103225891d437", + "5b2f86e5454bf00e02c0b7a728524c7d7c30c55a", "manual" ], "wai-aria/radiogroup_orientation_unspecified-manual.html": [ - "ec071b1efdb5e8adf0004058d3f37005bf7e0614", + "59b1f62489854443d46e1349f27261a36670fbe9", "manual" ], "wai-aria/radiogroup_orientation_vertical-manual.html": [ - "7096f085928618c5d9aba1824ddaa61691d8403d", + "a7c523b054a176f529b66b13bc26a987c7f9e5b6", "manual" ], "wai-aria/radiogroup_readonly_false-manual.html": [ - "921d0141f6783c0efbff6629bf1b1857053b421e", + "8ff1ac067d0d41ef96b629ecd66f00ed37ef9f27", "manual" ], "wai-aria/radiogroup_readonly_true-manual.html": [ - "7b0de053f6808aa7dc42862f3a56c6be11534868", + "ab0a26eff7d0815ae76ca0ea38e57134703cfccd", "manual" ], "wai-aria/radiogroup_readonly_unspecified-manual.html": [ - "d3c809e855dd926d159211b8492adc433f76e5e0", + "87bb3a459e24471da03f95c65ff283013e9bed83", "manual" ], "wai-aria/region_with_name-manual.html": [ - "bcdb5ba7f53fe1ec265b8916cea081c8404f1c0a", + "1200dd9cd7882ddb7d01602723023d379df0eb1c", "manual" ], "wai-aria/region_without_name-manual.html": [ - "7813ef502cf9d2bf19e32d4d90309fd11b63a7aa", + "a860494a93a7d7d5b01cdd0028b38c4048e51e4b", "manual" ], "wai-aria/row_colindex_4-manual.html": [ - "8e9afef99bfdaa9bea7dd1e45a56b64945d1bcb6", + "28ca687e2b8da7e3dd2e0fcb3dfc0bb5ffb63840", "manual" ], "wai-aria/row_rowindex_4-manual.html": [ - "e9b43b20553dc2bcf96b4d748ea406da7a23f780", + "35f2f062b8997476241dac74c1996aecb401c1bc", "manual" ], "wai-aria/rowheader_aria-colspan_2_on_div-manual.html": [ - "dbef0cd0578126a0824fc7aef4eb78c0e181769a", + "80d410187bb0a6384322f95bd27c967191fef80e", "manual" ], "wai-aria/rowheader_aria-rowspan_2_on_div-manual.html": [ - "83e110d8ba40814f2fe4c1f05d28b8836a78fb96", + "af1896c0909c5c486a622f31a4a64a11cfa1bf1d", "manual" ], "wai-aria/rowheader_colindex_4-manual.html": [ - "2292ac114585ab45abf82d52773bf7efe946b6ce", + "a4468840e263a5bf7224e058e7099377f418fe09", "manual" ], "wai-aria/rowheader_rowindex_4-manual.html": [ - "8d691e8758b61ded2041f8d2c55c85c30e1533ab", + "a832405f0127c6761ad76ffd5141e4361a85c4ee", "manual" ], "wai-aria/rowheader_selected_false_not_automatically_propagated-manual.html": [ - "f40306ce25f9c5a7dc7f08ed9a4c0d536e481ba4", + "4a57e83377abd3d66d3d8d26232e702b6b53e87f", "manual" ], "wai-aria/rowheader_selected_true_not_automatically_propagated-manual.html": [ - "c110ccc314a93a4824cc2f8cc8d24f92c334199f", + "b5fbf74482276815c2df2d0bd78beadafd6bd804", "manual" ], "wai-aria/scripts/ATTAcomm.js": [ @@ -618930,239 +626803,239 @@ "support" ], "wai-aria/scrollbar_all_values_unspecified-manual.html": [ - "5abf9c5b4e66a106ead1eadefca0557f4947f061", + "c6b90c5767929eb353fc0670886650562ee6eae6", "manual" ], "wai-aria/scrollbar_only_valuenow_unspecified-manual.html": [ - "09e7a2d0c666bd3e4bd9b0a879552119dab9ebe6", + "4f501f675fe735b7d32929764beccb87648bf25b", "manual" ], "wai-aria/scrollbar_orientation_unspecified-manual.html": [ - "ff7005258d71d406b25e47070834ec0b07343885", + "951dc98f02cd790fa6fa0c540e4d03a3a88173ae", "manual" ], "wai-aria/searchbox-manual.html": [ - "0de383cb2d7006576ba35820e66ceebf61863b89", + "0138026be588d9279fe7e086e1d672ef0266abde", "manual" ], "wai-aria/searchbox_activedescendant-manual.html": [ - "dd5f73bee1935829af7116d9f0fab21379143e3d", + "1f7614531432509aaedc910bae517bfa3bb0867c", "manual" ], "wai-aria/searchbox_activedescendant_value_changes-manual.html": [ - "d103b48d3326496c1856e02c9b1b2c2c3387381c", + "0e5e9c0947ba355f832d15609a3b8a73ba7a61ad", "manual" ], "wai-aria/searchbox_autocomplete_both-manual.html": [ - "f7343424e6bc112e3acbcc34d4158c98228654b3", + "7763946ddb6d67a28c294c000370b9b3427b51bc", "manual" ], "wai-aria/searchbox_autocomplete_inline-manual.html": [ - "e8d7c3ddb5df6db9147f9f06924b58115edd309a", + "57285eeb124be858e60aca78ddb32ea94c0866bf", "manual" ], "wai-aria/searchbox_autocomplete_list-manual.html": [ - "0acb822f02bb8f28689f8c4b1712b64a6fd734dd", + "b5c9b3cddd08e18eccfdd5e865973c6d9846059d", "manual" ], "wai-aria/searchbox_autocomplete_none-manual.html": [ - "36bea2c8a923325fc27feea3af253b3983ac75dc", + "30a44a4066dda6ad45eec4b10556ce8f48693829", "manual" ], "wai-aria/searchbox_autocomplete_unspecified-manual.html": [ - "2bf04a21da06e02bfea174345190d60c3882e9d0", + "e0a9bff6a5e9c0eec42f0e5e0f0ad905ff7ff953", "manual" ], "wai-aria/searchbox_multiline_false-manual.html": [ - "8925514b998791a401e5d7057a09f8704d20e081", + "699b2b06af38cd8be622ccc75b6d7fbe80ee0b6e", "manual" ], "wai-aria/searchbox_multiline_true-manual.html": [ - "c3edc4db1f3771e9c4052eaa20290417c862557d", + "7bb4f2752ef7e03bb217e8e1b12f4a40b638bde1", "manual" ], "wai-aria/searchbox_multiline_unspecified-manual.html": [ - "0a95f460836d8cf3b74b29a99da2040a142a409e", + "f2f175d68df0e97b598ed7a47d44a53cd87b5b19", "manual" ], "wai-aria/searchbox_placeholder-manual.html": [ - "27e545c161a89de25268a5e3a316a2743ccb0027", + "0e92a02e93b59778595fc4b6d1847fad1040c924", "manual" ], "wai-aria/searchbox_readonly_false-manual.html": [ - "e7843da9128a39a93b83a97e06c046f6b4b7f494", + "fc1678fc0b32e648e8e7b9a7b63570b09ca8d360", "manual" ], "wai-aria/searchbox_readonly_true-manual.html": [ - "f5045cdf606ccdaf85047b37674437ed12fcc778", + "adb59b597333f72b18ebd3f2a81832544254d9de", "manual" ], "wai-aria/searchbox_readonly_unspecified-manual.html": [ - "7962346d46ef428826f3286b446e62328aacdf4a", + "65c71f924f6f39e7fea8176c4a3fc88fe188a8bd", "manual" ], "wai-aria/searchbox_required_false-manual.html": [ - "1348c650dc9117cde518a541b228d61878a1628a", + "24e7a5f334ae398fdd6f64233b3ce9211894cc5e", "manual" ], "wai-aria/searchbox_required_true-manual.html": [ - "968edf9cca483de64a10e4042188394fcc1bf20a", + "c3e7a012036938ce5a4f4dc05a6f6bc0b7416b37", "manual" ], "wai-aria/searchbox_required_unspecified-manual.html": [ - "25cd28c00c19ecec1fe2e2f35c6b77c782472464", + "d34be4256f960a77708588f48ab1a9e79db9b60e", "manual" ], "wai-aria/separator_focusable_all_values_unspecified-manual.html": [ - "b0ae5eea6d4c786c78e4983b7410b25750070762", + "f46996bb772c14320ea7e10cb8df4faf6bf9861c", "manual" ], "wai-aria/separator_focusable_only_valuenow_unspecified-manual.html": [ - "e4f6b409e75ed0fd6f217ec3d09fa4b2b9f85b07", + "8c559244f82b6d5ae1fc8ddacfb51d56cf26aa53", "manual" ], "wai-aria/separator_focusable_valuetext-manual.html": [ - "b3c3280d13620a0eb16c11eb99fd0ad727ee65fe", + "09ab4cb8eaabb21f727965f880dc2b82c28a270f", "manual" ], "wai-aria/separator_orientation_unspecified-manual.html": [ - "5058603cf64a799bee96ddfa6ba25d5382d2962d", + "9b453b2ca005003e705a0ee8449a16380220e67f", "manual" ], "wai-aria/separator_unfocusable_all_values_unspecified-manual.html": [ - "351cb43fb0a5b7259f20af99f799d26b61eda917", + "a9c2ed95d25b3bf5d80d1ddbbae44a16abadf235", "manual" ], "wai-aria/separator_unfocusable_valuetext-manual.html": [ - "196679826f29a8c2f35688d286ab96739ca89fd9", + "f4a30a6c4302e52e626ac509d4f094d4b602f6ee", "manual" ], "wai-aria/slider_all_values_unspecified-manual.html": [ - "676af2418ba5e2d81b40c1163fce968c4e09271e", + "d2db25aca78f1ceeefcdfffd12e7d2e1ef53faef", "manual" ], "wai-aria/slider_only_valuenow_unspecified-manual.html": [ - "e680b6db19d9e20f343662fe8cad18f2127969eb", + "cd760f95d6c09bc1783c5b98511d3bffb03318f4", "manual" ], "wai-aria/slider_orientation_unspecified-manual.html": [ - "be4d713d88e3b5a695ee72d405ed5a7a6fef20b4", + "933b0fc2abab6066680289a7cab1fa0e301b2270", "manual" ], "wai-aria/slider_readonly_false-manual.html": [ - "1f28f53f85f09ccbd1fd6d29006b52137b1a6e42", + "ec57379556314d03d41b1ebc70452b00d5ab92e6", "manual" ], "wai-aria/slider_readonly_true-manual.html": [ - "7da49fd65f5e7125e16ac11c72c1089343dac280", + "55beb79ef5f7022741306fea89f75a027b01abca", "manual" ], "wai-aria/slider_readonly_unspecified-manual.html": [ - "3f30636e9d9a66c4b05c93f97cd07b5df1ae3ab3", + "07ea9b783b15a51be94553da194f6b6db024433f", "manual" ], "wai-aria/spinbutton_all_values_unspecified-manual.html": [ - "6c8b07b26d43d0758022ae98b7d0a4948f3774b2", + "729333014db5518140bb08f62975ab1c12a2f72b", "manual" ], "wai-aria/spinbutton_only_aria-valuenow_unspecified-manual.html": [ - "e37e9e695b4994d65e404736f615cc1ca3aa8e43", + "3730099c5a4509a410781c7f11ddac12f604a0dc", "manual" ], "wai-aria/spinbutton_readonly_false-manual.html": [ - "57ab040f5916928f561ca8aa670ced4759a1dd3b", + "44ee2f47d72e7f7df372f9841bd8049ab5696348", "manual" ], "wai-aria/spinbutton_readonly_true-manual.html": [ - "7a8fc228f516d5c9b66af0c927f8cc05430fd351", + "78cbceb43c560e143a91b658bd8f050d9ab79883", "manual" ], "wai-aria/spinbutton_readonly_unspecified-manual.html": [ - "a1a2fc5e6ad54304c05fb920dab84a49600f4076", + "902d7279671f0ff0e4b73513af163e79ab0448e2", "manual" ], "wai-aria/switch_checked_false-manual.html": [ - "fa15dea1f4b4bc7b1aac5035f732920326e97f8f", + "9ee1f6b66ff6e43d213a8c996cd93c31b294b8d0", "manual" ], "wai-aria/switch_checked_mixed-manual.html": [ - "d55ea8551ab16c8d6d0a1cfb1a8c0974c87204cc", + "e5b099f54de006e948a935b8d98d911377b7ff31", "manual" ], "wai-aria/switch_checked_true-manual.html": [ - "baf1617beea35eb2f42ed1597ce6393f2bf8efc0", + "3366919521e536e6f9d3b6489c6a51d95f45b3e5", "manual" ], "wai-aria/switch_checked_undefined-manual.html": [ - "c25629284a5acd599d91d9543a2a2eeee3a717de", + "5dfc172e54c67598ce4b0c0df1add788f9a99d5f", "manual" ], "wai-aria/switch_checked_value_changes-manual.html": [ - "4d74746193097d0a8967f1472c7e96bc122b8448", + "7f85dcd0690edb960ebd2b3adace2682ff614dd7", "manual" ], "wai-aria/switch_readonly_false-manual.html": [ - "577993a64256c0894c2ed28fdc50781ac27ce04f", + "76e454316863a8c989b0ee5b2ccab7320674f3eb", "manual" ], "wai-aria/switch_readonly_true-manual.html": [ - "efc96c374cf33423b49230ea5becfa6ac3d16262", + "3b54c61992fbdf640cd972a84a2ceb35be62ff17", "manual" ], "wai-aria/switch_readonly_unspecified-manual.html": [ - "816bafc802bced572c214c8ab425296ab84789f5", + "95e6d14c9306e80b4415e3518d6beba1f6eaa08c", "manual" ], "wai-aria/tab_posinset_and_setsize-manual.html": [ - "346e5c5270d1b1689fd05a6ecae6b7e756406478", + "442fb6861b70e2566f758a9385a473aa6c15981f", "manual" ], "wai-aria/table_colcount_-1-manual.html": [ - "cde4ff838a6a036be876272be42fb72fc8e1688e", + "9ed42e5dc32bdbedfe1852ffd7cbd66ac37df0bb", "manual" ], "wai-aria/table_colcount_8-manual.html": [ - "c09250107ec06f550f2e73c6949aacbfc21189fe", + "d5aaadf2fecad13b133beea57edcd9f28543df75", "manual" ], "wai-aria/table_rowcount_-1-manual.html": [ - "7a3c9f6b33607f42d5797e28baac33431c29161b", + "c96a3fb3b42852171d6f2bd8c49d34f287e90ed2", "manual" ], "wai-aria/table_rowcount_3-manual.html": [ - "400cb15cd7f415c87a2e46764b371c6194222c52", + "4bff8cd970877b57ddedcf1f71b40ded7dbd0a96", "manual" ], "wai-aria/tablist_orientation_horizontal-manual.html": [ - "3951505d891a1a30aa9419be6440b877f823e26f", + "8d28e4582bb14282f678d1864771ae454ca69891", "manual" ], "wai-aria/tablist_orientation_unspecified-manual.html": [ - "3f87b5f653114ff83de54c772302386ea8b5fa6c", + "214c8fdb2eb888844f762d62e3551448d822fa35", "manual" ], "wai-aria/tablist_orientation_vertical-manual.html": [ - "04b81f2596bca71ee915c0fea22f62c05735eb5f", + "273cf3ae78293cff630a04a90d7eac6aad2476a4", "manual" ], "wai-aria/term_role-manual.html": [ - "e30e255a9a38c567632d9ad4b6eae652a0c7fd70", + "d7b1c0188f53083cfebd2d87c79b632396325169", "manual" ], "wai-aria/textbox_placeholder-manual.html": [ - "e6e613dd04ab2be24fcfb3c04439e72694bbbe34", + "f9227242ec8f69d8380781be4be14c96f1a780af", "manual" ], "wai-aria/toolbar_orientation_horizontal-manual.html": [ - "e73f1accfe2a6f7363e7828a60eff9e6297727d9", + "9134ff1b2b7d54ffdad94c777bd764f457e7b7c3", "manual" ], "wai-aria/toolbar_orientation_unspecified-manual.html": [ - "55eef19b3b47b045d87d6a1d9766e9f0a275b055", + "415df0e6f4e3873ef988cef4fe398bd32f825743", "manual" ], "wai-aria/toolbar_orientation_vertical-manual.html": [ - "c4cae7a5ffd8e51778f8431684f8ee07a26fca06", + "53624df73eb9115bd3e57b8194d4bb23f8ce7d7a", "manual" ], "wai-aria/tools/convert_wiki.pl": [ @@ -619170,65 +627043,73 @@ "support" ], "wai-aria/tools/make_tests.pl": [ - "0b85da0135983b2f69b881fab53d18b56c0033ff", + "8c51b77876da3ca0a00716caf4934ee9708a4d3a", "support" ], "wai-aria/tree_orientation_horizontal-manual.html": [ - "6b2563e7f29ca7aada9fa96988cccddd379cdaf3", + "95a3a84f9380386ad8b0050d8aa227fe9e584e39", "manual" ], "wai-aria/tree_orientation_unspecified-manual.html": [ - "8c7182ca1a52daaf36d450751332c30f51d5018b", + "9df862f7bc55d7d003b3607eae80b941e8f82d17", "manual" ], "wai-aria/tree_orientation_vertical-manual.html": [ - "b09f9d7c54c3717198553178df9679f7f6d1a889", + "9d43cbb3cd327485e5228b9fda834dacf08e31b3", "manual" ], "wai-aria/treegrid_colcount_8-manual.html": [ - "25447c872391678dd0a497ac4f3aabb88f283239", + "9022552296ca199d57141412c0ff0b147f8404ba", "manual" ], "wai-aria/treegrid_orientation_horizontal-manual.html": [ - "ec787bf61b415949f79dc0e3a4ff327ce326f9b0", + "6265daaff71fc45f8ca14b9b6f197a1d412e3d30", "manual" ], "wai-aria/treegrid_orientation_unspecified-manual.html": [ - "4314603f45287d36af965fc08c254b731e374d08", + "bdb06eadbb33032340bf43359196a9b8631e258e", "manual" ], "wai-aria/treegrid_orientation_vertical-manual.html": [ - "aac9062cd2beb489325d12929ce6271792b6e9a0", + "1c7923e0c408a40d2cbd42a5b29a1c56ffa19f48", "manual" ], "wai-aria/treegrid_rowcount_3-manual.html": [ - "94405aed60e8e66eb09d9a47c42b7cce7aee18ea", + "cd96f68e1a1b06d46023cae8dba0141d562b049e", "manual" ], "wai-aria/treeitem_selected_false-manual.html": [ - "5f47782f253083d694e574662be46b7f4cd0e042", + "325e783812c348e3b2797fbe3335057972bed6b0", "manual" ], "wai-aria/treeitem_selected_true-manual.html": [ - "91341d36056973a3e446a58798d8e5a6693d3403", + "cce5c060e2e7ad826dcce7996cf4496e48874085", "manual" ], "wai-aria/treeitem_selected_undefined-manual.html": [ - "8924f1b2deb4239056b8c008bf58baec675ef4df", + "d8a7dacf9e21a1f5b25b4f17f575270cf593abcb", "manual" ], "wai-aria/treeitem_selected_value_changes-manual.html": [ - "9cb6b12c4743d4a177ad44e62dae6e5ede3bdb78", + "e82b65811aa337b03cfe72d25215c29234b798dd", "manual" ], "wasm/compile_worker.js": [ "652193b876206d7a0f361f145469a604d03e3784", "support" ], + "wasm/create_multiple_memory.worker.js": [ + "893d408fc56d030416a3c89ae3680dc028ecf1d7", + "testharness" + ], "wasm/incrementer.wasm": [ "acdf9d22c042ea3b2637c14b1576b4c8ffb4e97a", "support" ], + "wasm/many-memories.window.js": [ + "591b015662a6d181677892ec9c87f39bb36bbc23", + "testharness" + ], "wasm/resources/blank.html": [ "0ddb4f1cf84729ed673295719ec58a3e5d600a12", "support" @@ -619273,8 +627154,8 @@ "d70aecce9f01ae39589bf339588d3a3002bed258", "support" ], - "wasm/wasm_service_worker_test.html": [ - "894981ab7cb20e72dd683c8063868311ea226838", + "wasm/wasm_service_worker_test.https.html": [ + "254d9b7074c89c57e15613e6efe9674eba95b74d", "testharness" ], "web-animations/OWNERS": [ @@ -619302,25 +627183,13 @@ "testharness" ], "web-animations/animation-model/animation-types/property-list.js": [ - "83a52204cc36f6b757129dae947f03f6a8748bde", + "6a1aafd6077aa656cfba4bba48f7ceca8344b810", "support" ], "web-animations/animation-model/animation-types/property-types.js": [ - "66c606f9451cc30ba6d23bcfffcb61871283b0b8", + "98c3bbc4e0403d289a053711ebba7a0029345282", "support" ], - "web-animations/animation-model/animation-types/spacing-keyframes-filters.html": [ - "bd771a8a18245560221d92ea3495f81918c09848", - "testharness" - ], - "web-animations/animation-model/animation-types/spacing-keyframes-shapes.html": [ - "03c3ab6815cfa96c07d5f95b6059fb276c50a25f", - "testharness" - ], - "web-animations/animation-model/animation-types/spacing-keyframes-transform.html": [ - "c1c5c2ea4580948d00502a048f3e562c61006ab9", - "testharness" - ], "web-animations/animation-model/combining-effects/effect-composition.html": [ "8ac06085132d822e908d48de4c1109b66323f19f", "testharness" @@ -619341,8 +627210,8 @@ "b01c7c5145c183fdca80dec4ca1966b0f72a7003", "testharness" ], - "web-animations/animation-model/keyframe-effects/spacing-keyframes.html": [ - "318bc877791852b0829a3e10cb19e2a20a15adab", + "web-animations/interfaces/Animatable/animate-no-browsing-context.html": [ + "3a5538db728127970721e20e3b2eaea59fac3afc", "testharness" ], "web-animations/interfaces/Animatable/animate.html": [ @@ -619458,7 +627327,7 @@ "testharness" ], "web-animations/interfaces/AnimationTimeline/idlharness.html": [ - "d8c0e90499563d96ac9802632840f5333f61c8ac", + "80984bce09d54d4c57c4cea3a218b01467e43f9c", "testharness" ], "web-animations/interfaces/Document/getAnimations.html": [ @@ -619474,7 +627343,7 @@ "testharness" ], "web-animations/interfaces/KeyframeEffect/constructor.html": [ - "1011b4146d1054ee6498cce1905230a10fdb9f96", + "2bc0a19e2ff3304dfea3286096db46821bca6c16", "testharness" ], "web-animations/interfaces/KeyframeEffect/copy-contructor.html": [ @@ -619486,11 +627355,11 @@ "testharness" ], "web-animations/interfaces/KeyframeEffect/iterationComposite.html": [ - "5b7dbc28de885751ea952f4fecc2bd07cb3cea11", + "2ed50cdb27335345015d8b13c64ef86c67048757", "testharness" ], "web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument.html": [ - "6f561694e38420194fd1817ee965436348221d06", + "86ae5b18686e634743913adfcca9f1144b6902a4", "testharness" ], "web-animations/interfaces/KeyframeEffect/setKeyframes.html": [ @@ -619498,31 +627367,27 @@ "testharness" ], "web-animations/interfaces/KeyframeEffect/setTarget.html": [ - "a8fe23e2645133e8fb29511d2d4df493a9928330", - "testharness" - ], - "web-animations/interfaces/KeyframeEffect/spacing.html": [ - "2231741d51d2645b5ff97fc4ec6156d5bc6cd442", + "8c75e6605a134c96e261e5383414b7e15b32d121", "testharness" ], "web-animations/interfaces/KeyframeEffectReadOnly/copy-contructor.html": [ "8ef986f13e7fe7ffeb7403f647b4169ac0d6a138", "testharness" ], - "web-animations/interfaces/KeyframeEffectReadOnly/spacing.html": [ - "2eb6b663f4ec25284370d16042444c43edb80c02", - "testharness" - ], "web-animations/resources/easing-tests.js": [ "5ef1183a4d3e12ad3edfe678c9fa002e7edce888", "support" ], "web-animations/resources/keyframe-utils.js": [ - "ff5700466b5af6ffaad824437d6566003a22e25b", + "2903e56e508f7034e1918b5688c8a605db9bae51", + "support" + ], + "web-animations/resources/xhr-doc.py": [ + "de68c45fc1d38a49946f9046f34031e9278a1531", "support" ], "web-animations/testcommon.js": [ - "26d892976e935d0352ef1ede012435cc67be9f79", + "d057ad66c4561ef32f83770e4948f2019da89d48", "support" ], "web-animations/timing-model/animation-effects/active-time.html": [ @@ -619597,6 +627462,138 @@ "83c52be8280bba314116ff1337028ea7835ddf43", "testharness" ], + "web-nfc/nfc_hw_disabled-manual.https.html": [ + "0577a5faa4d00fa8962a9d17b1404bf3822d910d", + "manual" + ], + "web-nfc/nfc_insecure_context.html": [ + "ca6795303e0d200904d47a1f80b7fc255c1d353b", + "testharness" + ], + "web-nfc/nfc_push.https.html": [ + "ada53723b88641d04566f76f7af366f45ec783e9", + "testharness" + ], + "web-nfc/nfc_push_ArrayBuffer-manual.https.html": [ + "79189e00a1d62f0e1f936d5ca687bb48522dd0bc", + "manual" + ], + "web-nfc/nfc_push_DOMString-manual.https.html": [ + "f2656df15c0d0cf49eeb3645cf71bc1ab1c967c9", + "manual" + ], + "web-nfc/nfc_recordType_empty-manual.https.html": [ + "e85ae0dbad98d4f842d3b9d8b4a6f36b8071e5d6", + "manual" + ], + "web-nfc/nfc_recordType_json-manual.https.html": [ + "58a65c05bbb9ba434dffb5d4a4adf9575ee5eaf8", + "manual" + ], + "web-nfc/nfc_recordType_opaque-manual.https.html": [ + "3dd5221c1532b10c6aeb1e2380da73977f59993f", + "manual" + ], + "web-nfc/nfc_recordType_text-manual.https.html": [ + "287fb5e7659b0fe56e7747f8d0ecbeb461494b0d", + "manual" + ], + "web-nfc/nfc_recordType_url-manual.https.html": [ + "efeacce32b87627d824131af5624d4f88f1f6045", + "manual" + ], + "web-nfc/nfc_watch.https.html": [ + "3be1abdfa170bbdc9f6d8e5a6fa200886a148110", + "testharness" + ], + "web-nfc/resources/nfc_help.js": [ + "d2236e6b3b25b34311325ca8548cf9e4e371693f", + "support" + ], + "web-share/OWNERS": [ + "181c1272157cd564690976d357829e322174b493", + "support" + ], + "web-share/idlharness.https.html": [ + "17e370aefd324ffac6a6f4b0211fbaecd1781ad4", + "testharness" + ], + "web-share/resources/manual-helper.js": [ + "d3e545c3b6c0d10d904adc7595b9cb51de5ce9d2", + "support" + ], + "web-share/share-cancel-manual.html": [ + "b4dcc0ac05c2a14907d55058f7d51190842fe0d3", + "manual" + ], + "web-share/share-empty.https.html": [ + "aa25dc3fef3c62d9b128866a2c48df204bfaa548", + "testharness" + ], + "web-share/share-extra-argument-manual.html": [ + "d0d2e67e49c16b874e5c5cbe4d1c6920b6b70a17", + "manual" + ], + "web-share/share-extra-field-manual.html": [ + "78fd9fb76a1760402c74f64250e9b26790451ebc", + "manual" + ], + "web-share/share-non-string-manual.html": [ + "32c960f32291cf120334f2099042b4c5d7caa56b", + "manual" + ], + "web-share/share-null-manual.html": [ + "d2866b0401cecafdb590e2b6f57d0b934e32160a", + "manual" + ], + "web-share/share-securecontext.http.html": [ + "6fd79e8f54c17f73406452e2a79c6eb3a45b4e41", + "testharness" + ], + "web-share/share-simple-manual.html": [ + "cfdd2d3d767a8bbfb888291cdd274852baca7093", + "manual" + ], + "web-share/share-unicode-strings-manual.html": [ + "bf6dcec872839af760c0a679eb503d36f0b3bb48", + "manual" + ], + "web-share/share-unicode-strings-nonutf8-manual.html": [ + "905b702262f0ace4e6e9958d67b18a1f71f691c6", + "manual" + ], + "web-share/share-url-data-manual.html": [ + "da8db7178175e818ab285c5efeb529e397ae42a8", + "manual" + ], + "web-share/share-url-empty-manual.html": [ + "7f45e7a4c7b2da28e292cde168623f53311893ae", + "manual" + ], + "web-share/share-url-encoding-manual.html": [ + "6c8790abb9dea90bff649ad9716c5eadf3fd9032", + "manual" + ], + "web-share/share-url-invalid.https.html": [ + "965504e6db948e198ce01448af04c5d9a3ba26f9", + "testharness" + ], + "web-share/share-url-noscheme-manual.html": [ + "d6457b424901d125a7aac579c3b1e2b4f9c8c851", + "manual" + ], + "web-share/share-url-pathonly-manual.html": [ + "cbdedbd4265fd27194f4d938c0c7462a707f241f", + "manual" + ], + "web-share/share-url-relative-manual.html": [ + "41dd5d1a50c21f9e77c6832b56195561ee29106f", + "manual" + ], + "web-share/share-without-user-gesture.https.html": [ + "d883b2469759722cf76c4624a1a81908c9aa5ae0", + "testharness" + ], "webaudio/.gitignore": [ "11bc81247643b0a9fc665f1e4b1f592cc1f4c670", "support" @@ -619609,22 +627606,22 @@ "230684ec60fd2e408f9b6014417f3eddfe2dc95a", "support" ], + "webaudio/historical.html": [ + "93068df297042344669093ce899f0230c87ebf54", + "testharness" + ], "webaudio/js/buffer-loader.js": [ "4d564eae0b3d7d1045626d1f144cd2638dba64e5", "support" ], "webaudio/js/helpers.js": [ - "c8f3fa9e30a721973bc63f329cc0654ac52592c3", + "c5d44cf8101c50b59c366ed1971205193f32e1bf", "support" ], "webaudio/js/lodash.js": [ "58c3eae918fedad54c56d488a14f99ce87943500", "support" ], - "webaudio/js/vendor-prefixes.js": [ - "3b7d06164273077415b7fc99652355bcf0e10e17", - "support" - ], "webaudio/refresh_idl.rb": [ "9ef52c13448d19b241b40a5c81f4a0480c05c5de", "support" @@ -619646,7 +627643,7 @@ "support" ], "webaudio/the-audio-api/the-audiobuffer-interface/idl-test.html": [ - "11ec68dec57c960cea256c28237715866c58ac84", + "a799ad9a51801a67a82159e9a16b639ad0c50226", "testharness" ], "webaudio/the-audio-api/the-audiobuffersourcenode-interface/.gitkeep": [ @@ -619662,7 +627659,7 @@ "support" ], "webaudio/the-audio-api/the-audiodestinationnode-interface/idl-test.html": [ - "74770d22caf02df7fb3cd3fb1e7499436e69cbed", + "215cd494eca448981b5f0a4dc931d7ece9a33b80", "testharness" ], "webaudio/the-audio-api/the-audiolistener-interface/.gitkeep": [ @@ -619682,7 +627679,7 @@ "support" ], "webaudio/the-audio-api/the-audioparam-interface/idl-test.html": [ - "c1680330a6224285ad9bc9d6a6b046b75a860101", + "a1bba8cf32a40cefdc3cd27bb4cd33ab2ddb72db", "testharness" ], "webaudio/the-audio-api/the-audioparam-interface/retrospective-exponentialRampToValueAtTime.html": [ @@ -619742,7 +627739,7 @@ "support" ], "webaudio/the-audio-api/the-delaynode-interface/idl-test.html": [ - "55a67c98908e18856e55c2e9437b63e8dc6feb94", + "2721b0ff902b22214a2c1cecd0b7978d520efad2", "testharness" ], "webaudio/the-audio-api/the-dynamicscompressornode-interface/.gitkeep": [ @@ -619758,11 +627755,11 @@ "support" ], "webaudio/the-audio-api/the-gainnode-interface/idl-test.html": [ - "35c753a641939795d00ec7ce1a55bfc74324a075", + "7d3e3335d8b7fe23faec74788b402c8383da53b8", "testharness" ], "webaudio/the-audio-api/the-gainnode-interface/test-gainnode.html": [ - "0933aa32383aa561af5956a1e21f1c2b6890942b", + "32f1b481b638364f2a33fbbf2b63e529f9ead61c", "testharness" ], "webaudio/the-audio-api/the-iirfilternode-interface/test-iirfilternode.html": [ @@ -619774,7 +627771,7 @@ "support" ], "webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html": [ - "ad08dea6c04f20892a7bc3404b7ca0abdabdebce", + "a394f084e22f4b27b695b3b5b14352053b5e25e4", "testharness" ], "webaudio/the-audio-api/the-mediastreamaudiodestinationnode-interface/.gitkeep": [ @@ -619818,7 +627815,7 @@ "support" ], "webaudio/the-audio-api/the-waveshapernode-interface/curve-tests.html": [ - "cc9f8148b1e7d75a61599a094f9ed21377e97edb", + "f88431616d6a8084a3434c1606e3543178d019fb", "testharness" ], "webauthn/OWNERS": [ @@ -619850,101 +627847,241 @@ "testharness" ], "webdriver/OWNERS": [ - "cbfd094d14a2be6678df83a7bcd8b022922396dd", + "4986cd1bfa1e4c8e5c836581871745b5b2cc440e", "support" ], "webdriver/README.md": [ - "a4611303723fa7225d7667a1e4fe2495451b824f", + "185acb69e9516e0564e16bf7d7f8dc2a4c48d3c7", "support" ], - "webdriver/actions/__init__.py": [ + "webdriver/elements/active.py": [ + "9080770b60a988cb37e30700efb118d392a896c7", + "wdspec" + ], + "webdriver/interface/interface.html": [ + "ff6f1ffa851eed97a5a2ba4e247058bc3982111e", + "testharness" + ], + "webdriver/tests/__init__.py": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], - "webdriver/actions/conftest.py": [ - "78b6434a88021b7f56e5a7bf3e858fc9558a7c19", - "wdspec" - ], - "webdriver/actions/key.py": [ - "918bcadf034657dfcb679fd92c8a11efe34bfedf", - "wdspec" - ], - "webdriver/actions/mouse.py": [ - "823e2b1e5ba200487d0598eecbb051f73b5ea69f", - "wdspec" - ], - "webdriver/actions/sequence.py": [ - "d80f382863e52ff223db735a2a551197e570774f", - "wdspec" - ], - "webdriver/actions/special_keys.py": [ - "b2d6c2fa8852c6299b6bd214f67007efebe3029a", - "wdspec" - ], - "webdriver/actions/support/__init__.py": [ + "webdriver/tests/actions/__init__.py": [ "da39a3ee5e6b4b0d3255bfef95601890afd80709", "support" ], - "webdriver/actions/support/keys.py": [ + "webdriver/tests/actions/conftest.py": [ + "ebdbe326fd2fc53a3522b846505808496407b5b8", + "wdspec" + ], + "webdriver/tests/actions/key.py": [ + "69542dc107d881bf18dfff3203bfd7a9ec31b4ad", + "wdspec" + ], + "webdriver/tests/actions/mouse.py": [ + "d7af66e45c8e306b4258b92c54ed86073fd21c8d", + "wdspec" + ], + "webdriver/tests/actions/sequence.py": [ + "4244635ccbab0920eba8a2fa88645fa7333df363", + "wdspec" + ], + "webdriver/tests/actions/special_keys.py": [ + "3b10143dea60567f30b4ab6c544e005d02f31fc3", + "wdspec" + ], + "webdriver/tests/actions/support/__init__.py": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "webdriver/tests/actions/support/keys.py": [ "636991372c21e52b623ed4ada9dfb675dd7f7e14", "support" ], - "webdriver/actions/support/refine.py": [ + "webdriver/tests/actions/support/refine.py": [ "0d244bffe67ef57be68aad99f1cbc7440ff80e27", "support" ], - "webdriver/actions/support/test_actions_wdspec.html": [ - "c56cc117512bf9a5b6378dcead8e2640493d23a4", + "webdriver/tests/actions/support/test_actions_wdspec.html": [ + "94b6f474bb4417cf2c06cb5fc6042c01bde98aa2", "support" ], - "webdriver/conftest.py": [ - "9d8720123b3b9a6a76d45fe4462965fb32af7158", + "webdriver/tests/conftest.py": [ + "ab95734024a8e152ed84128eb804344740be91d4", "wdspec" ], - "webdriver/contexts.py": [ - "23308285354163ead68a2e56042ec6703c25620c", + "webdriver/tests/contexts/maximize_window.py": [ + "904dd1db0e9731148a1793065b1d38acf0ac094b", "wdspec" ], - "webdriver/elements/active.py": [ - "40ac5fcc5db4d489a802f58bb03dfc78563eafa0", + "webdriver/tests/contexts/resizing_and_positioning.py": [ + "479379109115668183643e8a050396219332887d", "wdspec" ], - "webdriver/get_title.py": [ - "7cfc8b7302442c585429094db89c12a042dc9fd2", + "webdriver/tests/cookies/cookies.py": [ + "e31177e638269864031e44808945fa1e7c46031c", "wdspec" ], - "webdriver/interface.html": [ + "webdriver/tests/element_click/__init__.py": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "webdriver/tests/element_click/select.py": [ + "5ba51b660c7203bba3ada597c2f56fe094358e1f", + "wdspec" + ], + "webdriver/tests/fullscreen_window.py": [ + "6b1e481aac6856b6e858df17731d037997b99f83", + "wdspec" + ], + "webdriver/tests/get_window_rect.py": [ + "0dc9c8cc1332907be819d52feb7c94f4b1cc928a", + "wdspec" + ], + "webdriver/tests/interaction/send_keys_content_editable.py": [ + "130c57e80a0738ed500f59b0178753f8acaf15bf", + "wdspec" + ], + "webdriver/tests/interface.html": [ "d783d0dd370f58b264ef238d8da5cd8601dc3c7f", "testharness" ], - "webdriver/navigation.py": [ - "dd2f52a3a77497ce8785e698f9ab462390ed0d57", + "webdriver/tests/minimize_window.py": [ + "e0950b165c0cbf76e8adcd865176ea164a1ea768", "wdspec" ], - "webdriver/support/__init__.py": [ + "webdriver/tests/navigation/current_url.py": [ + "cec2987258d9c807a247da9e0216b3af1f171484", + "wdspec" + ], + "webdriver/tests/navigation/get_title.py": [ + "11c84957a3177acbbf34597bc0defb3f77c5744c", + "wdspec" + ], + "webdriver/tests/retrieval/__init__.py": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "webdriver/tests/retrieval/find_element.py": [ + "a2d29c9c8dd5303d196d0682a19f3f3560b35872", + "wdspec" + ], + "webdriver/tests/retrieval/find_element_from_element.py": [ + "78d5e503bf979307f313b72f7578c55264c6e207", + "wdspec" + ], + "webdriver/tests/retrieval/find_element_from_elements.py": [ + "0be0eb0bd904fa8f7e5332d43cef2b36dae1a579", + "wdspec" + ], + "webdriver/tests/retrieval/find_elements.py": [ + "7df448c94c89bdb9f6818a69a9d52b21faa4b944", + "wdspec" + ], + "webdriver/tests/sessions/get_timeouts.py": [ + "eaee354d16aa8c3a0fc960198fa4c5d9365bdee5", + "wdspec" + ], + "webdriver/tests/sessions/new_session/conftest.py": [ + "d2df38e506cb9a3e501f03fe03e2a31af42d6f04", + "wdspec" + ], + "webdriver/tests/sessions/new_session/create.py": [ + "f47ffcbaf22af9f445e4202ebeaa03bb9415fbc9", + "wdspec" + ], + "webdriver/tests/sessions/new_session/default_values.py": [ + "d0802053ea0e1c81304b985821c743727b5222ec", + "wdspec" + ], + "webdriver/tests/sessions/new_session/invalid_capabilities.py": [ + "20e143186f39022c0a8cf6218b08a2fe22f96153", + "wdspec" + ], + "webdriver/tests/sessions/new_session/merge.py": [ + "e58b671da735c6040248c80a3384760ee4496c88", + "wdspec" + ], + "webdriver/tests/sessions/new_session/response.py": [ + "3eca8e1d571b0c94b2a08fccfbe8cb9f1b1ba6d5", + "wdspec" + ], + "webdriver/tests/set_window_rect.py": [ + "e84559c2ee94009fe808c3008c58e6e4b9ca27aa", + "wdspec" + ], + "webdriver/tests/state/__init__.py": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "webdriver/tests/state/get_element_attribute.py": [ + "1e25aaf5c3ab4c24130566d7823830a11a86393d", + "wdspec" + ], + "webdriver/tests/state/get_element_property.py": [ + "2d4e145cd55c6ee0ed69c617c77975e295e56119", + "wdspec" + ], + "webdriver/tests/state/get_element_tag_name.py": [ + "ed23abfb5a1e9d3afdf168c722e7b64827c176ec", + "wdspec" + ], + "webdriver/tests/state/is_element_selected.py": [ + "77b93dd58e0fb4f504c94bc39013d6ada59126bc", + "wdspec" + ], + "webdriver/tests/state/text/__init__.py": [ + "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "support" + ], + "webdriver/tests/state/text/get_text.py": [ + "570274d59020c4d8d0b8ecd604660ee7d710a165", + "wdspec" + ], + "webdriver/tests/status.py": [ + "5d3ae3da2967072dff274f384cceaecc07b6aa4b", + "wdspec" + ], + "webdriver/tests/support/__init__.py": [ "5a31a3917a5157516c10951a3b3d5ffb43b992d9", "support" ], - "webdriver/support/asserts.py": [ - "cf1d298a9dc61b07eb9efe1ff3ed98a318d48bc4", + "webdriver/tests/support/asserts.py": [ + "b02f45e99cdee49f12608e60333e566c8c0e04d0", "support" ], - "webdriver/support/fixtures.py": [ - "3820de38416455a7fc3c351dadfa761bacd9901d", + "webdriver/tests/support/fixtures.py": [ + "ed33ffdd2084ba3c65d82ff7ce7996d45ba98ce5", "support" ], - "webdriver/support/http_request.py": [ - "01c4b525c27f77d253c75031a9cee3f17aca8df0", + "webdriver/tests/support/http_request.py": [ + "cb40c781fea2280b98135522def5e6a116d7b946", "support" ], - "webdriver/support/inline.py": [ - "bc85126e5637145e81f27d037f3a9090747130c8", + "webdriver/tests/support/inline.py": [ + "d05c1b209ab1b8c22ab542d0418340896bc844fb", "support" ], - "webdriver/support/merge_dictionaries.py": [ + "webdriver/tests/support/merge_dictionaries.py": [ "84a6d3c6f8f4afded0f21264bbaeebec38a7f827", "support" ], + "webdriver/tests/support/wait.py": [ + "a4b0c9c340ea7055139d9fcab3246ee836d6a441", + "support" + ], + "webdriver/tests/user_prompts/accept_alert.py": [ + "30aa726664c6228dd5901bef862d3d55b3474e41", + "wdspec" + ], + "webdriver/tests/user_prompts/dismiss_alert.py": [ + "bf75a630194dee1d619cb2818d71f9fb06a5dbbc", + "wdspec" + ], + "webdriver/tests/user_prompts/get_alert_text.py": [ + "2eabe61f38757fd377e9773b7697a9a1ed21ceb6", + "wdspec" + ], "webgl/OWNERS": [ "f8e0703fe2cc88edd21ef2c94fcb2e1a8889f5ae", "support" @@ -629342,7 +637479,7 @@ "testharness" ], "webmessaging/Channel_postMessage_ports_readonly_array.htm": [ - "9483112ff0962b068d69758f959627a9c9d299c5", + "2e23f79e2997ffa88b88651be6f2c355574f5de2", "testharness" ], "webmessaging/Channel_postMessage_target_source.htm": [ @@ -629766,11 +637903,47 @@ "support" ], "webrtc/RTCCertificate.html": [ - "76e0c5f601c8ba4aefb06d1ebab8454c78fe07df", + "6580d666a55637ff5847c0f6f1a701d2db75b749", "testharness" ], + "webrtc/RTCConfiguration-bundlePolicy.html": [ + "2ae7780f86084baf6478bf92a8440cf142fe8611", + "testharness" + ], + "webrtc/RTCConfiguration-helper.js": [ + "eb27b6312d0a3e6f0c6af7d366fc1172aeacea99", + "support" + ], "webrtc/RTCConfiguration-iceCandidatePoolSize.html": [ - "7816790d82628acb7cf04e0a046046884c1207e7", + "6b55bd01a1422f2315cae765a7d539bf81151c1f", + "testharness" + ], + "webrtc/RTCConfiguration-iceServers.html": [ + "2dbc12945221f64684a46311f9ebe23f69ea247e", + "testharness" + ], + "webrtc/RTCConfiguration-iceTransportPolicy.html": [ + "f95cceffe7485aac7b53d3f891ad87d50ccc8b1d", + "testharness" + ], + "webrtc/RTCConfiguration-rtcpMuxPolicy.html": [ + "a9beda60053916185106aedac98014123d6f7105", + "testharness" + ], + "webrtc/RTCDTMFSender-helper.js": [ + "54456b1c74d55552fdad0405f55dcd728205b561", + "support" + ], + "webrtc/RTCDTMFSender-insertDTMF.https.html": [ + "50ef787a77512dc7eea7731b9766fda4d1456694", + "testharness" + ], + "webrtc/RTCDTMFSender-ontonechange-long.https.html": [ + "d89602fd655bf032cadfc538291ccea858eb2446", + "testharness" + ], + "webrtc/RTCDTMFSender-ontonechange.https.html": [ + "5d81b305d0b46f158e1533ffea648ae61f09c58a", "testharness" ], "webrtc/RTCDataChannel-bufferedAmount.html": [ @@ -629789,16 +637962,28 @@ "8a8b30a23abddb5d11a802fead534fd56aacbb62", "testharness" ], + "webrtc/RTCDtlsTransport-getRemoteCertificates.html": [ + "76eb9e89291ce2aa8fa81dd7216a853193abd6e2", + "testharness" + ], "webrtc/RTCIceCandidate-constructor.html": [ "6938c88a0167e418aa9e93416865c857cc3489c5", "testharness" ], + "webrtc/RTCIceTransport.html": [ + "c145a8a34c79dd970475e77ff5bf1a363c0ac56c", + "testharness" + ], "webrtc/RTCPeerConnection-addIceCandidate.html": [ - "6ca52e2e6ec19dc38a7cc0a4ce132f7c5de9e398", + "dd19f1d7a8d12ee85101e53bb30c553e94d67b6a", + "testharness" + ], + "webrtc/RTCPeerConnection-addTrack.https.html": [ + "c434d2cdcb134f28b203df07cecca04e11195700", "testharness" ], "webrtc/RTCPeerConnection-addTransceiver.html": [ - "0ce85d1a83181d1bd0f337c7dbb5443efbda32cd", + "d4f7108629c221c95fcaafa554ecd820c27a6922", "testharness" ], "webrtc/RTCPeerConnection-canTrickleIceCandidates.html": [ @@ -629810,31 +637995,43 @@ "testharness" ], "webrtc/RTCPeerConnection-constructor.html": [ - "60e9ec4bec3e3d3b785568be8cf089c959e71813", + "2152cb1835b1afe939504e934a7f19d30b17ba3d", "testharness" ], "webrtc/RTCPeerConnection-createAnswer.html": [ - "3aa68d867967e466b493a4f6cf27ba4f5839af88", + "d70701dac44c536f793b124c0b1f86e7a08b2fd5", "testharness" ], "webrtc/RTCPeerConnection-createDataChannel.html": [ - "47e58b26cf295fa1a0559ac7de7d1f119cb05106", + "0e2c9ab2b4900aa7955d75f867bb5958c7c70ce3", "testharness" ], "webrtc/RTCPeerConnection-createOffer.html": [ - "07b9d476471b20d827a09a0c8b79a36e48d986b0", + "5b3d38072afd9bbb3e95925c3959ff3f4268a347", "testharness" ], "webrtc/RTCPeerConnection-generateCertificate.html": [ "27fb46922255203da0fc26a63808aeb98a60b640", "testharness" ], + "webrtc/RTCPeerConnection-getDefaultIceServers.html": [ + "208bb45887440df3bf1e45dd63f09d2d5b70857d", + "testharness" + ], + "webrtc/RTCPeerConnection-getIdentityAssertion.html": [ + "14467ef5431d17e7c6d37d78919c363cd5c98c6f", + "testharness" + ], + "webrtc/RTCPeerConnection-getStats.https.html": [ + "1fc0c03ebd989d77c9d721b027a12a0cbbf24d53", + "testharness" + ], "webrtc/RTCPeerConnection-getTransceivers.html": [ - "498e9cb9d143626fb78839c1c550d05e9a46c22f", + "b4c97af4f907a3d02fe1ebd24f00ab110b387575", "testharness" ], "webrtc/RTCPeerConnection-helper.js": [ - "fbfee08e2b8c5f031780b5efd1139cfe310c89fb", + "e3b2656366be168b5f2e3cde9461a4e69a51c9ef", "support" ], "webrtc/RTCPeerConnection-iceConnectionState.html": [ @@ -629854,33 +638051,169 @@ "testharness" ], "webrtc/RTCPeerConnection-onnegotiationneeded.html": [ - "e74e16479aca577be6673056eef0fd0212ec7151", + "ca1cbd230de7aec4844879ae43f822941f566620", "testharness" ], - "webrtc/RTCPeerConnection-removeTrack.html": [ - "6e0b10df88f69f33ff9aac63975cfea2561f28a0", + "webrtc/RTCPeerConnection-ontrack.https.html": [ + "3db4d8b29f4e1372055a50a279cae525f52cbb40", + "testharness" + ], + "webrtc/RTCPeerConnection-peerIdentity.html": [ + "2e6808671da699ad3a61f7ebd766b92686ddb17c", + "testharness" + ], + "webrtc/RTCPeerConnection-removeTrack.https.html": [ + "561575bea206ec1c9572e1e5e6f97d1e0bebe2d1", + "testharness" + ], + "webrtc/RTCPeerConnection-setDescription-transceiver.html": [ + "aab677c9196488544b30c7eecd180c3046290bb2", + "testharness" + ], + "webrtc/RTCPeerConnection-setLocalDescription-answer.html": [ + "e215aa042c67a23ae776b83d662a035a22e03810", + "testharness" + ], + "webrtc/RTCPeerConnection-setLocalDescription-offer.html": [ + "9f30ee4801fbcd574d90c3f15a733c448f148649", + "testharness" + ], + "webrtc/RTCPeerConnection-setLocalDescription-pranswer.html": [ + "9653d2176c51b638b0c03dec363d2a2fb8386281", + "testharness" + ], + "webrtc/RTCPeerConnection-setLocalDescription-rollback.html": [ + "293081a9ebd031cc4919a01ec323630394d401a8", "testharness" ], "webrtc/RTCPeerConnection-setLocalDescription.html": [ - "3a182c851b4724e34e0baaacb9f0670e741c0e49", + "b4cac26716f01ff80c902d3536dc0d2de6d85388", + "testharness" + ], + "webrtc/RTCPeerConnection-setRemoteDescription-answer.html": [ + "3f85858a7afe6a5346b2d47f5505d25caef2668b", + "testharness" + ], + "webrtc/RTCPeerConnection-setRemoteDescription-offer.html": [ + "ce5345bbaf5b5230b1fd53bbb55ab4439c3eb979", + "testharness" + ], + "webrtc/RTCPeerConnection-setRemoteDescription-pranswer.html": [ + "6ddea8760cbacc775ee99aa700fd71883cfb9bd7", + "testharness" + ], + "webrtc/RTCPeerConnection-setRemoteDescription-rollback.html": [ + "6142a9b3b95bb26634af5300bc24981f2b4cb2a4", "testharness" ], "webrtc/RTCPeerConnection-setRemoteDescription.html": [ - "b3e0010a4e7a17a881c4d4a2dfc010cfad98a79a", + "2a2e3f9ff0a5912fa260d7124f7f5a9c3862c533", "testharness" ], "webrtc/RTCPeerConnectionIceEvent-constructor.html": [ "f273bd7fdfc883a15e8fb16fef5309061254c6cc", "testharness" ], + "webrtc/RTCRtpCapabilities-helper.js": [ + "f66e7842a8b761612e40ef1a825357d9e21d5af5", + "support" + ], + "webrtc/RTCRtpParameters-codecs.html": [ + "b9ba3d410e50400b7f8a41956439c4e19b14daf0", + "testharness" + ], + "webrtc/RTCRtpParameters-degradationPreference.html": [ + "8f03fb8300b92360e907f567d35660dec84d6343", + "testharness" + ], + "webrtc/RTCRtpParameters-encodings.html": [ + "e7ff72c2ef0066bc05842ebbb3c991bc9320c102", + "testharness" + ], + "webrtc/RTCRtpParameters-headerExtensions.html": [ + "8bc6b13b74eb1026240822672b0267381a7b984a", + "testharness" + ], + "webrtc/RTCRtpParameters-helper.js": [ + "fcf16b5ae297d141b48003115905aa5bf28eab32", + "support" + ], + "webrtc/RTCRtpParameters-rtcp.html": [ + "275b24f5688c7eeca316afa3fccda8533e1e0eda", + "testharness" + ], + "webrtc/RTCRtpParameters-transactionId.html": [ + "7d94448a9767caafd0f0b341b4d61e0c586942ed", + "testharness" + ], + "webrtc/RTCRtpReceiver-getCapabilities.html": [ + "9eef967677aa2f0880f5114e7831437f931f2256", + "testharness" + ], + "webrtc/RTCRtpReceiver-getContributingSources.https.html": [ + "a81980a24e23e9c5c350d65be05bae97b3ef1e6d", + "testharness" + ], + "webrtc/RTCRtpReceiver-getParameters.html": [ + "ed910cbe15534cae43b79cc008395bd62fbd0637", + "testharness" + ], + "webrtc/RTCRtpReceiver-getStats.html": [ + "f00accac88efd9108078b0a3d72751a44f108864", + "testharness" + ], + "webrtc/RTCRtpReceiver-getSynchronizationSources.https.html": [ + "56d0157f4ce987436c12ddff886b74549abbe682", + "testharness" + ], + "webrtc/RTCRtpSender-getCapabilities.html": [ + "27f083617973770f0d42efb93813f0112fc68ad2", + "testharness" + ], + "webrtc/RTCRtpSender-getStats.html": [ + "9a95fe0a2bd44fda187b586303a95dd5eb7db0cf", + "testharness" + ], "webrtc/RTCRtpSender-replaceTrack.html": [ - "9e8eca4fa11cc72471bc48d98bec8e5936111334", + "f7b8caa578c9c818e8ca11777daf664ccb9457ec", + "testharness" + ], + "webrtc/RTCRtpSender-setParameters.html": [ + "615bd9591e0f9c873827c9ae8e787b12d2efaf0f", + "testharness" + ], + "webrtc/RTCRtpTransceiver-setCodecPreferences.html": [ + "ff8d04f3c6b2e18ea085233b5c98e8172eeca527", + "testharness" + ], + "webrtc/RTCRtpTransceiver-setDirection.html": [ + "539eaba516eef7419c5e543d7218a41f850f5e7b", "testharness" ], "webrtc/RTCSctpTransport-constructor.html": [ - "3b975dbe89ea36a78df48510bf1db5d06628db0f", + "b92f3acf5113a475b58892f48406aafc9634be07", "testharness" ], + "webrtc/RTCStats-helper.js": [ + "8fa8b228d3b6ee861c843a5f6b7aa2a1c8260763", + "support" + ], + "webrtc/RTCTrackEvent-constructor.html": [ + "a73dde79625035cdd40d5abd8856cd44161dfdf9", + "testharness" + ], + "webrtc/coverage/RTCDTMFSender.txt": [ + "d431a4f13bf10935ce7dd086feba7ed7ffd2cccc", + "support" + ], + "webrtc/coverage/identity.txt": [ + "42dc017bac018a25b283741ca2feaf97aead88d8", + "support" + ], + "webrtc/coverage/set-session-description.txt": [ + "a688c54f0b53050794c968ba3d37bd25621fc0e3", + "support" + ], "webrtc/datachannel-emptystring.html": [ "56a37968e489d6ee39a1234ca888dd628f17648e", "testharness" @@ -629889,12 +638222,24 @@ "a1753a9a537a626775194ccc5dfdbf6829c5df35", "testharness" ], + "webrtc/dictionary-helper.js": [ + "9a43fcdfda7da1c281cbb221d1c463d1e280ee3a", + "support" + ], "webrtc/getstats.html": [ "6656998d4adfab0e6ca51c98cd141cf162d3879c", "testharness" ], + "webrtc/historical.html": [ + "918bdc69f500ff726dc98643b418f14ac5ba3c3a", + "testharness" + ], + "webrtc/identity-helper.js": [ + "c7639c627cceaad0e122d83ccde429d044c0773d", + "support" + ], "webrtc/interfaces.html": [ - "bd71316e6efddce47bb4cf3218b3133f8c69c3db", + "efd0c4a62b9c90f27da1188c30e4503755e7f8d2", "testharness" ], "webrtc/no-media-call.html": [ @@ -629906,7 +638251,7 @@ "testharness" ], "webrtc/simplecall.html": [ - "ce76df05d5866807a4b58c9509ce66efcddaf3d7", + "6194af79f137d59334da2193cc6f24b9458344be", "testharness" ], "websockets/Close-1000-reason.htm": [ @@ -630018,7 +638363,7 @@ "testharness" ], "websockets/OWNERS": [ - "891fabbcf4359695999272da171ad3177d5f3e7e", + "10f99e83578e8082173bb1da68f7fb6f1c371d58", "support" ], "websockets/README.md": [ @@ -630286,11 +638631,11 @@ "testharness" ], "websockets/constructor/010.html": [ - "c0c6f54f8c9290e6fbf8a1ddf22e6a1362ef586d", + "bac5f0dca1508252e49dcf61ca3f095664bfaf89", "testharness" ], "websockets/constructor/011.html": [ - "60f0ca813c13a6003a3f376ffbddd38a8a7a6f98", + "47314c9d8762f552694791286e2607bab72ec39d", "testharness" ], "websockets/constructor/012.html": [ @@ -630802,19 +639147,27 @@ "support" ], "websockets/unload-a-document/001-1.html": [ - "5388c58ec7f586a8c79da8955ea25ff0350a08ff", + "89f76dff719f15fce07b674aa4bcc971610da686", + "support" + ], + "websockets/unload-a-document/001-2.html": [ + "facbeee79f931d0ba88163abac18b38bff94f260", "support" ], "websockets/unload-a-document/001.html": [ - "bcfd6cdc6b9dc497c3828fe0a77f1db3676be495", + "f78f6bc059375d19b8ac2619fba93b12e5506132", "testharness" ], "websockets/unload-a-document/002-1.html": [ - "284ca768f294b0716ada9f2936f3862e075388c2", + "353ee429f9d6e90d86f0de251f7ad86f436ad4e2", + "support" + ], + "websockets/unload-a-document/002-2.html": [ + "e689149429d1e29775d7c7f6f5ad6afdde0a1b39", "support" ], "websockets/unload-a-document/002.html": [ - "f39414dbf15f502f6be82324bbf389e75532cb6b", + "aaf934be13d0c9df63a1ff5da6d90cb290855b11", "testharness" ], "websockets/unload-a-document/003.html": [ @@ -631005,6 +639358,10 @@ "56b3c331a13ef832f9aa1721839516bf96e0eda8", "support" ], + "webstorage/resources/storage_session_window_noopener_second.html": [ + "56743e7c12f266463dface58439ab5f2a644a802", + "support" + ], "webstorage/resources/storage_session_window_open_second.html": [ "828dee748950bef2094afc43b0f9db8c3a655acb", "support" @@ -631018,7 +639375,7 @@ "testharness" ], "webstorage/storage_enumerate.html": [ - "6d7c52b7b8fef7b6e987d4fade5fb1271266c6bb", + "32dbada8253834d01404e5fc9d69fbc06c8d4dec", "testharness" ], "webstorage/storage_functions_not_overwritten.html": [ @@ -631073,6 +639430,10 @@ "16420690823c36d08a83656746a0f05324602036", "testharness" ], + "webstorage/storage_session_window_noopener.html": [ + "386af726f84fac19f96d64420c53927cd548f88b", + "testharness" + ], "webstorage/storage_session_window_open.html": [ "86f5002f1c0e22234928673465cc4317b6d599f5", "testharness" @@ -631097,52 +639458,136 @@ "e455416b72ce1b90a3b82b3fb44c57fba19f29df", "support" ], + "webusb/README.md": [ + "34eaa588ed78672070782cb556939ea711a18caf", + "support" + ], "webusb/idlharness.https.html": [ - "e402105766a837cd26f6d020663ec4b50b757f86", + "135ae431cdac90d34b85fe1ea355abaf9a9fb732", "testharness" ], - "webusb/resources/check-availability.html": [ - "0c6ef6ab90dab93dde9577cdf1751c3df1e8e52a", + "webusb/resources/fake-devices.js": [ + "2cfce7b35b9441529946c4bcea9427e261808c36", "support" ], - "webusb/resources/featurepolicytest.js": [ - "a28b28b34371aaae8af41e4ba562fa98cfdf1f12", + "webusb/resources/open-in-iframe.html": [ + "6e6050f742e0da58fc94a5c0a0aa75f16dfcede9", "support" ], + "webusb/resources/usb-helpers.js": [ + "164413453b70ea42f885481cc3ed839a4314527e", + "support" + ], + "webusb/usb-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + "fda5a143afa30b86a318b3ab74baed513a5275bb", + "testharness" + ], "webusb/usb-allowed-by-feature-policy-attribute.https.sub.html": [ - "37d342e708981b147904fb315f2b2d030ecab613", + "9e891075241bb843a283193506250285e93740e2", "testharness" ], "webusb/usb-allowed-by-feature-policy.https.sub.html": [ - "8784cbaba39cd8ebafe22aae0438f54f88f8f288", + "dce5c37e64183ea3d698ef8cc5b751c506a495ed", "testharness" ], "webusb/usb-allowed-by-feature-policy.https.sub.html.headers": [ - "a579c20e4a57dc30372470c685922e6a973a6d84", + "2d7c5aef94d200bdf580a4ee3c7fdc9356dba183", "support" ], "webusb/usb-default-feature-policy.https.sub.html": [ - "c1e4f73710447815cc36edfc01d2c221b35a954e", + "d9d33a643c824fbd880ee283aa47950391622fa8", "testharness" ], "webusb/usb-disabled-by-feature-policy.https.sub.html": [ - "852f9e5816750a4f79e6205a46437977f15ef90f", + "414b0b8087cbfa333e205a7b42d838c5f8108cf7", "testharness" ], "webusb/usb-disabled-by-feature-policy.https.sub.html.headers": [ - "c8b3c972c90674c75d652a31a8d0b28eec8ca6e7", + "7cc713de57caf823d0f778d943d6e7bb3900fb1e", "support" ], + "webusb/usb-manual.https.html": [ + "e2b90443b8af646908867e44a1d3388074c5e62b", + "manual" + ], + "webusb/usbConnectionEvent.https.html": [ + "b350ec95c8dfc96783b80d4914b932eeecbe00a1", + "testharness" + ], + "webusb/usbDevice-iframe.https.html": [ + "d2c3f13551a4d3b58e155aec01fb19f6fade5073", + "testharness" + ], + "webusb/usbDevice.https.html": [ + "db4de6d427f744294fc24f8a11c0971c2df207b1", + "testharness" + ], + "webusb/usbInTransferResult.https.html": [ + "abfce8f939654027c4f9ef275878016dca126bb6", + "testharness" + ], + "webusb/usbIsochronousInTransferPacket.https.html": [ + "0c13763ed243ed0981f00658d50eace2e49e654b", + "testharness" + ], + "webusb/usbIsochronousInTransferResult.https.html": [ + "131e36c8782adf4c02198b1905d233159295d5aa", + "testharness" + ], + "webusb/usbIsochronousOutTransferPacket.https.html": [ + "c8cd321d866b6ff693fe15b02d8808d092929ce1", + "testharness" + ], + "webusb/usbIsochronousOutTransferResult.https.html": [ + "ec9dfc49ebcb419d777c16995940d91678a26954", + "testharness" + ], + "webusb/usbOutTransferResult.https.html": [ + "f08a98a927d57cda8b780a8304a0fa6cf727cc81", + "testharness" + ], "webvr/OWNERS": [ "adb04954bffbb33f29864668db95f5c5367d6a05", "support" ], "webvr/idlharness.html": [ - "236974fe82ab29908e849d25c5ce748f5c0509c3", + "ef6ad8bff43a6423b9b3e7deb8017a8b3fa0c112", "testharness" ], + "webvr/webvr-disabled-by-feature-policy.https.sub.html": [ + "324e77ca73617cf34b3d7b8fac9844c67cae5e61", + "testharness" + ], + "webvr/webvr-disabled-by-feature-policy.https.sub.html.headers": [ + "0938d2df0283e585613610216f2be36fe77471af", + "support" + ], + "webvr/webvr-enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ + "859b0684996afdb9e551d6272aa85eb2e8b44f84", + "testharness" + ], + "webvr/webvr-enabled-by-feature-policy-attribute.https.sub.html": [ + "f5458498607e8a7e71cc7b31baa14941afa8d385", + "testharness" + ], + "webvr/webvr-enabled-by-feature-policy.https.sub.html": [ + "d0fbd41b8ba164915e357059cb0b3bd1e13d954a", + "testharness" + ], + "webvr/webvr-enabled-by-feature-policy.https.sub.html.headers": [ + "da771aa55d4ac72feb2ddda07b2102c0e39decb6", + "support" + ], + "webvr/webvr-enabled-on-self-origin-by-feature-policy.https.sub.html": [ + "1c754d666b538adff54db3b32f806633f399f3d3", + "testharness" + ], + "webvr/webvr-enabled-on-self-origin-by-feature-policy.https.sub.html.headers": [ + "acc2d4484a518df41b784ec5031ed41fe280e708", + "support" + ], "webvtt/OWNERS": [ - "a630f47bc188f4fb7b4ee83653437339f4d70575", + "3927364206320a3898eb0fec28e2a879bb04d606", "support" ], "webvtt/README.md": [ @@ -631150,13 +639595,17 @@ "support" ], "webvtt/api/VTTCue/align.html": [ - "e150765ae1e87996eff7dc8b888284e9c279d7f8", + "63cdd33756b623125db6c5c40b471a6a50dc6d4a", "testharness" ], "webvtt/api/VTTCue/categories.json": [ "b1ada14973c010a88020f0bd1568c30c48e0c041", "support" ], + "webvtt/api/VTTCue/common.js": [ + "e88f3e9ddc5a5d4d9597403e8f7ef01d1daa339a", + "support" + ], "webvtt/api/VTTCue/constructor.html": [ "c844f513868cbf4053c70f37bbb630b53a763a2a", "testharness" @@ -631166,7 +639615,7 @@ "testharness" ], "webvtt/api/VTTCue/line.html": [ - "07115104642dbfea2347f6926ca2cffff5839f25", + "456e481bc10ca23bdce440d883fd02f9178bfa03", "testharness" ], "webvtt/api/VTTCue/lineAlign.html": [ @@ -631190,21 +639639,25 @@ "testharness" ], "webvtt/api/VTTCue/snapToLines.html": [ - "0e4ad4e1e42545ad720b134f69fcd63de22ade70", + "a5911e8ab0db84edc17027940b4121f87aa63b76", "testharness" ], "webvtt/api/VTTCue/text.html": [ - "090ecc4c467c9bb2547c0906abfdb5b8572ecaf6", + "b59a813eddf6917d0c5ac3434d16f88f376f0f7a", "testharness" ], "webvtt/api/VTTCue/vertical.html": [ - "ca0be2954bfe511dd0f7f60ebcab4731cfeaac28", + "5c39a39983d4d0f1156e0db95fa312ac82cb3333", "testharness" ], "webvtt/api/VTTRegion/constructor.html": [ "0ee58bc32daf656ddc1c8ea6eec84f487b2bf010", "testharness" ], + "webvtt/api/VTTRegion/id.html": [ + "6f289f2de147d93146160c249babc23f4f800494", + "testharness" + ], "webvtt/api/VTTRegion/lines.html": [ "590cec0b814df0bca2760cde94b2f74b4c9defca", "testharness" @@ -631237,8 +639690,12 @@ "0e4808b113d2ff6fc4963ff0e5803ad6616288d2", "support" ], + "webvtt/api/historical.html": [ + "9a45972a29621122da23404a7adc4d237fd7c093", + "testharness" + ], "webvtt/api/interfaces.html": [ - "dbff06876d1a0db46505423b9c1d919c2188b7a9", + "3b4f42db6f608d1e89d2a3fab575e05da8a3d005", "testharness" ], "webvtt/categories.json": [ @@ -631254,43 +639711,51 @@ "support" ], "webvtt/parsing/cue-text-parsing/buildtests.py": [ - "5fe90ed238ef80fd3f69f72ca5df90984451d044", + "9666493048b16b9f1f97c8d20dab851f22597d7c", "support" ], "webvtt/parsing/cue-text-parsing/common.js": [ - "d248c8ae97cc9205a5d6094b1800255e60551bf6", + "10ae3cea61a80465ee055d3934e3829f4632047b", "support" ], "webvtt/parsing/cue-text-parsing/dat/entities.dat": [ - "183dd9377fccb89e151dc298ec8b819d1209fee3", + "02613e33aa1f565f3a1918b12dea5a6f2ac9debb", "support" ], "webvtt/parsing/cue-text-parsing/dat/tags.dat": [ - "461d05cbc43780eacc6cbd667bb5ccc6215d9c5b", + "c2991ca245d80426a3910ff07a1aa4aed68a0a96", + "support" + ], + "webvtt/parsing/cue-text-parsing/dat/text.dat": [ + "57c33406f221c63954d6f11f1982f3bafc47f79c", "support" ], "webvtt/parsing/cue-text-parsing/dat/timestamps.dat": [ - "7946c639cd942ecb62eadf81aec77e3ecd09a788", + "fa90baa1075aed52609d9e736d28a7b7cc2c77dc", "support" ], "webvtt/parsing/cue-text-parsing/dat/tree-building.dat": [ - "4b8777b30361d5193137991be3b3268013a03fe9", + "0448b464614506116d320ad645000b4b466953dd", "support" ], "webvtt/parsing/cue-text-parsing/tests/entities.html": [ - "43183d8d79641b451636efc22aa70431ec0ab1f7", + "3e4a9ea6beeb9068ab685f8edb0238bb12f42c5e", "testharness" ], "webvtt/parsing/cue-text-parsing/tests/tags.html": [ - "5c1bb0dace4c7c18b0265c568f81a5594424ed6b", + "7e3d25f90ef4793f39aaa6986af8ee88fea31866", + "testharness" + ], + "webvtt/parsing/cue-text-parsing/tests/text.html": [ + "cd575cb3a8507339cfded6676279e66fa136ced1", "testharness" ], "webvtt/parsing/cue-text-parsing/tests/timestamps.html": [ - "9096541716f4318972db549f8a1fce33ca810b2a", + "5c693a298ad24030e14fb96d60dbacd8e989d6b4", "testharness" ], "webvtt/parsing/cue-text-parsing/tests/tree-building.html": [ - "a812b24c8c9a8adbf05ea51a20e8b102a697cc88", + "1f0f7b412016e1bdc1a3ba5be3362023f769b1b9", "testharness" ], "webvtt/parsing/file-parsing/README.md": [ @@ -633898,7 +642363,7 @@ "support" ], "workers/OWNERS": [ - "3648bbedbe71884c7d375289fb63250f968be14f", + "424c4c3664d3eb0c5123b4a05c55ee78a1dbbba5", "support" ], "workers/README.md": [ @@ -633949,6 +642414,10 @@ "ed0358c1e713d7b29ee98f9686f2a4a25a9a682e", "testharness" ], + "workers/WorkerLocation-origin.sub.window.js": [ + "e29c2a3e8ff5486b49cf7f60d6c688b152c023d9", + "testharness" + ], "workers/WorkerLocation.htm": [ "a39ec72cc081a7f48c15346d2e1764cd08600d1f", "testharness" @@ -634062,7 +642531,7 @@ "testharness" ], "workers/Worker_dispatchEvent_ErrorEvent.htm": [ - "a1100df5a79ed7b484a8d5c5746bd646a165242b", + "a27efcba6fcdbb34bb07ac8553a6bbfa04761008", "testharness" ], "workers/Worker_script_mimetype.htm": [ @@ -634322,15 +642791,11 @@ "testharness" ], "workers/data-url.html": [ - "a9084f9a3b6fc31d54b564b80869826f132f1166", + "c693eac37e1a8856b82a923b2f1142360afc6411", "testharness" ], - "workers/interfaces.idl": [ - "d8961ea6af91a92a064bcf0e0da5b56781f6bc6b", - "support" - ], "workers/interfaces.worker.js": [ - "e35e0f6de69052f24340bd887da469b85833953b", + "bab03d904dde60b7456d3cd60284c1ecc84a7649", "testharness" ], "workers/interfaces/DedicatedWorkerGlobalScope/EventTarget.worker.js": [ @@ -634566,7 +643031,7 @@ "testharness" ], "workers/name-property.html": [ - "762b7b4b65503e599560829675a1df07a61dd566", + "1c53fc1fdc2d6c8ed5592d832a18bdbd3bca541b", "testharness" ], "workers/nested_worker.worker.js": [ @@ -634638,7 +643103,7 @@ "testharness" ], "workers/postMessage_ports_readonly_array.htm": [ - "421c9ef573548559dad40272370150487c0aed8a", + "31c0e1779c7054dc6fa4137427b81d9c72229f73", "testharness" ], "workers/postMessage_target_source.htm": [ @@ -634682,7 +643147,7 @@ "testharness" ], "workers/semantics/interface-objects/002.worker.js": [ - "e067c76ffd47b09d97484a6cbd3d86a29102df9d", + "d6d07e646862f3cb460ebf71372af79dcfccc397", "testharness" ], "workers/semantics/interface-objects/003.html": [ @@ -634742,15 +643207,15 @@ "testharness" ], "workers/semantics/navigation/001-1.html": [ - "2f0df288870e99e80de02fe4a09c9cac141d4559", + "4dac7306512b047e8239c7f5c10e6b8ed83b9212", "support" ], "workers/semantics/navigation/001.html": [ - "4a744751f35cbc67ec87ea76e22947a5f66959e9", + "fd9870c19b051c1580b4b7b366ea5ce71541b5dc", "testharness" ], "workers/semantics/navigation/002.html": [ - "e28d7129aa2aa8fabe3641bea8f60ecd70335fa9", + "bc96fc2e64a3ffe6a71c314d7a65ed9a89cf440f", "testharness" ], "workers/semantics/reporting-errors/001.html": [ @@ -634893,8 +643358,12 @@ "ac8c81ce2d0e4833bf1d61a18a05b2ce531b576a", "support" ], + "workers/support/WorkerLocation-origin.html": [ + "b49e5a610ee9f206fb6363b9c48b29ba208991df", + "support" + ], "workers/support/WorkerLocation.js": [ - "6d835557e345feb354e640020e74476258a075f6", + "5091e6c55ad0e5654f08df696fda16668676a601", "support" ], "workers/support/WorkerNavigator.js": [ @@ -634909,8 +643378,12 @@ "b0e679dd7720701364abeaca6870d94db5d7ee74", "support" ], + "workers/support/name-as-accidental-global.js": [ + "530670268fae610b60066773ee475743b8498b53", + "support" + ], "workers/support/name.js": [ - "af3a704319d8ee15cf7df2638e4c2c5e59af2403", + "27fa41f445888125f84dab8a57ca62b41c09e506", "support" ], "workers/support/nosiniff-error-worker.py": [ @@ -634925,6 +643398,46 @@ "671ecb263ceb15ca28ef9cfc2ee6efa6e08a70fb", "support" ], + "workers/worker-performance.worker.js": [ + "d1759a707897f66bf013e888ed188023145e2622", + "testharness" + ], + "worklets/README.md": [ + "33a3530260a18e74dd96470d9890bbdb4ecdb08d", + "support" + ], + "worklets/animation-worklet-import.html": [ + "42ad4c05fb7093051344351c7b8802f8ef8fbf4c", + "testharness" + ], + "worklets/paint-worklet-import.html": [ + "0319b5195ba14348c6b5031d1198c5f401d13938", + "testharness" + ], + "worklets/resources/empty-worklet-script.js": [ + "84b3339c3419e318803e51f46d7252d9e8ac183b", + "support" + ], + "worklets/resources/import-cyclic-worklet-script.js": [ + "f32abb012c93bb69087688f31a0c243d9e6d1060", + "support" + ], + "worklets/resources/import-nested-internal-worklet-script.js": [ + "b897cf335179eb5c0e9536e8e883da1eba509ea7", + "support" + ], + "worklets/resources/import-nested-worklet-script.js": [ + "463fc9e39a1502333cfe329613516e82f66f08de", + "support" + ], + "worklets/resources/import-tests.js": [ + "7fd020b68f1ef3fc0bf8d057d30af3970f9b06cd", + "support" + ], + "worklets/resources/throwing-worklet-script.js": [ + "a7164f899afec387321c7737aa1006aa5f225669", + "support" + ], "x-frame-options/deny.sub.html": [ "5a589f4b4c6f2503104b33ae7002dcc5c4153eb7", "testharness" diff --git a/tests/wpt/metadata/WebCryptoAPI/idlharness.html.ini b/tests/wpt/metadata/WebCryptoAPI/idlharness.html.ini index 00bc82e22c5..9cc87fa0988 100644 --- a/tests/wpt/metadata/WebCryptoAPI/idlharness.html.ini +++ b/tests/wpt/metadata/WebCryptoAPI/idlharness.html.ini @@ -162,3 +162,114 @@ [SubtleCrypto interface: calling unwrapKey(KeyFormat,BufferSource,CryptoKey,AlgorithmIdentifier,AlgorithmIdentifier,boolean,[object Object\]) on crypto.subtle with too few arguments must throw TypeError] expected: FAIL + [Crypto interface: crypto must inherit property "subtle" with the proper type] + expected: FAIL + + [SubtleCrypto interface: operation encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation sign(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation digest(AlgorithmIdentifier, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation generateKey(AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)] + expected: FAIL + + [SubtleCrypto interface: operation importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation exportKey(KeyFormat, CryptoKey)] + expected: FAIL + + [SubtleCrypto interface: operation wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)] + expected: FAIL + + [SubtleCrypto interface: operation unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling encrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling decrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "sign(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling sign(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "digest(AlgorithmIdentifier, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling digest(AlgorithmIdentifier, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "generateKey(AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling generateKey(AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "exportKey(KeyFormat, CryptoKey)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling exportKey(KeyFormat, CryptoKey) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + diff --git a/tests/wpt/metadata/WebCryptoAPI/idlharness.https.html.ini b/tests/wpt/metadata/WebCryptoAPI/idlharness.https.html.ini index 486075b8159..3d8365a111c 100644 --- a/tests/wpt/metadata/WebCryptoAPI/idlharness.https.html.ini +++ b/tests/wpt/metadata/WebCryptoAPI/idlharness.https.html.ini @@ -162,3 +162,114 @@ [SubtleCrypto interface: calling unwrapKey(KeyFormat,BufferSource,CryptoKey,AlgorithmIdentifier,AlgorithmIdentifier,boolean,[object Object\]) on crypto.subtle with too few arguments must throw TypeError] expected: FAIL + [Crypto interface: crypto must inherit property "subtle" with the proper type] + expected: FAIL + + [SubtleCrypto interface: operation encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation sign(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation digest(AlgorithmIdentifier, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation generateKey(AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)] + expected: FAIL + + [SubtleCrypto interface: operation importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation exportKey(KeyFormat, CryptoKey)] + expected: FAIL + + [SubtleCrypto interface: operation wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)] + expected: FAIL + + [SubtleCrypto interface: operation unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling encrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling decrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "sign(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling sign(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "digest(AlgorithmIdentifier, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling digest(AlgorithmIdentifier, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "generateKey(AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling generateKey(AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "exportKey(KeyFormat, CryptoKey)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling exportKey(KeyFormat, CryptoKey) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + diff --git a/tests/wpt/metadata/WebCryptoAPI/idlharness.worker.js.ini b/tests/wpt/metadata/WebCryptoAPI/idlharness.worker.js.ini index 71b1ea6c745..a6e580bf852 100644 --- a/tests/wpt/metadata/WebCryptoAPI/idlharness.worker.js.ini +++ b/tests/wpt/metadata/WebCryptoAPI/idlharness.worker.js.ini @@ -165,3 +165,114 @@ [SubtleCrypto interface: calling unwrapKey(KeyFormat,BufferSource,CryptoKey,AlgorithmIdentifier,AlgorithmIdentifier,boolean,[object Object\]) on crypto.subtle with too few arguments must throw TypeError] expected: FAIL + [Crypto interface: crypto must inherit property "subtle" with the proper type] + expected: FAIL + + [SubtleCrypto interface: operation encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation sign(AlgorithmIdentifier, CryptoKey, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation digest(AlgorithmIdentifier, BufferSource)] + expected: FAIL + + [SubtleCrypto interface: operation generateKey(AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)] + expected: FAIL + + [SubtleCrypto interface: operation importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: operation exportKey(KeyFormat, CryptoKey)] + expected: FAIL + + [SubtleCrypto interface: operation wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)] + expected: FAIL + + [SubtleCrypto interface: operation unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "encrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling encrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "decrypt(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling decrypt(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "sign(AlgorithmIdentifier, CryptoKey, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling sign(AlgorithmIdentifier, CryptoKey, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling verify(AlgorithmIdentifier, CryptoKey, BufferSource, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "digest(AlgorithmIdentifier, BufferSource)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling digest(AlgorithmIdentifier, BufferSource) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "generateKey(AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling generateKey(AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveKey(AlgorithmIdentifier, CryptoKey, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling deriveBits(AlgorithmIdentifier, CryptoKey, unsigned long) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling importKey(KeyFormat, [object Object\],[object Object\], AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "exportKey(KeyFormat, CryptoKey)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling exportKey(KeyFormat, CryptoKey) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier)" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling wrapKey(KeyFormat, CryptoKey, CryptoKey, AlgorithmIdentifier) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + + [SubtleCrypto interface: crypto.subtle must inherit property "unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\])" with the proper type] + expected: FAIL + + [SubtleCrypto interface: calling unwrapKey(KeyFormat, BufferSource, CryptoKey, AlgorithmIdentifier, AlgorithmIdentifier, boolean, [object Object\]) on crypto.subtle with too few arguments must throw TypeError] + expected: FAIL + diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.js.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.js.ini new file mode 100644 index 00000000000..aac790394bf --- /dev/null +++ b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.js.ini @@ -0,0 +1,197 @@ +[DOMException-constructor-behavior.any.worker.html] + type: testharness + [new DOMException()] + expected: FAIL + + [new DOMException(): inherited-ness] + expected: FAIL + + [new DOMException(null)] + expected: FAIL + + [new DOMException(undefined)] + expected: FAIL + + [new DOMException(undefined): inherited-ness] + expected: FAIL + + [new DOMException("foo")] + expected: FAIL + + [new DOMException("foo"): inherited-ness] + expected: FAIL + + [new DOMException("bar", undefined)] + expected: FAIL + + [new DOMException("bar", "NotSupportedError")] + expected: FAIL + + [new DOMException("bar", "NotSupportedError"): inherited-ness] + expected: FAIL + + [new DOMException("bar", "foo")] + expected: FAIL + + [new DOMexception("msg", "IndexSizeError")] + expected: FAIL + + [new DOMexception("msg", "HierarchyRequestError")] + expected: FAIL + + [new DOMexception("msg", "WrongDocumentError")] + expected: FAIL + + [new DOMexception("msg", "InvalidCharacterError")] + expected: FAIL + + [new DOMexception("msg", "NoModificationAllowedError")] + expected: FAIL + + [new DOMexception("msg", "NotFoundError")] + expected: FAIL + + [new DOMexception("msg", "NotSupportedError")] + expected: FAIL + + [new DOMexception("msg", "InUseAttributeError")] + expected: FAIL + + [new DOMexception("msg", "InvalidStateError")] + expected: FAIL + + [new DOMexception("msg", "SyntaxError")] + expected: FAIL + + [new DOMexception("msg", "InvalidModificationError")] + expected: FAIL + + [new DOMexception("msg", "NamespaceError")] + expected: FAIL + + [new DOMexception("msg", "InvalidAccessError")] + expected: FAIL + + [new DOMexception("msg", "SecurityError")] + expected: FAIL + + [new DOMexception("msg", "NetworkError")] + expected: FAIL + + [new DOMexception("msg", "AbortError")] + expected: FAIL + + [new DOMexception("msg", "URLMismatchError")] + expected: FAIL + + [new DOMexception("msg", "QuotaExceededError")] + expected: FAIL + + [new DOMexception("msg", "TimeoutError")] + expected: FAIL + + [new DOMexception("msg", "InvalidNodeTypeError")] + expected: FAIL + + [new DOMexception("msg", "DataCloneError")] + expected: FAIL + + +[DOMException-constructor-behavior.any.html] + type: testharness + [new DOMException()] + expected: FAIL + + [new DOMException(): inherited-ness] + expected: FAIL + + [new DOMException(null)] + expected: FAIL + + [new DOMException(undefined)] + expected: FAIL + + [new DOMException(undefined): inherited-ness] + expected: FAIL + + [new DOMException("foo")] + expected: FAIL + + [new DOMException("foo"): inherited-ness] + expected: FAIL + + [new DOMException("bar", undefined)] + expected: FAIL + + [new DOMException("bar", "NotSupportedError")] + expected: FAIL + + [new DOMException("bar", "NotSupportedError"): inherited-ness] + expected: FAIL + + [new DOMException("bar", "foo")] + expected: FAIL + + [new DOMexception("msg", "IndexSizeError")] + expected: FAIL + + [new DOMexception("msg", "HierarchyRequestError")] + expected: FAIL + + [new DOMexception("msg", "WrongDocumentError")] + expected: FAIL + + [new DOMexception("msg", "InvalidCharacterError")] + expected: FAIL + + [new DOMexception("msg", "NoModificationAllowedError")] + expected: FAIL + + [new DOMexception("msg", "NotFoundError")] + expected: FAIL + + [new DOMexception("msg", "NotSupportedError")] + expected: FAIL + + [new DOMexception("msg", "InUseAttributeError")] + expected: FAIL + + [new DOMexception("msg", "InvalidStateError")] + expected: FAIL + + [new DOMexception("msg", "SyntaxError")] + expected: FAIL + + [new DOMexception("msg", "InvalidModificationError")] + expected: FAIL + + [new DOMexception("msg", "NamespaceError")] + expected: FAIL + + [new DOMexception("msg", "InvalidAccessError")] + expected: FAIL + + [new DOMexception("msg", "SecurityError")] + expected: FAIL + + [new DOMexception("msg", "NetworkError")] + expected: FAIL + + [new DOMexception("msg", "AbortError")] + expected: FAIL + + [new DOMexception("msg", "URLMismatchError")] + expected: FAIL + + [new DOMexception("msg", "QuotaExceededError")] + expected: FAIL + + [new DOMexception("msg", "TimeoutError")] + expected: FAIL + + [new DOMexception("msg", "InvalidNodeTypeError")] + expected: FAIL + + [new DOMexception("msg", "DataCloneError")] + expected: FAIL + diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html.ini deleted file mode 100644 index d31be8ca02c..00000000000 --- a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-constructor.html.ini +++ /dev/null @@ -1,101 +0,0 @@ -[DOMException-constructor.html] - type: testharness - [new DOMException()] - expected: FAIL - - [new DOMException(): own-ness] - expected: FAIL - - [new DOMException(null)] - expected: FAIL - - [new DOMException(undefined)] - expected: FAIL - - [new DOMException(undefined): own-ness] - expected: FAIL - - [new DOMException("foo")] - expected: FAIL - - [new DOMException("foo"): own-ness] - expected: FAIL - - [new DOMException("bar", undefined)] - expected: FAIL - - [new DOMException("bar", "NotSupportedError")] - expected: FAIL - - [new DOMException("bar", "NotSupportedError"): own-ness] - expected: FAIL - - [new DOMException("bar", "foo")] - expected: FAIL - - [new DOMexception("msg", "IndexSizeError")] - expected: FAIL - - [new DOMexception("msg", "HierarchyRequestError")] - expected: FAIL - - [new DOMexception("msg", "WrongDocumentError")] - expected: FAIL - - [new DOMexception("msg", "InvalidCharacterError")] - expected: FAIL - - [new DOMexception("msg", "NoModificationAllowedError")] - expected: FAIL - - [new DOMexception("msg", "NotFoundError")] - expected: FAIL - - [new DOMexception("msg", "NotSupportedError")] - expected: FAIL - - [new DOMexception("msg", "InUseAttributeError")] - expected: FAIL - - [new DOMexception("msg", "InvalidStateError")] - expected: FAIL - - [new DOMexception("msg", "SyntaxError")] - expected: FAIL - - [new DOMexception("msg", "InvalidModificationError")] - expected: FAIL - - [new DOMexception("msg", "NamespaceError")] - expected: FAIL - - [new DOMexception("msg", "InvalidAccessError")] - expected: FAIL - - [new DOMexception("msg", "SecurityError")] - expected: FAIL - - [new DOMexception("msg", "NetworkError")] - expected: FAIL - - [new DOMexception("msg", "AbortError")] - expected: FAIL - - [new DOMexception("msg", "URLMismatchError")] - expected: FAIL - - [new DOMexception("msg", "QuotaExceededError")] - expected: FAIL - - [new DOMexception("msg", "TimeoutError")] - expected: FAIL - - [new DOMexception("msg", "InvalidNodeTypeError")] - expected: FAIL - - [new DOMexception("msg", "DataCloneError")] - expected: FAIL - - [new DOMException("bar", "UnknownError")] - expected: FAIL - diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js.ini new file mode 100644 index 00000000000..0cdcdc1a133 --- /dev/null +++ b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.js.ini @@ -0,0 +1,47 @@ +[DOMException-custom-bindings.any.worker.html] + type: testharness + [message property descriptor] + expected: FAIL + + [name property descriptor] + expected: FAIL + + [code property descriptor] + expected: FAIL + + [code property is not affected by shadowing the name property] + expected: FAIL + + [Object.prototype.toString behavior is like other interfaces] + expected: FAIL + + [Inherits its toString() from Error.prototype] + expected: FAIL + + [toString() behavior from Error.prototype applies as expected] + expected: FAIL + + +[DOMException-custom-bindings.any.html] + type: testharness + [message property descriptor] + expected: FAIL + + [name property descriptor] + expected: FAIL + + [code property descriptor] + expected: FAIL + + [code property is not affected by shadowing the name property] + expected: FAIL + + [Object.prototype.toString behavior is like other interfaces] + expected: FAIL + + [Inherits its toString() from Error.prototype] + expected: FAIL + + [toString() behavior from Error.prototype applies as expected] + expected: FAIL + diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.html.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.html.ini deleted file mode 100644 index 39e25898e41..00000000000 --- a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[constructor-object.html] - type: testharness - [existence and properties of DOMException] - expected: FAIL - - [existence of name and code properties on DOMException.prototype] - expected: FAIL - diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.js.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.js.ini deleted file mode 100644 index 40ad9777f12..00000000000 --- a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/constructor-object.worker.js.ini +++ /dev/null @@ -1,8 +0,0 @@ -[constructor-object.worker.html] - type: testharness - [existence and properties of DOMException] - expected: FAIL - - [existence of name and code properties on DOMException.prototype] - expected: FAIL - diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/exceptions.html.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/exceptions.html.ini index 5dc6276d371..eb114de745d 100644 --- a/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/exceptions.html.ini +++ b/tests/wpt/metadata/WebIDL/ecmascript-binding/es-exceptions/exceptions.html.ini @@ -1,8 +1,5 @@ [exceptions.html] type: testharness - [exception.hasOwnProperty("name")] - expected: FAIL - [Object.getOwnPropertyDescriptor(exception, "name")] expected: FAIL @@ -12,9 +9,6 @@ [Object.getOwnPropertyDescriptor(exception, "code")] expected: FAIL - [In iframe: exception.hasOwnProperty("name")] - expected: FAIL - [In iframe: Object.getOwnPropertyDescriptor(exception, "name")] expected: FAIL diff --git a/tests/wpt/metadata/WebIDL/ecmascript-binding/legacy-platform-object.html.ini b/tests/wpt/metadata/WebIDL/ecmascript-binding/legacy-platform-object.html.ini new file mode 100644 index 00000000000..a2250466733 --- /dev/null +++ b/tests/wpt/metadata/WebIDL/ecmascript-binding/legacy-platform-object.html.ini @@ -0,0 +1,17 @@ +[legacy-platform-object.html] + type: testharness + [[[GetOwnProperty\]\] with getters and no setters] + expected: FAIL + + [[[GetOwnProperty\]\] with named property getters and setters] + expected: FAIL + + [[[GetOwnProperty\]\] with indexed property getters and setters] + expected: FAIL + + [Test [[DefineOwnProperty\]\] with no indexed property setter support.] + expected: FAIL + + [Test [[DefineOwnProperty\]\] with indexed property setter support.] + expected: FAIL + diff --git a/tests/wpt/metadata/WebIDL/interfaces.html.ini b/tests/wpt/metadata/WebIDL/interfaces.html.ini new file mode 100644 index 00000000000..777f3bae5e8 --- /dev/null +++ b/tests/wpt/metadata/WebIDL/interfaces.html.ini @@ -0,0 +1,272 @@ +[interfaces.html] + type: testharness + [DOMException must be primary interface of new DOMException()] + expected: FAIL + + [Stringification of new DOMException()] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "name" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "message" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "code" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INDEX_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "DOMSTRING_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "HIERARCHY_REQUEST_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "WRONG_DOCUMENT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INVALID_CHARACTER_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NO_DATA_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NO_MODIFICATION_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NOT_FOUND_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NOT_SUPPORTED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INUSE_ATTRIBUTE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INVALID_STATE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "SYNTAX_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INVALID_MODIFICATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NAMESPACE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INVALID_ACCESS_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "VALIDATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "TYPE_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "SECURITY_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "NETWORK_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "ABORT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "URL_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "QUOTA_EXCEEDED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "TIMEOUT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "INVALID_NODE_TYPE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException() must inherit property "DATA_CLONE_ERR" with the proper type] + expected: FAIL + + [DOMException must be primary interface of new DOMException("my message")] + expected: FAIL + + [Stringification of new DOMException("my message")] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "name" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "message" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "code" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INDEX_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "DOMSTRING_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "HIERARCHY_REQUEST_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "WRONG_DOCUMENT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INVALID_CHARACTER_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NO_DATA_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NO_MODIFICATION_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NOT_FOUND_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NOT_SUPPORTED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INUSE_ATTRIBUTE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INVALID_STATE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "SYNTAX_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INVALID_MODIFICATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NAMESPACE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INVALID_ACCESS_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "VALIDATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "TYPE_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "SECURITY_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "NETWORK_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "ABORT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "URL_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "QUOTA_EXCEEDED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "TIMEOUT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "INVALID_NODE_TYPE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message") must inherit property "DATA_CLONE_ERR" with the proper type] + expected: FAIL + + [DOMException must be primary interface of new DOMException("my message", "myName")] + expected: FAIL + + [Stringification of new DOMException("my message", "myName")] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "name" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "message" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "code" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INDEX_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "DOMSTRING_SIZE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "HIERARCHY_REQUEST_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "WRONG_DOCUMENT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INVALID_CHARACTER_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NO_DATA_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NO_MODIFICATION_ALLOWED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NOT_FOUND_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NOT_SUPPORTED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INUSE_ATTRIBUTE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INVALID_STATE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "SYNTAX_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INVALID_MODIFICATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NAMESPACE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INVALID_ACCESS_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "VALIDATION_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "TYPE_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "SECURITY_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "NETWORK_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "ABORT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "URL_MISMATCH_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "QUOTA_EXCEEDED_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "TIMEOUT_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "INVALID_NODE_TYPE_ERR" with the proper type] + expected: FAIL + + [DOMException interface: new DOMException("my message", "myName") must inherit property "DATA_CLONE_ERR" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-and-redirects.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-and-redirects.htm.ini new file mode 100644 index 00000000000..0e557f621cb --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-and-redirects.htm.ini @@ -0,0 +1,5 @@ +[access-control-and-redirects.htm] + type: testharness + [Remote sync redirect to local origin] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm.ini new file mode 100644 index 00000000000..314fe9ed767 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-access-control-origin-header-data-url.htm.ini @@ -0,0 +1,5 @@ +[access-control-basic-allow-access-control-origin-header-data-url.htm] + type: testharness + [Access granted to null-origin iframe] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-preflight-cache.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-preflight-cache.htm.ini new file mode 100644 index 00000000000..95c4fdddc22 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-allow-preflight-cache.htm.ini @@ -0,0 +1,5 @@ +[access-control-basic-allow-preflight-cache.htm] + type: testharness + [Preflight cache should allow second request] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm.ini new file mode 100644 index 00000000000..2373b260a04 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-basic-cors-safelisted-request-headers.htm.ini @@ -0,0 +1,5 @@ +[access-control-basic-cors-safelisted-request-headers.htm] + type: testharness + [Request with CORS-safelisted headers] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-preflight-request-header-sorted.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-preflight-request-header-sorted.htm.ini new file mode 100644 index 00000000000..35cf478e1c5 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-preflight-request-header-sorted.htm.ini @@ -0,0 +1,5 @@ +[access-control-preflight-request-header-sorted.htm] + type: testharness + [Tests that Access-Control-Request-Headers are sorted.] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm.ini new file mode 100644 index 00000000000..4a8015c9825 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied-without-wildcard.htm.ini @@ -0,0 +1,5 @@ +[access-control-sandboxed-iframe-denied-without-wildcard.htm] + type: testharness + [Sandboxed iframe is denied CORS access to server that allows parent origin] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied.htm.ini b/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied.htm.ini new file mode 100644 index 00000000000..04c63335f3c --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/access-control-sandboxed-iframe-denied.htm.ini @@ -0,0 +1,5 @@ +[access-control-sandboxed-iframe-denied.htm] + type: testharness + [Sandboxed iframe is denied access to path] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/data-uri.htm.ini b/tests/wpt/metadata/XMLHttpRequest/data-uri.htm.ini index 398241a89a8..544845997d9 100644 --- a/tests/wpt/metadata/XMLHttpRequest/data-uri.htm.ini +++ b/tests/wpt/metadata/XMLHttpRequest/data-uri.htm.ini @@ -26,6 +26,3 @@ [XHR method GET with MIME type text/html;charset=UTF-8] expected: FAIL - [XHR method HEAD with MIME type text/plain] - expected: FAIL - diff --git a/tests/wpt/metadata/XMLHttpRequest/event-upload-progress-crossorigin.htm.ini b/tests/wpt/metadata/XMLHttpRequest/event-upload-progress-crossorigin.htm.ini new file mode 100644 index 00000000000..0947bf1513a --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/event-upload-progress-crossorigin.htm.ini @@ -0,0 +1,8 @@ +[event-upload-progress-crossorigin.htm] + type: testharness + [Upload events registered too late (http://www1.web-platform.test:8000/XMLHttpRequest/resources/corsenabled.py)] + expected: FAIL + + [Upload events registered too late (resources/redirect.py?code=307&location=http://www1.web-platform.test:8000/XMLHttpRequest/resources/corsenabled.py)] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/open-url-worker-origin.htm.ini b/tests/wpt/metadata/XMLHttpRequest/open-url-worker-origin.htm.ini index be2ee0358af..78c84602472 100644 --- a/tests/wpt/metadata/XMLHttpRequest/open-url-worker-origin.htm.ini +++ b/tests/wpt/metadata/XMLHttpRequest/open-url-worker-origin.htm.ini @@ -3,6 +3,3 @@ [Referer header] expected: FAIL - [Origin header] - expected: FAIL - diff --git a/tests/wpt/metadata/XMLHttpRequest/responseXML-unavailable-in-worker.html.ini b/tests/wpt/metadata/XMLHttpRequest/responseXML-unavailable-in-worker.html.ini new file mode 100644 index 00000000000..58ad7a7e3f2 --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/responseXML-unavailable-in-worker.html.ini @@ -0,0 +1,5 @@ +[responseXML-unavailable-in-worker.html] + type: testharness + [XMLHttpRequest's responseXML property should not be exposed in workers.] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/responsedocument-decoding.htm.ini b/tests/wpt/metadata/XMLHttpRequest/responsedocument-decoding.htm.ini new file mode 100644 index 00000000000..08e4a01a1db --- /dev/null +++ b/tests/wpt/metadata/XMLHttpRequest/responsedocument-decoding.htm.ini @@ -0,0 +1,8 @@ +[responsedocument-decoding.htm] + type: testharness + [XMLHttpRequest: response document decoding (application/xml %3C%3Fxml%20version%3D'1.0'%20encoding%3D'windows-1252'%3F%3E%3Cx%3E%e6%a9%9f%3C%2Fx%3E)] + expected: FAIL + + [XMLHttpRequest: response document decoding (text/html %3C!doctype%20html%3E%3Cmeta%20charset%3Dwindows-1252%3E%3Cx%3E%e6%a9%9f%3C%2Fx%3E)] + expected: FAIL + diff --git a/tests/wpt/metadata/XMLHttpRequest/send-content-type-string.htm.ini b/tests/wpt/metadata/XMLHttpRequest/send-content-type-string.htm.ini deleted file mode 100644 index 5ae82d20062..00000000000 --- a/tests/wpt/metadata/XMLHttpRequest/send-content-type-string.htm.ini +++ /dev/null @@ -1,8 +0,0 @@ -[send-content-type-string.htm] - type: testharness - [XMLHttpRequest: send() - Content-Type 1] - expected: FAIL - - [XMLHttpRequest: send() - Content-Type 2] - expected: FAIL - diff --git a/tests/wpt/metadata/XMLHttpRequest/setrequestheader-content-type.htm.ini b/tests/wpt/metadata/XMLHttpRequest/setrequestheader-content-type.htm.ini index a1089ee9426..684f4d84dca 100644 --- a/tests/wpt/metadata/XMLHttpRequest/setrequestheader-content-type.htm.ini +++ b/tests/wpt/metadata/XMLHttpRequest/setrequestheader-content-type.htm.ini @@ -93,3 +93,6 @@ [URLSearchParams request has correct default Content-Type of "application/x-www-form-urlencoded;charset=UTF-8"] expected: FAIL + [Blob request with set type respects setRequestHeader("") to be specified] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/DOMRectList.html.ini b/tests/wpt/metadata/cssom-view/DOMRectList.html.ini new file mode 100644 index 00000000000..4cde0b9a38c --- /dev/null +++ b/tests/wpt/metadata/cssom-view/DOMRectList.html.ini @@ -0,0 +1,8 @@ +[DOMRectList.html] + type: testharness + [Element getClientRects()] + expected: FAIL + + [Range getClientRects()] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementFromPoint-002.html.ini b/tests/wpt/metadata/cssom-view/elementFromPoint-002.html.ini new file mode 100644 index 00000000000..164539762c4 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementFromPoint-002.html.ini @@ -0,0 +1,5 @@ +[elementFromPoint-002.html] + type: testharness + [Checking whether dynamic changes to visibility interact correctly with\n table anonymous boxes] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementFromPoint-003.html.ini b/tests/wpt/metadata/cssom-view/elementFromPoint-003.html.ini new file mode 100644 index 00000000000..94b8fd085df --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementFromPoint-003.html.ini @@ -0,0 +1,5 @@ +[elementFromPoint-003.html] + type: testharness + [Checking whether dynamic changes to visibility interact correctly with\n table anonymous boxes] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-iframes.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-iframes.html.ini new file mode 100644 index 00000000000..3a52000a845 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-iframes.html.ini @@ -0,0 +1,8 @@ +[elementsFromPoint-iframes.html] + type: testharness + [elementsFromPoint on the root document for points in iframe elements] + expected: FAIL + + [elementsFromPoint on inner documents] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-invalid-cases.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-invalid-cases.html.ini new file mode 100644 index 00000000000..e4e2cad0798 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-invalid-cases.html.ini @@ -0,0 +1,5 @@ +[elementsFromPoint-invalid-cases.html] + type: testharness + [The root element is the last element returned for otherwise empty queries within the viewport] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-shadowroot.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-shadowroot.html.ini new file mode 100644 index 00000000000..d99add047f0 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-shadowroot.html.ini @@ -0,0 +1,5 @@ +[elementsFromPoint-shadowroot.html] + type: testharness + [Untitled] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-simple.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-simple.html.ini new file mode 100644 index 00000000000..278c63575ba --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-simple.html.ini @@ -0,0 +1,20 @@ +[elementsFromPoint-simple.html] + type: testharness + [elementsFromPoint for each corner of a simple div] + expected: FAIL + + [elementsFromPoint for each corner of a div that has a pseudo-element] + expected: FAIL + + [elementsFromPoint for each corner of a div that is between another div and its pseudo-element] + expected: FAIL + + [elementsFromPoint for each corner of a div that has a margin] + expected: FAIL + + [elementsFromPoint for each corner of a div with pointer-events:none] + expected: FAIL + + [elementsFromPoint for each corner of a div with a 3d transform] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-svg.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-svg.html.ini new file mode 100644 index 00000000000..5978838f235 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-svg.html.ini @@ -0,0 +1,14 @@ +[elementsFromPoint-svg.html] + type: testharness + [elementsFromPoint for a point inside two rects] + expected: FAIL + + [elementsFromPoint for a point inside two rects that are inside a ] + expected: FAIL + + [elementsFromPoint for a point inside two images] + expected: FAIL + + [elementsFromPoint for a point inside transformed rects and ] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/elementsFromPoint-table.html.ini b/tests/wpt/metadata/cssom-view/elementsFromPoint-table.html.ini new file mode 100644 index 00000000000..a80abdadc34 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/elementsFromPoint-table.html.ini @@ -0,0 +1,9 @@ +[elementsFromPoint-table.html] + type: testharness + expected: ERROR + [elementsFromPoint for points inside table cells] + expected: FAIL + + [elementsFromPoint for points between table cells] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/interfaces.html.ini b/tests/wpt/metadata/cssom-view/interfaces.html.ini new file mode 100644 index 00000000000..2525f56bb71 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/interfaces.html.ini @@ -0,0 +1,329 @@ +[interfaces.html] + type: testharness + [Element interface: document.createElement('div') must inherit property "scrollIntoView()" with the proper type] + expected: FAIL + + [Element interface: document.createElement('div') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] + expected: FAIL + + [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement('div') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('div') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] + expected: FAIL + + [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement('div') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('div') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('div') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('div') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] + expected: FAIL + + [HTMLImageElement interface: attribute x] + expected: FAIL + + [HTMLImageElement interface: attribute y] + expected: FAIL + + [HTMLImageElement interface: document.createElement('img') must inherit property "x" with the proper type] + expected: FAIL + + [HTMLImageElement interface: document.createElement('img') must inherit property "y" with the proper type] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "scrollIntoView()" with the proper type] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] + expected: FAIL + + [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement('img') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] + expected: FAIL + + [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement('img') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElement('img') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] + expected: FAIL + + [Window interface: attribute screen] + expected: FAIL + + [Window interface: attribute innerWidth] + expected: FAIL + + [Window interface: attribute innerHeight] + expected: FAIL + + [Window interface: attribute scrollX] + expected: FAIL + + [Window interface: attribute pageXOffset] + expected: FAIL + + [Window interface: attribute scrollY] + expected: FAIL + + [Window interface: attribute pageYOffset] + expected: FAIL + + [Window interface: attribute screenX] + expected: FAIL + + [Window interface: attribute screenY] + expected: FAIL + + [Window interface: attribute outerWidth] + expected: FAIL + + [Window interface: attribute outerHeight] + expected: FAIL + + [Window interface: attribute devicePixelRatio] + expected: FAIL + + [Document interface: operation caretPositionFromPoint(double, double)] + expected: FAIL + + [Document interface: attribute scrollingElement] + expected: FAIL + + [Document interface: operation getBoxQuads(BoxQuadOptions)] + expected: FAIL + + [Document interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Document interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Document interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Document interface: document must inherit property "caretPositionFromPoint(double, double)" with the proper type] + expected: FAIL + + [Document interface: calling caretPositionFromPoint(double, double) on document with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: document must inherit property "scrollingElement" with the proper type] + expected: FAIL + + [Document interface: document must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] + expected: FAIL + + [Document interface: calling getBoxQuads(BoxQuadOptions) on document with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: document must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Document interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: document must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Document interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: document must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Document interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: operation scrollIntoView()] + expected: FAIL + + [Element interface: operation scrollIntoView([object Object\],[object Object\])] + expected: FAIL + + [Element interface: operation getBoxQuads(BoxQuadOptions)] + expected: FAIL + + [Element interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Element interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Element interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "scrollIntoView()" with the proper type] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] + expected: FAIL + + [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] + expected: FAIL + + [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] + expected: FAIL + + [Element interface: document.createElementNS('x', 'y') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] + expected: FAIL + + [Text interface: operation getBoxQuads(BoxQuadOptions)] + expected: FAIL + + [Text interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Text interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Text interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] + expected: FAIL + + [Text interface: document.createTextNode('x') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] + expected: FAIL + + [Text interface: calling getBoxQuads(BoxQuadOptions) on document.createTextNode('x') with too few arguments must throw TypeError] + expected: FAIL + + [Text interface: document.createTextNode('x') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Text interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] + expected: FAIL + + [Text interface: document.createTextNode('x') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Text interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] + expected: FAIL + + [Text interface: document.createTextNode('x') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] + expected: FAIL + + [Text interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] + expected: FAIL + + [Range interface: operation getClientRects()] + expected: FAIL + + [Range interface: operation getBoundingClientRect()] + expected: FAIL + + [Range interface: new Range() must inherit property "getClientRects()" with the proper type] + expected: FAIL + + [Range interface: new Range() must inherit property "getBoundingClientRect()" with the proper type] + expected: FAIL + + [Screen interface: attribute availWidth] + expected: FAIL + + [Screen interface: attribute availHeight] + expected: FAIL + + [Screen interface: attribute width] + expected: FAIL + + [Screen interface: attribute height] + expected: FAIL + + [Screen interface: screen must inherit property "availWidth" with the proper type] + expected: FAIL + + [Screen interface: screen must inherit property "availHeight" with the proper type] + expected: FAIL + + [Screen interface: screen must inherit property "width" with the proper type] + expected: FAIL + + [Screen interface: screen must inherit property "height" with the proper type] + expected: FAIL + + [CaretPosition interface: existence and properties of interface object] + expected: FAIL + + [CaretPosition interface object length] + expected: FAIL + + [CaretPosition interface object name] + expected: FAIL + + [CaretPosition interface: existence and properties of interface prototype object] + expected: FAIL + + [CaretPosition interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [CaretPosition interface: attribute offsetNode] + expected: FAIL + + [CaretPosition interface: attribute offset] + expected: FAIL + + [CaretPosition interface: operation getClientRect()] + expected: FAIL + + [CaretPosition must be primary interface of document.caretPositionFromPoint(5, 5)] + expected: FAIL + + [Stringification of document.caretPositionFromPoint(5, 5)] + expected: FAIL + + [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "offsetNode" with the proper type] + expected: FAIL + + [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "offset" with the proper type] + expected: FAIL + + [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "getClientRect()" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/scrollIntoView-empty-args.html.ini b/tests/wpt/metadata/cssom-view/scrollIntoView-empty-args.html.ini index d981842773e..c7addcc1db4 100644 --- a/tests/wpt/metadata/cssom-view/scrollIntoView-empty-args.html.ini +++ b/tests/wpt/metadata/cssom-view/scrollIntoView-empty-args.html.ini @@ -3,3 +3,21 @@ [scrollIntoView should behave correctly when the arg is not fully specified as ScrollIntoViewOptions] expected: FAIL + [scrollIntoView should behave correctly when the arg is omitted] + expected: FAIL + + [scrollIntoView should behave correctly when the arg is true] + expected: FAIL + + [scrollIntoView should behave correctly when the arg is false] + expected: FAIL + + [scrollIntoView should behave correctly when the arg is [object Object\]] + expected: FAIL + + [scrollIntoView should behave correctly when the arg is null] + expected: FAIL + + [scrollIntoView should behave correctly when the arg is undefined] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/scrollintoview.html.ini b/tests/wpt/metadata/cssom-view/scrollintoview.html.ini new file mode 100644 index 00000000000..889a1524f16 --- /dev/null +++ b/tests/wpt/metadata/cssom-view/scrollintoview.html.ini @@ -0,0 +1,122 @@ +[scrollintoview.html] + type: testharness + [scrollIntoView() starting at left,top] + expected: FAIL + + [scrollIntoView() starting at left,bottom] + expected: FAIL + + [scrollIntoView() starting at right,top] + expected: FAIL + + [scrollIntoView() starting at right,bottom] + expected: FAIL + + [scrollIntoView(true) starting at left,top] + expected: FAIL + + [scrollIntoView(true) starting at left,bottom] + expected: FAIL + + [scrollIntoView(true) starting at right,top] + expected: FAIL + + [scrollIntoView(true) starting at right,bottom] + expected: FAIL + + [scrollIntoView(false) starting at left,top] + expected: FAIL + + [scrollIntoView(false) starting at left,bottom] + expected: FAIL + + [scrollIntoView(false) starting at right,top] + expected: FAIL + + [scrollIntoView(false) starting at right,bottom] + expected: FAIL + + [scrollIntoView(undefined) starting at left,top] + expected: FAIL + + [scrollIntoView(undefined) starting at left,bottom] + expected: FAIL + + [scrollIntoView(undefined) starting at right,top] + expected: FAIL + + [scrollIntoView(undefined) starting at right,bottom] + expected: FAIL + + [scrollIntoView(null) starting at left,top] + expected: FAIL + + [scrollIntoView(null) starting at left,bottom] + expected: FAIL + + [scrollIntoView(null) starting at right,top] + expected: FAIL + + [scrollIntoView(null) starting at right,bottom] + expected: FAIL + + [scrollIntoView({}) starting at left,top] + expected: FAIL + + [scrollIntoView({}) starting at left,bottom] + expected: FAIL + + [scrollIntoView({}) starting at right,top] + expected: FAIL + + [scrollIntoView({}) starting at right,bottom] + expected: FAIL + + [scrollIntoView({block: "center", inline: "center"}) starting at left,top] + expected: FAIL + + [scrollIntoView({block: "center", inline: "center"}) starting at left,bottom] + expected: FAIL + + [scrollIntoView({block: "center", inline: "center"}) starting at right,top] + expected: FAIL + + [scrollIntoView({block: "center", inline: "center"}) starting at right,bottom] + expected: FAIL + + [scrollIntoView({block: "start", inline: "start"}) starting at left,top] + expected: FAIL + + [scrollIntoView({block: "start", inline: "start"}) starting at left,bottom] + expected: FAIL + + [scrollIntoView({block: "start", inline: "start"}) starting at right,top] + expected: FAIL + + [scrollIntoView({block: "start", inline: "start"}) starting at right,bottom] + expected: FAIL + + [scrollIntoView({block: "end", inline: "end"}) starting at left,top] + expected: FAIL + + [scrollIntoView({block: "end", inline: "end"}) starting at left,bottom] + expected: FAIL + + [scrollIntoView({block: "end", inline: "end"}) starting at right,top] + expected: FAIL + + [scrollIntoView({block: "end", inline: "end"}) starting at right,bottom] + expected: FAIL + + [scrollIntoView({block: "nearest", inline: "nearest"}) starting at left,top] + expected: FAIL + + [scrollIntoView({block: "nearest", inline: "nearest"}) starting at left,bottom] + expected: FAIL + + [scrollIntoView({block: "nearest", inline: "nearest"}) starting at right,top] + expected: FAIL + + [scrollIntoView({block: "nearest", inline: "nearest"}) starting at right,bottom] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom-view/ttwf-scrollintoview.html.ini b/tests/wpt/metadata/cssom-view/ttwf-scrollintoview.html.ini deleted file mode 100644 index d34cce1b6e4..00000000000 --- a/tests/wpt/metadata/cssom-view/ttwf-scrollintoview.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[ttwf-scrollintoview.html] - type: testharness - [check scrollIntoView] - expected: FAIL - diff --git a/tests/wpt/metadata/cssom/MediaList.xhtml.ini b/tests/wpt/metadata/cssom/MediaList.xhtml.ini deleted file mode 100644 index 4a38b8e3e91..00000000000 --- a/tests/wpt/metadata/cssom/MediaList.xhtml.ini +++ /dev/null @@ -1,3 +0,0 @@ -[MediaList.xhtml] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/cssom/MediaList2.xhtml.ini b/tests/wpt/metadata/cssom/MediaList2.xhtml.ini new file mode 100644 index 00000000000..658a82191b4 --- /dev/null +++ b/tests/wpt/metadata/cssom/MediaList2.xhtml.ini @@ -0,0 +1,3 @@ +[MediaList2.xhtml] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/cssom/cssom-ruleTypeAndOrder.html.ini b/tests/wpt/metadata/cssom/cssom-ruleTypeAndOrder.html.ini new file mode 100644 index 00000000000..22d72e03e3e --- /dev/null +++ b/tests/wpt/metadata/cssom/cssom-ruleTypeAndOrder.html.ini @@ -0,0 +1,5 @@ +[cssom-ruleTypeAndOrder.html] + type: testharness + [Type of #s-6 is expected to be page rule] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom/getComputedStyle-pseudo.html.ini b/tests/wpt/metadata/cssom/getComputedStyle-pseudo.html.ini index 3991ddbb2e8..8a71d1c334d 100644 --- a/tests/wpt/metadata/cssom/getComputedStyle-pseudo.html.ini +++ b/tests/wpt/metadata/cssom/getComputedStyle-pseudo.html.ini @@ -3,3 +3,9 @@ [Resolution of width is correct for ::before and ::after pseudo-elements of display: contents elements] expected: FAIL + [Resolution of nonexistent pseudo-element styles] + expected: FAIL + + [Item-based blockification of nonexistent pseudo-elements] + expected: FAIL + diff --git a/tests/wpt/metadata/cssom/index-003.html.ini b/tests/wpt/metadata/cssom/index-003.html.ini deleted file mode 100644 index 4ac80d65a61..00000000000 --- a/tests/wpt/metadata/cssom/index-003.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[index-003.html] - type: testharness - [page rule is expected to be @page :first] - expected: FAIL - diff --git a/tests/wpt/metadata/cssom/interfaces.html.ini b/tests/wpt/metadata/cssom/interfaces.html.ini index 0b9d9c1b706..49e36e1c06f 100644 --- a/tests/wpt/metadata/cssom/interfaces.html.ini +++ b/tests/wpt/metadata/cssom/interfaces.html.ini @@ -117,3 +117,432 @@ [CSSStyleDeclaration interface: attribute parentRule] expected: FAIL + [ProcessingInstruction interface: xmlss_pi must inherit property "sheet" with the proper type] + expected: FAIL + + [SVGElement interface: svg_element must inherit property "style" with the proper type] + expected: FAIL + + [MediaList must be primary interface of style_element.sheet.media] + expected: FAIL + + [Stringification of style_element.sheet.media] + expected: FAIL + + [MediaList interface: style_element.sheet.media must inherit property "mediaText" with the proper type] + expected: FAIL + + [MediaList interface: style_element.sheet.media must inherit property "length" with the proper type] + expected: FAIL + + [MediaList interface: style_element.sheet.media must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [MediaList interface: calling item(unsigned long) on style_element.sheet.media with too few arguments must throw TypeError] + expected: FAIL + + [MediaList interface: style_element.sheet.media must inherit property "appendMedium(CSSOMString)" with the proper type] + expected: FAIL + + [MediaList interface: calling appendMedium(CSSOMString) on style_element.sheet.media with too few arguments must throw TypeError] + expected: FAIL + + [MediaList interface: style_element.sheet.media must inherit property "deleteMedium(CSSOMString)" with the proper type] + expected: FAIL + + [MediaList interface: calling deleteMedium(CSSOMString) on style_element.sheet.media with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleSheet interface: operation insertRule(CSSOMString, unsigned long)] + expected: FAIL + + [CSSStyleSheet interface: style_element.sheet must inherit property "ownerRule" with the proper type] + expected: FAIL + + [StyleSheet interface: style_element.sheet must inherit property "type" with the proper type] + expected: FAIL + + [StyleSheet interface: style_element.sheet must inherit property "ownerNode" with the proper type] + expected: FAIL + + [StyleSheet interface: style_element.sheet must inherit property "parentStyleSheet" with the proper type] + expected: FAIL + + [StyleSheet interface: style_element.sheet must inherit property "media" with the proper type] + expected: FAIL + + [CSSStyleRule must be primary interface of style_element.sheet.cssRules[4\]] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[4\]] + expected: FAIL + + [CSSStyleRule interface: style_element.sheet.cssRules[4\] must inherit property "selectorText" with the proper type] + expected: FAIL + + [CSSStyleRule interface: style_element.sheet.cssRules[4\] must inherit property "style" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "STYLE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "CHARSET_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "IMPORT_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "MEDIA_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "FONT_FACE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "PAGE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "MARGIN_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "NAMESPACE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "type" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "parentStyleSheet" with the proper type] + expected: FAIL + + [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "href" with the proper type] + expected: FAIL + + [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "media" with the proper type] + expected: FAIL + + [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "styleSheet" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[0\] must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSGroupingRule interface: operation insertRule(CSSOMString, unsigned long)] + expected: FAIL + + [CSSPageRule must be primary interface of style_element.sheet.cssRules[2\]] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[2\]] + expected: FAIL + + [CSSPageRule interface: style_element.sheet.cssRules[2\] must inherit property "selectorText" with the proper type] + expected: FAIL + + [CSSPageRule interface: style_element.sheet.cssRules[2\] must inherit property "style" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\] must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSMarginRule must be primary interface of style_element.sheet.cssRules[2\].cssRules[0\]] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[2\].cssRules[0\]] + expected: FAIL + + [CSSMarginRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "name" with the proper type] + expected: FAIL + + [CSSMarginRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "style" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "STYLE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "CHARSET_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "IMPORT_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "MEDIA_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "FONT_FACE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "PAGE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "MARGIN_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "NAMESPACE_RULE" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "type" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "parentStyleSheet" with the proper type] + expected: FAIL + + [CSSRule interface: style_element.sheet.cssRules[1\] must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[4\].style] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[4\].style] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "length" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "removeProperty(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "cssFloat" with the proper type] + expected: FAIL + + [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[2\].style] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[2\].style] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "length" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "removeProperty(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "cssFloat" with the proper type] + expected: FAIL + + [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[2\].cssRules[0\].style] + expected: FAIL + + [Stringification of style_element.sheet.cssRules[2\].cssRules[0\].style] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "length" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "removeProperty(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "cssFloat" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: style_element.style must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration must be primary interface of svg_element.style] + expected: FAIL + + [Stringification of svg_element.style] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "cssText" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "length" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling item(unsigned long) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "getPropertyValue(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "removeProperty(CSSOMString)" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on svg_element.style with too few arguments must throw TypeError] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "parentRule" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: svg_element.style must inherit property "cssFloat" with the proper type] + expected: FAIL + + [CSSStyleDeclaration interface: getComputedStyle(svg_element) must inherit property "parentRule" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/abort/event.any.js.ini b/tests/wpt/metadata/dom/abort/event.any.js.ini new file mode 100644 index 00000000000..b2330c67e73 --- /dev/null +++ b/tests/wpt/metadata/dom/abort/event.any.js.ini @@ -0,0 +1,11 @@ +[event.any.html] + type: testharness + [AbortController() basics] + expected: FAIL + + +[event.any.worker.html] + type: testharness + [AbortController() basics] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/events/Event-timestamp-high-resolution.html.ini b/tests/wpt/metadata/dom/events/Event-timestamp-high-resolution.html.ini new file mode 100644 index 00000000000..3eb403727f6 --- /dev/null +++ b/tests/wpt/metadata/dom/events/Event-timestamp-high-resolution.html.ini @@ -0,0 +1,5 @@ +[Event-timestamp-high-resolution.html] + type: testharness + [Untitled] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/events/Event-timestamp-safe-resolution.html.ini b/tests/wpt/metadata/dom/events/Event-timestamp-safe-resolution.html.ini new file mode 100644 index 00000000000..f2a67345d6c --- /dev/null +++ b/tests/wpt/metadata/dom/events/Event-timestamp-safe-resolution.html.ini @@ -0,0 +1,5 @@ +[Event-timestamp-safe-resolution.html] + type: testharness + [Untitled] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/events/EventTarget-constructible.any.js.ini b/tests/wpt/metadata/dom/events/EventTarget-constructible.any.js.ini new file mode 100644 index 00000000000..5d2f463627d --- /dev/null +++ b/tests/wpt/metadata/dom/events/EventTarget-constructible.any.js.ini @@ -0,0 +1,17 @@ +[EventTarget-constructible.any.worker.html] + type: testharness + [A constructed EventTarget can be used as expected] + expected: FAIL + + [EventTarget can be subclassed] + expected: FAIL + + +[EventTarget-constructible.any.html] + type: testharness + [A constructed EventTarget can be used as expected] + expected: FAIL + + [EventTarget can be subclassed] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/interface-objects.html.ini b/tests/wpt/metadata/dom/interface-objects.html.ini new file mode 100644 index 00000000000..d36a5594af1 --- /dev/null +++ b/tests/wpt/metadata/dom/interface-objects.html.ini @@ -0,0 +1,8 @@ +[interface-objects.html] + type: testharness + [Should be able to delete AbortController.] + expected: FAIL + + [Should be able to delete AbortSignal.] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/interfaces.html.ini b/tests/wpt/metadata/dom/interfaces.html.ini index b382f65e2a5..f523e4876e2 100644 --- a/tests/wpt/metadata/dom/interfaces.html.ini +++ b/tests/wpt/metadata/dom/interfaces.html.ini @@ -480,3 +480,327 @@ [CustomEvent interface: operation initCustomEvent(DOMString,boolean,boolean,any)] expected: FAIL + [Event interface: operation initEvent(DOMString, boolean, boolean)] + expected: FAIL + + [CustomEvent interface: operation initCustomEvent(DOMString, boolean, boolean, any)] + expected: FAIL + + [EventTarget must be primary interface of new EventTarget()] + expected: FAIL + + [Stringification of new EventTarget()] + expected: FAIL + + [EventTarget interface: new EventTarget() must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new EventTarget() with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: new EventTarget() must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new EventTarget() with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: new EventTarget() must inherit property "dispatchEvent(Event)" with the proper type] + expected: FAIL + + [EventTarget interface: calling dispatchEvent(Event) on new EventTarget() with too few arguments must throw TypeError] + expected: FAIL + + [AbortController interface: existence and properties of interface object] + expected: FAIL + + [AbortController interface object length] + expected: FAIL + + [AbortController interface object name] + expected: FAIL + + [AbortController interface: existence and properties of interface prototype object] + expected: FAIL + + [AbortController interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [AbortController interface: attribute signal] + expected: FAIL + + [AbortController interface: operation abort()] + expected: FAIL + + [AbortController must be primary interface of new AbortController()] + expected: FAIL + + [Stringification of new AbortController()] + expected: FAIL + + [AbortController interface: new AbortController() must inherit property "signal" with the proper type] + expected: FAIL + + [AbortController interface: new AbortController() must inherit property "abort()" with the proper type] + expected: FAIL + + [AbortSignal interface: existence and properties of interface object] + expected: FAIL + + [AbortSignal interface object length] + expected: FAIL + + [AbortSignal interface object name] + expected: FAIL + + [AbortSignal interface: existence and properties of interface prototype object] + expected: FAIL + + [AbortSignal interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [AbortSignal interface: attribute aborted] + expected: FAIL + + [AbortSignal interface: attribute onabort] + expected: FAIL + + [AbortSignal must be primary interface of new AbortController().signal] + expected: FAIL + + [Stringification of new AbortController().signal] + expected: FAIL + + [AbortSignal interface: new AbortController().signal must inherit property "aborted" with the proper type] + expected: FAIL + + [AbortSignal interface: new AbortController().signal must inherit property "onabort" with the proper type] + expected: FAIL + + [EventTarget interface: new AbortController().signal must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: new AbortController().signal must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: new AbortController().signal must inherit property "dispatchEvent(Event)" with the proper type] + expected: FAIL + + [EventTarget interface: calling dispatchEvent(Event) on new AbortController().signal with too few arguments must throw TypeError] + expected: FAIL + + [MutationObserver interface: operation observe(Node, MutationObserverInit)] + expected: FAIL + + [Document interface: new Document() must inherit property "origin" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "createCDATASection(DOMString)" with the proper type] + expected: FAIL + + [Node interface: new Document() must inherit property "isConnected" with the proper type] + expected: FAIL + + [Document interface: xmlDoc must inherit property "origin" with the proper type] + expected: FAIL + + [Document interface: xmlDoc must inherit property "createCDATASection(DOMString)" with the proper type] + expected: FAIL + + [Node interface: xmlDoc must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: document.doctype must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: document.createDocumentFragment() must inherit property "isConnected" with the proper type] + expected: FAIL + + [Element interface: element must inherit property "slot" with the proper type] + expected: FAIL + + [Element interface: element must inherit property "attachShadow(ShadowRootInit)" with the proper type] + expected: FAIL + + [Element interface: element must inherit property "shadowRoot" with the proper type] + expected: FAIL + + [Element interface: element must inherit property "assignedSlot" with the proper type] + expected: FAIL + + [Node interface: element must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ELEMENT_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ATTRIBUTE_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "TEXT_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "CDATA_SECTION_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_REFERENCE_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "COMMENT_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_TYPE_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "NOTATION_NODE" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nodeType" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "baseURI" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ownerDocument" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "getRootNode(GetRootNodeOptions)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentNode" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentElement" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "hasChildNodes()" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "childNodes" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "firstChild" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lastChild" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "previousSibling" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nextSibling" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "normalize()" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "cloneNode(boolean)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isEqualNode(Node)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isSameNode(Node)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_DISCONNECTED" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "compareDocumentPosition(Node)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "contains(Node)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupPrefix(DOMString)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupNamespaceURI(DOMString)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isDefaultNamespace(DOMString)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "insertBefore(Node, Node)" with the proper type] + expected: FAIL + + [Node interface: calling insertBefore(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "appendChild(Node)" with the proper type] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "replaceChild(Node, Node)" with the proper type] + expected: FAIL + + [Node interface: calling replaceChild(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] + expected: FAIL + + [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeChild(Node)" with the proper type] + expected: FAIL + + [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] + expected: FAIL + + [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] + expected: FAIL + + [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "dispatchEvent(Event)" with the proper type] + expected: FAIL + + [Text interface: document.createTextNode("abc") must inherit property "assignedSlot" with the proper type] + expected: FAIL + + [Node interface: document.createTextNode("abc") must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inherit property "isConnected" with the proper type] + expected: FAIL + + [Node interface: document.createComment("abc") must inherit property "isConnected" with the proper type] + expected: FAIL + + [DOMTokenList interface: document.body.classList must inherit property "supports(DOMString)" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html.ini b/tests/wpt/metadata/dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html.ini deleted file mode 100644 index fd78368b14c..00000000000 --- a/tests/wpt/metadata/dom/nodes/Document-contentType/contentType/contenttype_datauri_01.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[contenttype_datauri_01.html] - type: testharness - [Data URI document.contentType === 'text/plain' when data URI MIME type is not set] - expected: FAIL - diff --git a/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini b/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini index c47fbec27f9..36f25ed6a30 100644 --- a/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini +++ b/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini @@ -220,3 +220,18 @@ [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "ProgressEvent"] expected: FAIL + [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "CloseEvent"] + expected: FAIL + + [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "ErrorEvent"] + expected: FAIL + + [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "PageTransitionEvent"] + expected: FAIL + + [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "PopStateEvent"] + expected: FAIL + + [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "WebGLContextEvent"] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/traversal/NodeIterator.html.ini b/tests/wpt/metadata/dom/traversal/NodeIterator.html.ini new file mode 100644 index 00000000000..e6d8f6eb579 --- /dev/null +++ b/tests/wpt/metadata/dom/traversal/NodeIterator.html.ini @@ -0,0 +1,5 @@ +[NodeIterator.html] + type: testharness + [Recursive filters need to throw] + expected: FAIL + diff --git a/tests/wpt/metadata/dom/traversal/TreeWalker.html.ini b/tests/wpt/metadata/dom/traversal/TreeWalker.html.ini new file mode 100644 index 00000000000..254681666cb --- /dev/null +++ b/tests/wpt/metadata/dom/traversal/TreeWalker.html.ini @@ -0,0 +1,5 @@ +[TreeWalker.html] + type: testharness + [Recursive filters need to throw] + expected: FAIL + diff --git a/tests/wpt/metadata/domparsing/XMLSerializer-serializeToString.html.ini b/tests/wpt/metadata/domparsing/XMLSerializer-serializeToString.html.ini index 8adcd02d010..c11898eb2f0 100644 --- a/tests/wpt/metadata/domparsing/XMLSerializer-serializeToString.html.ini +++ b/tests/wpt/metadata/domparsing/XMLSerializer-serializeToString.html.ini @@ -3,3 +3,12 @@ [check XMLSerializer.serializeToString method could parsing xmldoc to string] expected: FAIL + [check XMLSerializer.serializeToString method could parsing xmldoc to string] + expected: FAIL + + [Check if the default namespace is correctly reset.] + expected: FAIL + + [Check if there is no redundant empty namespace declaration.] + expected: FAIL + diff --git a/tests/wpt/metadata/domparsing/xml-serialization.xhtml.ini b/tests/wpt/metadata/domparsing/xml-serialization.xhtml.ini index e35d218f819..b1bd8c2f837 100644 --- a/tests/wpt/metadata/domparsing/xml-serialization.xhtml.ini +++ b/tests/wpt/metadata/domparsing/xml-serialization.xhtml.ini @@ -45,3 +45,9 @@ [ProcessingInstruction: target contains a 'COLON' (U+003A)] expected: FAIL + [Element: href attributes are not percent-encoded] + expected: FAIL + + [Element: query parts in href attributes are not percent-encoded] + expected: FAIL + diff --git a/tests/wpt/metadata/encoding/idlharness.html.ini b/tests/wpt/metadata/encoding/idlharness.html.ini index f06e556e736..ed1d61cc78d 100644 --- a/tests/wpt/metadata/encoding/idlharness.html.ini +++ b/tests/wpt/metadata/encoding/idlharness.html.ini @@ -8,3 +8,6 @@ bug: https://github.com/servo/servo/issues/5600 expected: FAIL + [TextDecoder interface: new TextDecoder() must inherit property "ignoreBOM" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/encoding/iso-2022-jp-decoder.html.ini b/tests/wpt/metadata/encoding/iso-2022-jp-decoder.html.ini index cb04667fae2..b2d42b895b6 100644 --- a/tests/wpt/metadata/encoding/iso-2022-jp-decoder.html.ini +++ b/tests/wpt/metadata/encoding/iso-2022-jp-decoder.html.ini @@ -4,9 +4,6 @@ [iso-2022-jp decoder: Error ESC] expected: FAIL - [iso-2022-jp decoder: ASCII ESC, character] - expected: FAIL - [iso-2022-jp decoder: Double ASCII ESC, character] expected: FAIL diff --git a/tests/wpt/metadata/encoding/replacement-encodings.html.ini b/tests/wpt/metadata/encoding/replacement-encodings.html.ini new file mode 100644 index 00000000000..7e3ea9188d0 --- /dev/null +++ b/tests/wpt/metadata/encoding/replacement-encodings.html.ini @@ -0,0 +1,20 @@ +[replacement-encodings.html] + type: testharness + [csiso2022kr - non-empty input decodes to one replacement character.] + expected: FAIL + + [hz-gb-2312 - non-empty input decodes to one replacement character.] + expected: FAIL + + [iso-2022-cn - non-empty input decodes to one replacement character.] + expected: FAIL + + [iso-2022-cn-ext - non-empty input decodes to one replacement character.] + expected: FAIL + + [iso-2022-kr - non-empty input decodes to one replacement character.] + expected: FAIL + + [replacement - non-empty input decodes to one replacement character.] + expected: FAIL + diff --git a/tests/wpt/metadata/encoding/unsupported-encodings.html.ini b/tests/wpt/metadata/encoding/unsupported-encodings.html.ini new file mode 100644 index 00000000000..a646e98cb25 --- /dev/null +++ b/tests/wpt/metadata/encoding/unsupported-encodings.html.ini @@ -0,0 +1,20 @@ +[unsupported-encodings.html] + type: testharness + [UTF-32 with BOM should decode as UTF-16LE] + expected: FAIL + + [utf-32 with BOM should decode as UTF-16LE] + expected: FAIL + + [UTF-32LE with BOM should decode as UTF-16LE] + expected: FAIL + + [utf-32le with BOM should decode as UTF-16LE] + expected: FAIL + + [UTF-32be with BOM should decode as windows-1252] + expected: FAIL + + [utf-32be with BOM should decode as windows-1252] + expected: FAIL + diff --git a/tests/wpt/metadata/encoding/utf-32.html.ini b/tests/wpt/metadata/encoding/utf-32.html.ini new file mode 100644 index 00000000000..e765bc39ad0 --- /dev/null +++ b/tests/wpt/metadata/encoding/utf-32.html.ini @@ -0,0 +1,26 @@ +[utf-32.html] + type: testharness + [Expect resources/utf-32-big-endian-bom.html to parse as windows-1252] + expected: FAIL + + [Expect resources/utf-32-big-endian-bom.xml to parse as windows-1252] + expected: FAIL + + [Expect resources/utf-32-big-endian-nobom.html to parse as windows-1252] + expected: FAIL + + [Expect resources/utf-32-big-endian-nobom.xml to parse as windows-1252] + expected: FAIL + + [Expect resources/utf-32-little-endian-bom.html to parse as UTF-16LE] + expected: FAIL + + [Expect resources/utf-32-little-endian-bom.xml to parse as UTF-16LE] + expected: FAIL + + [Expect resources/utf-32-little-endian-nobom.html to parse as windows-1252] + expected: FAIL + + [Expect resources/utf-32-little-endian-nobom.xml to parse as windows-1252] + expected: FAIL + diff --git a/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini b/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini new file mode 100644 index 00000000000..c6d26911739 --- /dev/null +++ b/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini @@ -0,0 +1,5 @@ +[format-field-id-null.htm] + type: testharness + [EventSource: U+0000 in id field] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/abort/cache.https.html.ini b/tests/wpt/metadata/fetch/api/abort/cache.https.html.ini new file mode 100644 index 00000000000..dbd86e8a836 --- /dev/null +++ b/tests/wpt/metadata/fetch/api/abort/cache.https.html.ini @@ -0,0 +1,5 @@ +[cache.https.html] + type: testharness + [Request signals & the cache API] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/abort/general-serviceworker.https.html.ini b/tests/wpt/metadata/fetch/api/abort/general-serviceworker.https.html.ini new file mode 100644 index 00000000000..255f1d956c5 --- /dev/null +++ b/tests/wpt/metadata/fetch/api/abort/general-serviceworker.https.html.ini @@ -0,0 +1,5 @@ +[general-serviceworker.https.html] + type: testharness + [General fetch abort tests in a service worker] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/abort/general-sharedworker.html.ini b/tests/wpt/metadata/fetch/api/abort/general-sharedworker.html.ini new file mode 100644 index 00000000000..8bce567bf90 --- /dev/null +++ b/tests/wpt/metadata/fetch/api/abort/general-sharedworker.html.ini @@ -0,0 +1,5 @@ +[general-sharedworker.html] + type: testharness + [General fetch abort tests - shared worker] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/abort/general.any.js.ini b/tests/wpt/metadata/fetch/api/abort/general.any.js.ini new file mode 100644 index 00000000000..8825bef8a9a --- /dev/null +++ b/tests/wpt/metadata/fetch/api/abort/general.any.js.ini @@ -0,0 +1,11 @@ +[general.any.worker.html] + type: testharness + [Untitled] + expected: FAIL + + +[general.any.html] + type: testharness + [Untitled] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/abort/serviceworker-intercepted.https.html.ini b/tests/wpt/metadata/fetch/api/abort/serviceworker-intercepted.https.html.ini new file mode 100644 index 00000000000..ef09369f8f9 --- /dev/null +++ b/tests/wpt/metadata/fetch/api/abort/serviceworker-intercepted.https.html.ini @@ -0,0 +1,5 @@ +[serviceworker-intercepted.https.html] + type: testharness + [Aborting fetch when intercepted by a service worker] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/basic/integrity-worker.html.ini b/tests/wpt/metadata/fetch/api/basic/integrity-worker.html.ini index ac2c3309cd9..b0388b78fe4 100644 --- a/tests/wpt/metadata/fetch/api/basic/integrity-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/basic/integrity-worker.html.ini @@ -12,3 +12,9 @@ [CORS invalid integrity] expected: FAIL + [Empty string integrity for opaque response] + expected: FAIL + + [SHA-* integrity for opaque response] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/basic/integrity.html.ini b/tests/wpt/metadata/fetch/api/basic/integrity.html.ini index caefc524dc1..9bdd3c7398e 100644 --- a/tests/wpt/metadata/fetch/api/basic/integrity.html.ini +++ b/tests/wpt/metadata/fetch/api/basic/integrity.html.ini @@ -12,3 +12,9 @@ [CORS invalid integrity] expected: FAIL + [Empty string integrity for opaque response] + expected: FAIL + + [SHA-* integrity for opaque response] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-expose-star-worker.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-expose-star-worker.html.ini index 29c5c9ab4b7..e0712fc68d6 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-expose-star-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-expose-star-worker.html.ini @@ -6,3 +6,9 @@ [Cannot use * for credentialed fetches] expected: FAIL + [* for credentialed fetches only matches literally] + expected: FAIL + + [* can be one of several values] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-expose-star.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-expose-star.html.ini index ca034df2169..2dcee9d9ad6 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-expose-star.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-expose-star.html.ini @@ -3,3 +3,6 @@ [Basic Access-Control-Expose-Headers: * support] expected: FAIL + [* can be one of several values] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-filtering-worker.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-filtering-worker.html.ini index 67cc3928cc3..9d4c18999c2 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-filtering-worker.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-filtering-worker.html.ini @@ -3,6 +3,6 @@ [CORS filter on Set-Cookie header] expected: FAIL - [CORS filter on Set-Cookie2 header, header is forbidden] + [CORS filter on Set-Cookie header, header is forbidden] expected: FAIL diff --git a/tests/wpt/metadata/fetch/api/cors/cors-filtering.html.ini b/tests/wpt/metadata/fetch/api/cors/cors-filtering.html.ini index 0c704314113..d2e48109f68 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-filtering.html.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-filtering.html.ini @@ -1,5 +1,8 @@ [cors-filtering.html] type: testharness - [CORS filter on Set-Cookie2 header, header is forbidden] + [CORS filter on Set-Cookie header] + expected: FAIL + + [CORS filter on Set-Cookie header, header is forbidden] expected: FAIL diff --git a/tests/wpt/metadata/fetch/api/cors/cors-preflight-cache.any.js.ini b/tests/wpt/metadata/fetch/api/cors/cors-preflight-cache.any.js.ini new file mode 100644 index 00000000000..b258f6fc49d --- /dev/null +++ b/tests/wpt/metadata/fetch/api/cors/cors-preflight-cache.any.js.ini @@ -0,0 +1,11 @@ +[cors-preflight-cache.any.html] + type: testharness + [Untitled] + expected: FAIL + + +[cors-preflight-cache.any.worker.html] + type: testharness + [Untitled] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/cors/cors-preflight-star.any.js.ini b/tests/wpt/metadata/fetch/api/cors/cors-preflight-star.any.js.ini index 80e5531ccfe..385bc215a33 100644 --- a/tests/wpt/metadata/fetch/api/cors/cors-preflight-star.any.js.ini +++ b/tests/wpt/metadata/fetch/api/cors/cors-preflight-star.any.js.ini @@ -12,6 +12,12 @@ [CORS that fails with credentials: true; method: GET (allowed: *); header: X-Test,1 (allowed: *)] expected: FAIL + [CORS that succeeds with credentials: true; method: PUT (allowed: PUT); header: (allowed: *)] + expected: FAIL + + [CORS that succeeds with credentials: true; method: * (allowed: *); header: *,1 (allowed: *)] + expected: FAIL + [cors-preflight-star.any.worker.html] type: testharness @@ -24,3 +30,9 @@ [CORS that succeeds with credentials: false; method: GET (allowed: get); header: X-Test,1 (allowed: x-test)] expected: FAIL + [CORS that succeeds with credentials: true; method: PUT (allowed: PUT); header: (allowed: *)] + expected: FAIL + + [CORS that succeeds with credentials: true; method: * (allowed: *); header: *,1 (allowed: *)] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/headers/headers-combine.html.ini b/tests/wpt/metadata/fetch/api/headers/headers-combine.html.ini index f12bddcc5c9..3ecf3b576f7 100644 --- a/tests/wpt/metadata/fetch/api/headers/headers-combine.html.ini +++ b/tests/wpt/metadata/fetch/api/headers/headers-combine.html.ini @@ -6,3 +6,9 @@ [Check append methods when called with already used name] expected: FAIL + [Iterate combined values] + expected: FAIL + + [Iterate combined values in sorted order] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/request/request-error.html.ini b/tests/wpt/metadata/fetch/api/request/request-error.html.ini new file mode 100644 index 00000000000..927d8bc675b --- /dev/null +++ b/tests/wpt/metadata/fetch/api/request/request-error.html.ini @@ -0,0 +1,5 @@ +[request-error.html] + type: testharness + [Request error] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/request/request-idl.html.ini b/tests/wpt/metadata/fetch/api/request/request-idl.html.ini index fbcb94902e6..dec37325cb8 100644 --- a/tests/wpt/metadata/fetch/api/request/request-idl.html.ini +++ b/tests/wpt/metadata/fetch/api/request/request-idl.html.ini @@ -27,3 +27,9 @@ [Request interface: new Request("") must inherit property "arrayBuffer" with the proper type (15)] expected: FAIL + [Request interface: new Request("") must inherit property "body" with the proper type] + expected: FAIL + + [Request interface: new Request("") must inherit property "arrayBuffer()" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/request/request-type-attribute-historical.html.ini b/tests/wpt/metadata/fetch/api/request/request-type-attribute-historical.html.ini new file mode 100644 index 00000000000..38d61a7f7cc --- /dev/null +++ b/tests/wpt/metadata/fetch/api/request/request-type-attribute-historical.html.ini @@ -0,0 +1,5 @@ +[request-type-attribute-historical.html] + type: testharness + ['type' getter should not exist on Request objects] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/response/response-cancel-stream.html.ini b/tests/wpt/metadata/fetch/api/response/response-cancel-stream.html.ini index 772b1b6822a..e5bd06a3de3 100644 --- a/tests/wpt/metadata/fetch/api/response/response-cancel-stream.html.ini +++ b/tests/wpt/metadata/fetch/api/response/response-cancel-stream.html.ini @@ -18,3 +18,6 @@ [Cancelling a closed Response stream] expected: FAIL + [Response consume blob and http bodies] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/response/response-idl.html.ini b/tests/wpt/metadata/fetch/api/response/response-idl.html.ini index 45d7ab91c23..d94659d4f16 100644 --- a/tests/wpt/metadata/fetch/api/response/response-idl.html.ini +++ b/tests/wpt/metadata/fetch/api/response/response-idl.html.ini @@ -39,3 +39,12 @@ [Response interface: new Response() must inherit property "arrayBuffer" with the proper type (12)] expected: FAIL + [Response interface: new Response() must inherit property "trailer" with the proper type] + expected: FAIL + + [Response interface: new Response() must inherit property "body" with the proper type] + expected: FAIL + + [Response interface: new Response() must inherit property "arrayBuffer()" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/api/response/response-stream-disturbed-6.html.ini b/tests/wpt/metadata/fetch/api/response/response-stream-disturbed-6.html.ini new file mode 100644 index 00000000000..5004396f961 --- /dev/null +++ b/tests/wpt/metadata/fetch/api/response/response-stream-disturbed-6.html.ini @@ -0,0 +1,17 @@ +[response-stream-disturbed-6.html] + type: testharness + [A non-closed stream on which read() has been called] + expected: FAIL + + [A non-closed stream on which cancel() has been called] + expected: FAIL + + [A closed stream on which read() has been called] + expected: FAIL + + [An errored stream on which read() has been called] + expected: FAIL + + [An errored stream on which cancel() has been called] + expected: FAIL + diff --git a/tests/wpt/metadata/fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html.ini b/tests/wpt/metadata/fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html.ini new file mode 100644 index 00000000000..3906138abaf --- /dev/null +++ b/tests/wpt/metadata/fetch/security/dangling-markup-mitigation-data-url.tentative.sub.html.ini @@ -0,0 +1,45 @@ +[dangling-markup-mitigation-data-url.tentative.sub.html] + type: testharness + expected: TIMEOUT + [] + expected: FAIL + + [] + expected: FAIL + + [] + expected: FAIL + + [] + expected: FAIL + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + + [] + expected: TIMEOUT + diff --git a/tests/wpt/metadata/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html.ini b/tests/wpt/metadata/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html.ini new file mode 100644 index 00000000000..2fc8b31f6c0 --- /dev/null +++ b/tests/wpt/metadata/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html.ini @@ -0,0 +1,15 @@ +[document-fullscreen-enabled-cross-origin.sub.html] + type: testharness + expected: TIMEOUT + [Fullscreen enabled test: same-origin-default] + expected: NOTRUN + + [Fullscreen enabled test: same-origin-allow] + expected: NOTRUN + + [Fullscreen enabled test: cross-origin-default] + expected: NOTRUN + + [Fullscreen enabled test: cross-origin-allow] + expected: NOTRUN + diff --git a/tests/wpt/metadata/fullscreen/interfaces.html.ini b/tests/wpt/metadata/fullscreen/interfaces.html.ini index 208654a6624..ae41b376b2f 100644 --- a/tests/wpt/metadata/fullscreen/interfaces.html.ini +++ b/tests/wpt/metadata/fullscreen/interfaces.html.ini @@ -30,3 +30,9 @@ [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenerror" with the proper type (36)] expected: FAIL + [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenchange" with the proper type] + expected: FAIL + + [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenerror" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/hr-time/idlharness.html.ini b/tests/wpt/metadata/hr-time/idlharness.html.ini index fb20250b14f..028cee6abc5 100644 --- a/tests/wpt/metadata/hr-time/idlharness.html.ini +++ b/tests/wpt/metadata/hr-time/idlharness.html.ini @@ -6,3 +6,18 @@ [Performance interface: existence and properties of interface prototype object] expected: FAIL + [Performance interface: attribute timeOrigin] + expected: FAIL + + [Performance interface: operation toJSON()] + expected: FAIL + + [Performance interface: [object Performance\] must inherit property "timeOrigin" with the proper type] + expected: FAIL + + [Performance interface: [object Performance\] must inherit property "toJSON()" with the proper type] + expected: FAIL + + [Test default toJSON operation of Performance] + expected: FAIL + diff --git a/tests/wpt/metadata/hr-time/timeOrigin.html.ini b/tests/wpt/metadata/hr-time/timeOrigin.html.ini new file mode 100644 index 00000000000..0ac417723d6 --- /dev/null +++ b/tests/wpt/metadata/hr-time/timeOrigin.html.ini @@ -0,0 +1,11 @@ +[timeOrigin.html] + type: testharness + [Window timeOrigin is close to Date.now() when there is no system clock adjustment.] + expected: FAIL + + [Window and worker timeOrigins are close when created one after another.] + expected: FAIL + + [Window and worker timeOrigins differ when worker is created after a delay.] + expected: FAIL + diff --git a/tests/wpt/metadata/hr-time/window-worker-timeOrigin.window.js.ini b/tests/wpt/metadata/hr-time/window-worker-timeOrigin.window.js.ini new file mode 100644 index 00000000000..ed7a2abc933 --- /dev/null +++ b/tests/wpt/metadata/hr-time/window-worker-timeOrigin.window.js.ini @@ -0,0 +1,5 @@ +[window-worker-timeOrigin.window.html] + type: testharness + [timeOrigin and now() should be correctly ordered between window and worker] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..99ceba7dc39 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html.ini @@ -0,0 +1,6 @@ +[window-name-after-cross-origin-aux-frame-navigation.sub.html] + type: testharness + expected: ERROR + [Test that the window name is correct] + expected: NOTRUN + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..e845bbb5ca0 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html.ini @@ -0,0 +1,3 @@ +[window-name-after-cross-origin-main-frame-navigation.sub.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..4aee46d8f3b --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html.ini @@ -0,0 +1,6 @@ +[window-name-after-cross-origin-sub-frame-navigation.sub.html] + type: testharness + expected: TIMEOUT + [Test that the window name is correct] + expected: NOTRUN + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..51401a84708 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html.ini @@ -0,0 +1,6 @@ +[window-name-after-same-origin-aux-frame-navigation.sub.html] + type: testharness + expected: ERROR + [Test that the window name is correct] + expected: NOTRUN + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..ba6fc505ce8 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini @@ -0,0 +1,3 @@ +[window-name-after-same-origin-main-frame-navigation.sub.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html.ini new file mode 100644 index 00000000000..7f5b039093c --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html.ini @@ -0,0 +1,6 @@ +[window-name-after-same-origin-sub-frame-navigation.sub.html] + type: testharness + expected: TIMEOUT + [Test that the window name is correct] + expected: NOTRUN + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html.ini new file mode 100644 index 00000000000..01d3096e84a --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/forward-triggers-hashchange.html.ini @@ -0,0 +1,5 @@ +[forward-triggers-hashchange.html] + type: testharness + [Navigating forward after replace() should still trigger hashchange] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html.ini new file mode 100644 index 00000000000..6d7012d4444 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/replacement-enabled.html.ini @@ -0,0 +1,5 @@ +[replacement-enabled.html] + type: testharness + [Navigating to a fragment should not clear forward history] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html.ini new file mode 100644 index 00000000000..86f6db6e6e5 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/browsing-the-web/scroll-to-fragid/scroll-frag-percent-encoded.html.ini @@ -0,0 +1,5 @@ +[scroll-frag-percent-encoded.html] + type: testharness + [Fragment Navigation: fragment id should be percent-decoded] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/history/the-history-interface/history_properties_only_fully_active.html.ini b/tests/wpt/metadata/html/browsers/history/the-history-interface/history_properties_only_fully_active.html.ini new file mode 100644 index 00000000000..d4e7acd2878 --- /dev/null +++ b/tests/wpt/metadata/html/browsers/history/the-history-interface/history_properties_only_fully_active.html.ini @@ -0,0 +1,5 @@ +[history_properties_only_fully_active.html] + type: testharness + [history properties should throw SecurityError when not in a fully active Document] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html.ini b/tests/wpt/metadata/html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html.ini index 81f700cd881..4b1075dca87 100644 --- a/tests/wpt/metadata/html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html.ini +++ b/tests/wpt/metadata/html/browsers/the-window-object/named-access-on-the-window-object/named-objects.html.ini @@ -18,3 +18,6 @@ [Check if window['a'\] contains all applet, embed, form, img, and object elements, and their order] expected: FAIL + [Check if window['a'\] contains all embed, form, img, and object elements, and their order] + expected: FAIL + diff --git a/tests/wpt/metadata/html/browsers/the-window-object/window-indexed-properties.html.ini b/tests/wpt/metadata/html/browsers/the-window-object/window-indexed-properties.html.ini index 3d24389f80e..fcb46bc7250 100644 --- a/tests/wpt/metadata/html/browsers/the-window-object/window-indexed-properties.html.ini +++ b/tests/wpt/metadata/html/browsers/the-window-object/window-indexed-properties.html.ini @@ -3,3 +3,6 @@ [Indexed properties of the window object (non-strict mode) 1] expected: FAIL + [Ensure indexed properties have the correct configuration] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/documents/dom-tree-accessors/nameditem-03.html.ini b/tests/wpt/metadata/html/dom/documents/dom-tree-accessors/nameditem-03.html.ini new file mode 100644 index 00000000000..2958573f6ca --- /dev/null +++ b/tests/wpt/metadata/html/dom/documents/dom-tree-accessors/nameditem-03.html.ini @@ -0,0 +1,5 @@ +[nameditem-03.html] + type: testharness + [applet elements are (mostly) gone] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/historical.html.ini b/tests/wpt/metadata/html/dom/historical.html.ini new file mode 100644 index 00000000000..461ce9164b9 --- /dev/null +++ b/tests/wpt/metadata/html/dom/historical.html.ini @@ -0,0 +1,17 @@ +[historical.html] + type: testharness + [document.applets is always empty] + expected: FAIL + + [HTMLAppletElement is no more] + expected: FAIL + + [document.all cannot find applet] + expected: FAIL + + [document cannot find applet] + expected: FAIL + + [applet is not styled] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/interfaces.html.ini b/tests/wpt/metadata/html/dom/interfaces.html.ini index e380802f1ce..8cfae61d852 100644 --- a/tests/wpt/metadata/html/dom/interfaces.html.ini +++ b/tests/wpt/metadata/html/dom/interfaces.html.ini @@ -10125,312 +10125,24 @@ [HTMLMenuElement interface: document.createElement("menu") must inherit property "compact" with the proper type (0)] expected: FAIL - [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to a new value via Reflect.setPrototypeOf should return false] - expected: FAIL - - [Window interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Window interface: attribute self] - expected: FAIL - - [Window interface: attribute history] - expected: FAIL - - [Window interface: attribute status] - expected: FAIL - - [Window interface: operation close()] - expected: FAIL - - [Window interface: attribute closed] - expected: FAIL - - [Window interface: attribute frames] - expected: FAIL - - [Window interface: attribute frameElement] - expected: FAIL - - [Window interface: attribute navigator] - expected: FAIL - - [Window interface: operation alert()] - expected: FAIL - [Window interface: operation postMessage(any,DOMString,[object Object\])] expected: FAIL - [Window interface: operation captureEvents()] - expected: FAIL - - [Window interface: operation releaseEvents()] - expected: FAIL - - [Window interface: attribute onabort] - expected: FAIL - - [Window interface: attribute onblur] - expected: FAIL - - [Window interface: attribute oncancel] - expected: FAIL - - [Window interface: attribute oncanplay] - expected: FAIL - - [Window interface: attribute oncanplaythrough] - expected: FAIL - - [Window interface: attribute onchange] - expected: FAIL - - [Window interface: attribute onclick] - expected: FAIL - - [Window interface: attribute onclose] - expected: FAIL - - [Window interface: attribute oncontextmenu] - expected: FAIL - - [Window interface: attribute oncuechange] - expected: FAIL - - [Window interface: attribute ondblclick] - expected: FAIL - - [Window interface: attribute ondrag] - expected: FAIL - - [Window interface: attribute ondragend] - expected: FAIL - - [Window interface: attribute ondragenter] - expected: FAIL - - [Window interface: attribute ondragexit] - expected: FAIL - - [Window interface: attribute ondragleave] - expected: FAIL - - [Window interface: attribute ondragover] - expected: FAIL - - [Window interface: attribute ondragstart] - expected: FAIL - - [Window interface: attribute ondrop] - expected: FAIL - - [Window interface: attribute ondurationchange] - expected: FAIL - - [Window interface: attribute onemptied] - expected: FAIL - - [Window interface: attribute onended] - expected: FAIL - - [Window interface: attribute onerror] - expected: FAIL - - [Window interface: attribute onfocus] - expected: FAIL - - [Window interface: attribute oninput] - expected: FAIL - - [Window interface: attribute oninvalid] - expected: FAIL - - [Window interface: attribute onkeydown] - expected: FAIL - - [Window interface: attribute onkeypress] - expected: FAIL - - [Window interface: attribute onkeyup] - expected: FAIL - - [Window interface: attribute onload] - expected: FAIL - - [Window interface: attribute onloadeddata] - expected: FAIL - - [Window interface: attribute onloadedmetadata] - expected: FAIL - [Window interface: attribute onloadend] expected: FAIL - [Window interface: attribute onloadstart] - expected: FAIL - - [Window interface: attribute onmousedown] - expected: FAIL - - [Window interface: attribute onmouseenter] - expected: FAIL - - [Window interface: attribute onmouseleave] - expected: FAIL - - [Window interface: attribute onmousemove] - expected: FAIL - - [Window interface: attribute onmouseout] - expected: FAIL - - [Window interface: attribute onmouseover] - expected: FAIL - - [Window interface: attribute onmouseup] - expected: FAIL - - [Window interface: attribute onwheel] - expected: FAIL - - [Window interface: attribute onpause] - expected: FAIL - - [Window interface: attribute onplay] - expected: FAIL - - [Window interface: attribute onplaying] - expected: FAIL - - [Window interface: attribute onprogress] - expected: FAIL - - [Window interface: attribute onratechange] - expected: FAIL - - [Window interface: attribute onreset] - expected: FAIL - - [Window interface: attribute onresize] - expected: FAIL - - [Window interface: attribute onscroll] - expected: FAIL - - [Window interface: attribute onseeked] - expected: FAIL - - [Window interface: attribute onseeking] - expected: FAIL - - [Window interface: attribute onselect] - expected: FAIL - - [Window interface: attribute onstalled] - expected: FAIL - - [Window interface: attribute onsubmit] - expected: FAIL - - [Window interface: attribute onsuspend] - expected: FAIL - - [Window interface: attribute ontimeupdate] - expected: FAIL - - [Window interface: attribute ontoggle] - expected: FAIL - - [Window interface: attribute onvolumechange] - expected: FAIL - - [Window interface: attribute onwaiting] - expected: FAIL - - [Window interface: attribute onafterprint] - expected: FAIL - - [Window interface: attribute onbeforeprint] - expected: FAIL - - [Window interface: attribute onbeforeunload] - expected: FAIL - - [Window interface: attribute onhashchange] - expected: FAIL - - [Window interface: attribute onlanguagechange] - expected: FAIL - - [Window interface: attribute onmessage] - expected: FAIL - [Window interface: attribute onmessageerror] expected: FAIL - [Window interface: attribute onoffline] - expected: FAIL - - [Window interface: attribute ononline] - expected: FAIL - - [Window interface: attribute onpagehide] - expected: FAIL - - [Window interface: attribute onpageshow] - expected: FAIL - - [Window interface: attribute onpopstate] - expected: FAIL - - [Window interface: attribute onrejectionhandled] - expected: FAIL - - [Window interface: attribute onstorage] - expected: FAIL - - [Window interface: attribute onunhandledrejection] - expected: FAIL - - [Window interface: attribute onunload] - expected: FAIL - - [Window interface: operation btoa(DOMString)] - expected: FAIL - - [Window interface: operation atob(DOMString)] - expected: FAIL - [Window interface: operation setTimeout(TimerHandler,long,any)] expected: FAIL - [Window interface: operation clearTimeout(long)] - expected: FAIL - [Window interface: operation setInterval(TimerHandler,long,any)] expected: FAIL - [Window interface: operation clearInterval(long)] - expected: FAIL - - [Window interface: attribute sessionStorage] - expected: FAIL - - [Window interface: attribute localStorage] - expected: FAIL - - [Stringification of window] - expected: FAIL - - [Window interface: window must have own property "window"] - expected: FAIL - [Window interface: window must inherit property "self" with the proper type (1)] expected: FAIL - [Window interface: window must have own property "document"] - expected: FAIL - [Window interface: window must inherit property "history" with the proper type (5)] expected: FAIL @@ -10446,9 +10158,6 @@ [Window interface: window must inherit property "frames" with the proper type (18)] expected: FAIL - [Window interface: window must have own property "top"] - expected: FAIL - [Window interface: window must inherit property "parent" with the proper type (22)] expected: FAIL @@ -10710,15 +10419,9 @@ [Window interface: window must inherit property "btoa" with the proper type (115)] expected: FAIL - [Window interface: calling btoa(DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - [Window interface: window must inherit property "atob" with the proper type (116)] expected: FAIL - [Window interface: calling atob(DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - [Window interface: window must inherit property "setTimeout" with the proper type (117)] expected: FAIL @@ -10728,9 +10431,6 @@ [Window interface: window must inherit property "clearTimeout" with the proper type (118)] expected: FAIL - [Window interface: calling clearTimeout(long) on window with too few arguments must throw TypeError] - expected: FAIL - [Window interface: window must inherit property "setInterval" with the proper type (119)] expected: FAIL @@ -10740,9 +10440,6 @@ [Window interface: window must inherit property "clearInterval" with the proper type (120)] expected: FAIL - [Window interface: calling clearInterval(long) on window with too few arguments must throw TypeError] - expected: FAIL - [Window interface: window must inherit property "createImageBitmap" with the proper type (121)] expected: FAIL @@ -10752,489 +10449,9 @@ [Window interface: window must inherit property "localStorage" with the proper type (124)] expected: FAIL - [History interface: existence and properties of interface object] - expected: FAIL - - [History interface object length] - expected: FAIL - - [History interface object name] - expected: FAIL - - [History interface: existence and properties of interface prototype object] - expected: FAIL - - [History interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [History interface: attribute length] - expected: FAIL - - [History interface: operation go(long)] - expected: FAIL - - [History interface: operation back()] - expected: FAIL - - [History interface: operation forward()] - expected: FAIL - - [History must be primary interface of window.history] - expected: FAIL - - [Location interface: existence and properties of interface object] - expected: FAIL - - [Location interface object length] - expected: FAIL - - [Location interface object name] - expected: FAIL - - [Location interface: existence and properties of interface prototype object] - expected: FAIL - - [Location interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Location must be primary interface of window.location] - expected: FAIL - - [PopStateEvent interface: existence and properties of interface object] - expected: FAIL - - [PopStateEvent interface object length] - expected: FAIL - - [PopStateEvent interface object name] - expected: FAIL - - [PopStateEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [PopStateEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [PopStateEvent interface: attribute state] - expected: FAIL - - [PopStateEvent must be primary interface of new PopStateEvent("popstate", { data: {} })] - expected: FAIL - - [HashChangeEvent interface: existence and properties of interface object] - expected: FAIL - - [HashChangeEvent interface object length] - expected: FAIL - - [HashChangeEvent interface object name] - expected: FAIL - - [HashChangeEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [HashChangeEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HashChangeEvent interface: attribute oldURL] - expected: FAIL - - [HashChangeEvent interface: attribute newURL] - expected: FAIL - - [PageTransitionEvent interface: existence and properties of interface object] - expected: FAIL - - [PageTransitionEvent interface object length] - expected: FAIL - - [PageTransitionEvent interface object name] - expected: FAIL - - [PageTransitionEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [PageTransitionEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [PageTransitionEvent interface: attribute persisted] - expected: FAIL - - [BeforeUnloadEvent interface: existence and properties of interface object] - expected: FAIL - - [BeforeUnloadEvent interface object length] - expected: FAIL - - [BeforeUnloadEvent interface object name] - expected: FAIL - - [BeforeUnloadEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [BeforeUnloadEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BeforeUnloadEvent interface: attribute returnValue] - expected: FAIL - - [ErrorEvent interface: existence and properties of interface object] - expected: FAIL - - [ErrorEvent interface object length] - expected: FAIL - - [ErrorEvent interface object name] - expected: FAIL - - [ErrorEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [ErrorEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ErrorEvent interface: attribute message] - expected: FAIL - - [ErrorEvent interface: attribute filename] - expected: FAIL - - [ErrorEvent interface: attribute lineno] - expected: FAIL - - [ErrorEvent interface: attribute colno] - expected: FAIL - - [ErrorEvent interface: attribute error] - expected: FAIL - - [Navigator interface: existence and properties of interface object] - expected: FAIL - - [Navigator interface object length] - expected: FAIL - - [Navigator interface object name] - expected: FAIL - - [Navigator interface: existence and properties of interface prototype object] - expected: FAIL - - [Navigator interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Navigator interface: attribute appCodeName] - expected: FAIL - - [Navigator interface: attribute appName] - expected: FAIL - - [Navigator interface: attribute appVersion] - expected: FAIL - - [Navigator interface: attribute platform] - expected: FAIL - - [Navigator interface: attribute product] - expected: FAIL - - [Navigator interface: attribute userAgent] - expected: FAIL - - [Navigator interface: attribute language] - expected: FAIL - - [Navigator interface: attribute cookieEnabled] - expected: FAIL - - [Navigator interface: attribute plugins] - expected: FAIL - - [Navigator interface: attribute mimeTypes] - expected: FAIL - - [Navigator interface: operation javaEnabled()] - expected: FAIL - - [Navigator must be primary interface of window.navigator] - expected: FAIL - - [PluginArray interface: existence and properties of interface object] - expected: FAIL - - [PluginArray interface object length] - expected: FAIL - - [PluginArray interface object name] - expected: FAIL - - [PluginArray interface: existence and properties of interface prototype object] - expected: FAIL - - [PluginArray interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [PluginArray interface: operation refresh(boolean)] - expected: FAIL - - [PluginArray interface: attribute length] - expected: FAIL - - [PluginArray interface: operation item(unsigned long)] - expected: FAIL - - [PluginArray interface: operation namedItem(DOMString)] - expected: FAIL - - [MimeTypeArray interface: existence and properties of interface object] - expected: FAIL - - [MimeTypeArray interface object length] - expected: FAIL - - [MimeTypeArray interface object name] - expected: FAIL - - [MimeTypeArray interface: existence and properties of interface prototype object] - expected: FAIL - - [MimeTypeArray interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MimeTypeArray interface: attribute length] - expected: FAIL - - [MimeTypeArray interface: operation item(unsigned long)] - expected: FAIL - - [MimeTypeArray interface: operation namedItem(DOMString)] - expected: FAIL - - [Plugin interface: existence and properties of interface object] - expected: FAIL - - [Plugin interface object length] - expected: FAIL - - [Plugin interface object name] - expected: FAIL - - [Plugin interface: existence and properties of interface prototype object] - expected: FAIL - - [Plugin interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Plugin interface: attribute name] - expected: FAIL - - [Plugin interface: attribute description] - expected: FAIL - - [Plugin interface: attribute filename] - expected: FAIL - - [Plugin interface: attribute length] - expected: FAIL - - [Plugin interface: operation item(unsigned long)] - expected: FAIL - - [Plugin interface: operation namedItem(DOMString)] - expected: FAIL - - [MimeType interface: existence and properties of interface object] - expected: FAIL - - [MimeType interface object length] - expected: FAIL - - [MimeType interface object name] - expected: FAIL - - [MimeType interface: existence and properties of interface prototype object] - expected: FAIL - - [MimeType interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MimeType interface: attribute type] - expected: FAIL - - [MimeType interface: attribute description] - expected: FAIL - - [MimeType interface: attribute suffixes] - expected: FAIL - - [MimeType interface: attribute enabledPlugin] - expected: FAIL - - [MessageEvent interface: existence and properties of interface object] - expected: FAIL - - [MessageEvent interface object length] - expected: FAIL - - [MessageEvent interface object name] - expected: FAIL - - [MessageEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [MessageEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessageEvent interface: attribute data] - expected: FAIL - - [MessageEvent interface: attribute origin] - expected: FAIL - - [MessageEvent interface: attribute lastEventId] - expected: FAIL - - [MessageEvent must be primary interface of new MessageEvent("message", { data: 5 })] - expected: FAIL - - [EventSource interface: existence and properties of interface object] - expected: FAIL - - [EventSource interface object length] - expected: FAIL - - [EventSource interface object name] - expected: FAIL - - [EventSource interface: existence and properties of interface prototype object] - expected: FAIL - - [EventSource interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [EventSource interface: attribute url] - expected: FAIL - - [EventSource interface: attribute withCredentials] - expected: FAIL - - [EventSource interface: constant CONNECTING on interface object] - expected: FAIL - - [EventSource interface: constant CONNECTING on interface prototype object] - expected: FAIL - - [EventSource interface: constant OPEN on interface object] - expected: FAIL - - [EventSource interface: constant OPEN on interface prototype object] - expected: FAIL - - [EventSource interface: constant CLOSED on interface object] - expected: FAIL - - [EventSource interface: constant CLOSED on interface prototype object] - expected: FAIL - - [EventSource interface: attribute readyState] - expected: FAIL - - [EventSource interface: attribute onopen] - expected: FAIL - - [EventSource interface: attribute onmessage] - expected: FAIL - - [EventSource interface: attribute onerror] - expected: FAIL - - [EventSource interface: operation close()] - expected: FAIL - - [WebSocket interface: existence and properties of interface object] - expected: FAIL - - [WebSocket interface object length] - expected: FAIL - - [WebSocket interface object name] - expected: FAIL - - [WebSocket interface: existence and properties of interface prototype object] - expected: FAIL - - [WebSocket interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [WebSocket interface: attribute url] - expected: FAIL - - [WebSocket interface: constant CONNECTING on interface object] - expected: FAIL - - [WebSocket interface: constant CONNECTING on interface prototype object] - expected: FAIL - - [WebSocket interface: constant OPEN on interface object] - expected: FAIL - - [WebSocket interface: constant OPEN on interface prototype object] - expected: FAIL - - [WebSocket interface: constant CLOSING on interface object] - expected: FAIL - - [WebSocket interface: constant CLOSING on interface prototype object] - expected: FAIL - - [WebSocket interface: constant CLOSED on interface object] - expected: FAIL - - [WebSocket interface: constant CLOSED on interface prototype object] - expected: FAIL - - [WebSocket interface: attribute readyState] - expected: FAIL - - [WebSocket interface: attribute bufferedAmount] - expected: FAIL - - [WebSocket interface: attribute onopen] - expected: FAIL - - [WebSocket interface: attribute onerror] - expected: FAIL - - [WebSocket interface: attribute onclose] - expected: FAIL - - [WebSocket interface: attribute protocol] - expected: FAIL - [WebSocket interface: operation close(unsigned short,USVString)] expected: FAIL - [WebSocket interface: attribute onmessage] - expected: FAIL - - [WebSocket interface: attribute binaryType] - expected: FAIL - - [WebSocket interface: operation send(USVString)] - expected: FAIL - - [WebSocket interface: operation send(Blob)] - expected: FAIL - - [WebSocket interface: operation send(ArrayBuffer)] - expected: FAIL - - [WebSocket interface: operation send(ArrayBufferView)] - expected: FAIL - - [Stringification of new WebSocket("ws://foo")] - expected: FAIL - [WebSocket interface: new WebSocket("ws://foo") must inherit property "url" with the proper type (0)] expected: FAIL @@ -11283,240 +10500,36 @@ [WebSocket interface: new WebSocket("ws://foo") must inherit property "send" with the proper type (15)] expected: FAIL - [WebSocket interface: calling send(USVString) on new WebSocket("ws://foo") with too few arguments must throw TypeError] - expected: FAIL - [WebSocket interface: new WebSocket("ws://foo") must inherit property "send" with the proper type (16)] expected: FAIL - [WebSocket interface: calling send(Blob) on new WebSocket("ws://foo") with too few arguments must throw TypeError] - expected: FAIL - [WebSocket interface: new WebSocket("ws://foo") must inherit property "send" with the proper type (17)] expected: FAIL - [WebSocket interface: calling send(ArrayBuffer) on new WebSocket("ws://foo") with too few arguments must throw TypeError] - expected: FAIL - [WebSocket interface: new WebSocket("ws://foo") must inherit property "send" with the proper type (18)] expected: FAIL - [WebSocket interface: calling send(ArrayBufferView) on new WebSocket("ws://foo") with too few arguments must throw TypeError] - expected: FAIL - - [CloseEvent interface: existence and properties of interface object] - expected: FAIL - - [CloseEvent interface object length] - expected: FAIL - - [CloseEvent interface object name] - expected: FAIL - - [CloseEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [CloseEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CloseEvent interface: attribute wasClean] - expected: FAIL - - [CloseEvent interface: attribute code] - expected: FAIL - - [CloseEvent interface: attribute reason] - expected: FAIL - - [CloseEvent must be primary interface of new CloseEvent("close")] - expected: FAIL - [MessagePort interface: attribute onmessageerror] expected: FAIL [BroadcastChannel interface: attribute onmessageerror] expected: FAIL - [Worker interface: existence and properties of interface object] - expected: FAIL - - [Worker interface object length] - expected: FAIL - - [Worker interface object name] - expected: FAIL - - [Worker interface: existence and properties of interface prototype object] - expected: FAIL - - [Worker interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Worker interface: operation terminate()] - expected: FAIL - [Worker interface: operation postMessage(any,[object Object\])] expected: FAIL - [Worker interface: attribute onmessage] - expected: FAIL - - [Worker interface: attribute onerror] - expected: FAIL - - [Storage interface: existence and properties of interface object] - expected: FAIL - - [Storage interface object length] - expected: FAIL - - [Storage interface object name] - expected: FAIL - - [Storage interface: existence and properties of interface prototype object] - expected: FAIL - - [Storage interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Storage interface: attribute length] - expected: FAIL - - [Storage interface: operation key(unsigned long)] - expected: FAIL - - [Storage interface: operation getItem(DOMString)] - expected: FAIL - [Storage interface: operation setItem(DOMString,DOMString)] expected: FAIL - [Storage interface: operation removeItem(DOMString)] - expected: FAIL - - [Storage interface: operation clear()] - expected: FAIL - - [StorageEvent interface: existence and properties of interface object] - expected: FAIL - - [StorageEvent interface object length] - expected: FAIL - - [StorageEvent interface object name] - expected: FAIL - - [StorageEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [StorageEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [StorageEvent interface: attribute key] - expected: FAIL - - [StorageEvent interface: attribute oldValue] - expected: FAIL - - [StorageEvent interface: attribute newValue] - expected: FAIL - - [StorageEvent interface: attribute url] - expected: FAIL - - [StorageEvent interface: attribute storageArea] - expected: FAIL - - [HTMLAppletElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLAppletElement interface object length] - expected: FAIL - - [HTMLAppletElement interface object name] - expected: FAIL - - [HTMLAppletElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLAppletElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLAppletElement interface: attribute name] - expected: FAIL - [Stringification of document.createElement("applet")] expected: FAIL [HTMLAppletElement interface: document.createElement("applet") must inherit property "name" with the proper type (7)] expected: FAIL - [HTMLFrameSetElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLFrameSetElement interface object length] - expected: FAIL - - [HTMLFrameSetElement interface object name] - expected: FAIL - - [HTMLFrameSetElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLFrameSetElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onafterprint] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onbeforeprint] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onbeforeunload] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onhashchange] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onlanguagechange] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onmessage] - expected: FAIL - [HTMLFrameSetElement interface: attribute onmessageerror] expected: FAIL - [HTMLFrameSetElement interface: attribute onoffline] - expected: FAIL - - [HTMLFrameSetElement interface: attribute ononline] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onpagehide] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onpageshow] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onpopstate] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onrejectionhandled] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onstorage] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onunhandledrejection] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onunload] - expected: FAIL - - [Stringification of document.createElement("frameset")] - expected: FAIL - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "onafterprint" with the proper type (2)] expected: FAIL @@ -11565,69 +10578,6 @@ [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "onunload" with the proper type (17)] expected: FAIL - [HTMLFrameElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLFrameElement interface object length] - expected: FAIL - - [HTMLFrameElement interface object name] - expected: FAIL - - [HTMLFrameElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLFrameElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Stringification of document.createElement("frame")] - expected: FAIL - - [HTMLDirectoryElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLDirectoryElement interface object length] - expected: FAIL - - [HTMLDirectoryElement interface object name] - expected: FAIL - - [HTMLDirectoryElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLDirectoryElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Stringification of document.createElement("dir")] - expected: FAIL - - [HTMLFontElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLFontElement interface object length] - expected: FAIL - - [HTMLFontElement interface object name] - expected: FAIL - - [HTMLFontElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLFontElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLFontElement interface: attribute color] - expected: FAIL - - [HTMLFontElement interface: attribute face] - expected: FAIL - - [HTMLFontElement interface: attribute size] - expected: FAIL - - [Stringification of document.createElement("font")] - expected: FAIL - [HTMLFontElement interface: document.createElement("font") must inherit property "color" with the proper type (0)] expected: FAIL @@ -11637,3 +10587,3723 @@ [HTMLFontElement interface: document.createElement("font") must inherit property "size" with the proper type (2)] expected: FAIL + [Document interface: operation execCommand(DOMString, boolean, DOMString)] + expected: FAIL + + [Document interface: attribute onsecuritypolicyviolation] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "dir" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "defaultView" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "designMode" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] + expected: FAIL + + [Document interface: calling execCommand(DOMString, boolean, DOMString) on iframe.contentDocument with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "queryCommandEnabled(DOMString)" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "queryCommandIndeterm(DOMString)" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "queryCommandState(DOMString)" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "queryCommandSupported(DOMString)" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "queryCommandValue(DOMString)" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "linkColor" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "vlinkColor" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "alinkColor" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "all" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "onauxclick" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "onloadend" with the proper type] + expected: FAIL + + [Document interface: iframe.contentDocument must inherit property "onsecuritypolicyviolation" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "dir" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "designMode" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] + expected: FAIL + + [Document interface: calling execCommand(DOMString, boolean, DOMString) on new Document() with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: new Document() must inherit property "queryCommandEnabled(DOMString)" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "queryCommandIndeterm(DOMString)" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "queryCommandState(DOMString)" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "queryCommandSupported(DOMString)" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "queryCommandValue(DOMString)" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "linkColor" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "vlinkColor" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "alinkColor" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "all" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "onauxclick" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "onloadend" with the proper type] + expected: FAIL + + [Document interface: new Document() must inherit property "onsecuritypolicyviolation" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "dir" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "designMode" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] + expected: FAIL + + [Document interface: calling execCommand(DOMString, boolean, DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandEnabled(DOMString)" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandIndeterm(DOMString)" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandState(DOMString)" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandSupported(DOMString)" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandValue(DOMString)" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "linkColor" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "vlinkColor" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "alinkColor" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "all" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onauxclick" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onloadend" with the proper type] + expected: FAIL + + [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onsecuritypolicyviolation" with the proper type] + expected: FAIL + + [HTMLAllCollection interface: document.all must inherit property "length" with the proper type] + expected: FAIL + + [HTMLAllCollection interface: document.all must inherit property "namedItem(DOMString)" with the proper type] + expected: FAIL + + [HTMLAllCollection interface: document.all must inherit property "item(DOMString)" with the proper type] + expected: FAIL + + [DOMStringList interface: existence and properties of interface object] + expected: FAIL + + [DOMStringList interface object length] + expected: FAIL + + [DOMStringList interface object name] + expected: FAIL + + [DOMStringList interface: existence and properties of interface prototype object] + expected: FAIL + + [DOMStringList interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [DOMStringList interface: attribute length] + expected: FAIL + + [DOMStringList interface: operation item(unsigned long)] + expected: FAIL + + [DOMStringList interface: operation contains(DOMString)] + expected: FAIL + + [HTMLElement interface: attribute onsecuritypolicyviolation] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "translate" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "dir" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "tabIndex" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "accessKey" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "accessKeyLabel" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "draggable" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "spellcheck" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "innerText" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "onauxclick" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "onloadend" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "onsecuritypolicyviolation" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "contentEditable" with the proper type] + expected: FAIL + + [HTMLElement interface: document.createElement("noscript") must inherit property "isContentEditable" with the proper type] + expected: FAIL + + [HTMLHtmlElement interface: document.createElement("html") must inherit property "version" with the proper type] + expected: FAIL + + [HTMLBaseElement interface: document.createElement("base") must inherit property "target" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: attribute scope] + expected: FAIL + + [HTMLLinkElement interface: attribute workerType] + expected: FAIL + + [HTMLLinkElement interface: attribute updateViaCache] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "as" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "nonce" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "sizes" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "referrerPolicy" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "scope" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "workerType" with the proper type] + expected: FAIL + + [HTMLLinkElement interface: document.createElement("link") must inherit property "updateViaCache" with the proper type] + expected: FAIL + + [HTMLMetaElement interface: document.createElement("meta") must inherit property "httpEquiv" with the proper type] + expected: FAIL + + [HTMLMetaElement interface: document.createElement("meta") must inherit property "scheme" with the proper type] + expected: FAIL + + [HTMLStyleElement interface: document.createElement("style") must inherit property "media" with the proper type] + expected: FAIL + + [HTMLStyleElement interface: document.createElement("style") must inherit property "nonce" with the proper type] + expected: FAIL + + [HTMLStyleElement interface: document.createElement("style") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLBodyElement interface: document.createElement("body") must inherit property "link" with the proper type] + expected: FAIL + + [HTMLBodyElement interface: document.createElement("body") must inherit property "vLink" with the proper type] + expected: FAIL + + [HTMLBodyElement interface: document.createElement("body") must inherit property "aLink" with the proper type] + expected: FAIL + + [HTMLBodyElement interface: document.createElement("body") must inherit property "onmessageerror" with the proper type] + expected: FAIL + + [HTMLHeadingElement interface: document.createElement("h1") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLParagraphElement interface: document.createElement("p") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLHRElement interface: document.createElement("hr") must inherit property "noShade" with the proper type] + expected: FAIL + + [HTMLHRElement interface: document.createElement("hr") must inherit property "size" with the proper type] + expected: FAIL + + [HTMLPreElement interface: document.createElement("pre") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLPreElement interface: document.createElement("listing") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLPreElement interface: document.createElement("xmp") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLQuoteElement interface: document.createElement("blockquote") must inherit property "cite" with the proper type] + expected: FAIL + + [HTMLQuoteElement interface: document.createElement("q") must inherit property "cite" with the proper type] + expected: FAIL + + [HTMLMenuElement interface: document.createElement("menu") must inherit property "compact" with the proper type] + expected: FAIL + + [HTMLLIElement interface: document.createElement("li") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "download" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "ping" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "hreflang" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "referrerPolicy" with the proper type] + expected: FAIL + + [HTMLAnchorElement interface: document.createElement("a") must inherit property "charset" with the proper type] + expected: FAIL + + [HTMLBRElement interface: document.createElement("br") must inherit property "clear" with the proper type] + expected: FAIL + + [HTMLModElement interface: document.createElement("ins") must inherit property "cite" with the proper type] + expected: FAIL + + [HTMLModElement interface: document.createElement("ins") must inherit property "dateTime" with the proper type] + expected: FAIL + + [HTMLModElement interface: document.createElement("del") must inherit property "cite" with the proper type] + expected: FAIL + + [HTMLModElement interface: document.createElement("del") must inherit property "dateTime" with the proper type] + expected: FAIL + + [HTMLSourceElement interface: document.createElement("source") must inherit property "src" with the proper type] + expected: FAIL + + [HTMLSourceElement interface: document.createElement("source") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLSourceElement interface: document.createElement("source") must inherit property "srcset" with the proper type] + expected: FAIL + + [HTMLSourceElement interface: document.createElement("source") must inherit property "sizes" with the proper type] + expected: FAIL + + [HTMLSourceElement interface: document.createElement("source") must inherit property "media" with the proper type] + expected: FAIL + + [HTMLImageElement interface: operation decode()] + expected: FAIL + + [HTMLImageElement interface: document.createElement("img") must inherit property "srcset" with the proper type] + expected: FAIL + + [HTMLImageElement interface: document.createElement("img") must inherit property "sizes" with the proper type] + expected: FAIL + + [HTMLImageElement interface: document.createElement("img") must inherit property "referrerPolicy" with the proper type] + expected: FAIL + + [HTMLImageElement interface: document.createElement("img") must inherit property "decode()" with the proper type] + expected: FAIL + + [HTMLImageElement interface: document.createElement("img") must inherit property "lowsrc" with the proper type] + expected: FAIL + + [HTMLImageElement interface: new Image() must inherit property "srcset" with the proper type] + expected: FAIL + + [HTMLImageElement interface: new Image() must inherit property "sizes" with the proper type] + expected: FAIL + + [HTMLImageElement interface: new Image() must inherit property "referrerPolicy" with the proper type] + expected: FAIL + + [HTMLImageElement interface: new Image() must inherit property "decode()" with the proper type] + expected: FAIL + + [HTMLImageElement interface: new Image() must inherit property "lowsrc" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "src" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "getSVGDocument()" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLEmbedElement interface: document.createElement("embed") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: operation getSVGDocument()] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "data" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "typeMustMatch" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "contentDocument" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "contentWindow" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "getSVGDocument()" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "archive" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "code" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "declare" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "hspace" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "standby" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "vspace" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "codeBase" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "codeType" with the proper type] + expected: FAIL + + [HTMLObjectElement interface: document.createElement("object") must inherit property "border" with the proper type] + expected: FAIL + + [HTMLParamElement interface: document.createElement("param") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLParamElement interface: document.createElement("param") must inherit property "value" with the proper type] + expected: FAIL + + [HTMLParamElement interface: document.createElement("param") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLParamElement interface: document.createElement("param") must inherit property "valueType" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: attribute playsInline] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "videoWidth" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "videoHeight" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "poster" with the proper type] + expected: FAIL + + [HTMLVideoElement interface: document.createElement("video") must inherit property "playsInline" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "srcObject" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "crossOrigin" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "buffered" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "seeking" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "currentTime" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "fastSeek(double)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "duration" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "getStartDate()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "defaultPlaybackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "playbackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "played" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "seekable" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "ended" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "loop" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "controls" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "volume" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "muted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "defaultMuted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "audioTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "videoTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "textTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("video") must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on document.createElement("video") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "srcObject" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "crossOrigin" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "buffered" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "seeking" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "currentTime" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "fastSeek(double)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "duration" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "getStartDate()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "defaultPlaybackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "playbackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "played" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "seekable" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "ended" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "loop" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "controls" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "volume" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "muted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "defaultMuted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "audioTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "videoTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "textTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: document.createElement("audio") must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on document.createElement("audio") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "error" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "src" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "srcObject" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "currentSrc" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "crossOrigin" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_EMPTY" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_IDLE" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_LOADING" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_NO_SOURCE" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "networkState" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "preload" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "buffered" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "load()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "canPlayType(DOMString)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "HAVE_NOTHING" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "HAVE_METADATA" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "HAVE_CURRENT_DATA" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "HAVE_FUTURE_DATA" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "HAVE_ENOUGH_DATA" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "readyState" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "seeking" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "currentTime" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "fastSeek(double)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "duration" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "getStartDate()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "paused" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "defaultPlaybackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "playbackRate" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "played" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "seekable" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "ended" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "autoplay" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "loop" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "play()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "pause()" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "controls" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "volume" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "muted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "defaultMuted" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "audioTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "videoTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "textTracks" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: new Audio() must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on new Audio() with too few arguments must throw TypeError] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "kind" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "src" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "srclang" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "label" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "default" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "NONE" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "LOADING" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "LOADED" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "ERROR" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "readyState" with the proper type] + expected: FAIL + + [HTMLTrackElement interface: document.createElement("track") must inherit property "track" with the proper type] + expected: FAIL + + [HTMLMediaElement interface: operation addTextTrack(TextTrackKind, DOMString, DOMString)] + expected: FAIL + + [TextTrackList interface: document.createElement("video").textTracks must inherit property "length" with the proper type] + expected: FAIL + + [TextTrackList interface: document.createElement("video").textTracks must inherit property "getTrackById(DOMString)" with the proper type] + expected: FAIL + + [TextTrackList interface: document.createElement("video").textTracks must inherit property "onchange" with the proper type] + expected: FAIL + + [TextTrackList interface: document.createElement("video").textTracks must inherit property "onaddtrack" with the proper type] + expected: FAIL + + [TextTrackList interface: document.createElement("video").textTracks must inherit property "onremovetrack" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "kind" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "label" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "language" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "id" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "inBandMetadataTrackDispatchType" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "mode" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "cues" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "activeCues" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "addCue(TextTrackCue)" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "removeCue(TextTrackCue)" with the proper type] + expected: FAIL + + [TextTrack interface: document.createElement("track").track must inherit property "oncuechange" with the proper type] + expected: FAIL + + [TextTrackCueList interface: document.createElement("video").addTextTrack("subtitles").cues must inherit property "length" with the proper type] + expected: FAIL + + [TextTrackCueList interface: document.createElement("video").addTextTrack("subtitles").cues must inherit property "getCueById(DOMString)" with the proper type] + expected: FAIL + + [TimeRanges interface: document.createElement("video").buffered must inherit property "length" with the proper type] + expected: FAIL + + [TimeRanges interface: document.createElement("video").buffered must inherit property "start(unsigned long)" with the proper type] + expected: FAIL + + [TimeRanges interface: document.createElement("video").buffered must inherit property "end(unsigned long)" with the proper type] + expected: FAIL + + [TrackEvent interface: new TrackEvent("addtrack", {track:document.createElement("track").track}) must inherit property "track" with the proper type] + expected: FAIL + + [HTMLMapElement interface: document.createElement("map") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLMapElement interface: document.createElement("map") must inherit property "areas" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "alt" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "coords" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "shape" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "target" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "download" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "ping" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "rel" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "referrerPolicy" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "noHref" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "href" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "origin" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "protocol" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "username" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "password" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "host" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "hostname" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "port" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "pathname" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "search" with the proper type] + expected: FAIL + + [HTMLAreaElement interface: document.createElement("area") must inherit property "hash" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "border" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "frame" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "rules" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "summary" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "cellPadding" with the proper type] + expected: FAIL + + [HTMLTableElement interface: document.createElement("table") must inherit property "cellSpacing" with the proper type] + expected: FAIL + + [HTMLTableCaptionElement interface: document.createElement("caption") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "span" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "span" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableColElement interface: document.createElement("col") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableRowElement interface: document.createElement("tr") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableRowElement interface: document.createElement("tr") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableRowElement interface: document.createElement("tr") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableRowElement interface: document.createElement("tr") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "headers" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "scope" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "abbr" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "axis" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "noWrap" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("td") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "headers" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "scope" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "abbr" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "axis" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "ch" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "chOff" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "noWrap" with the proper type] + expected: FAIL + + [HTMLTableCellElement interface: document.createElement("th") must inherit property "vAlign" with the proper type] + expected: FAIL + + [HTMLFormElement interface: document.createElement("form") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLFormElement interface: document.createElement("form") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: attribute files] + expected: FAIL + + [HTMLInputElement interface: operation setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on document.createElement("input") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: document.createElement("input") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("text") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("text") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("hidden") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("hidden") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("search") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("search") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("tel") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("tel") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("url") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("url") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("email") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("email") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("password") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("password") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("date") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("date") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("month") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("month") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("week") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("week") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("time") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("time") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("datetime-local") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("datetime-local") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("number") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("number") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("range") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("range") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("color") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("color") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("checkbox") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("checkbox") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("radio") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("radio") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "files" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("file") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("file") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("submit") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("submit") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("image") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("image") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("reset") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("reset") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "list" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "valueAsDate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "valueAsNumber" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "stepUp(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "stepDown(long)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLInputElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on createInput("button") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "align" with the proper type] + expected: FAIL + + [HTMLInputElement interface: createInput("button") must inherit property "useMap" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLButtonElement interface: document.createElement("button") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "required" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "selectedOptions" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLSelectElement interface: document.createElement("select") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLOptGroupElement interface: document.createElement("optgroup") must inherit property "label" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: document.createElement("option") must inherit property "index" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "disabled" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "form" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "label" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "defaultSelected" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "selected" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "value" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "text" with the proper type] + expected: FAIL + + [HTMLOptionElement interface: new Option() must inherit property "index" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: operation setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autocomplete" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autofocus" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "dirName" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "inputMode" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "maxLength" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "minLength" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "textLength" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validity" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "select()" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setRangeText(DOMString)" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setRangeText(DOMString, unsigned long, unsigned long, SelectionMode)" with the proper type] + expected: FAIL + + [HTMLTextAreaElement interface: calling setRangeText(DOMString, unsigned long, unsigned long, SelectionMode) on document.createElement("textarea") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "htmlFor" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "type" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "defaultValue" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "value" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "willValidate" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "validationMessage" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "checkValidity()" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "reportValidity()" with the proper type] + expected: FAIL + + [HTMLOutputElement interface: document.createElement("output") must inherit property "setCustomValidity(DOMString)" with the proper type] + expected: FAIL + + [HTMLProgressElement interface: document.createElement("progress") must inherit property "value" with the proper type] + expected: FAIL + + [HTMLProgressElement interface: document.createElement("progress") must inherit property "max" with the proper type] + expected: FAIL + + [HTMLProgressElement interface: document.createElement("progress") must inherit property "position" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "value" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "min" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "max" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "low" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "high" with the proper type] + expected: FAIL + + [HTMLMeterElement interface: document.createElement("meter") must inherit property "optimum" with the proper type] + expected: FAIL + + [HTMLLegendElement interface: document.createElement("legend") must inherit property "align" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "valueMissing" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "typeMismatch" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "patternMismatch" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "tooLong" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "tooShort" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "rangeUnderflow" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "rangeOverflow" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "stepMismatch" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "badInput" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "customError" with the proper type] + expected: FAIL + + [ValidityState interface: document.createElement("input").validity must inherit property "valid" with the proper type] + expected: FAIL + + [HTMLScriptElement interface: document.createElement("script") must inherit property "noModule" with the proper type] + expected: FAIL + + [HTMLScriptElement interface: document.createElement("script") must inherit property "nonce" with the proper type] + expected: FAIL + + [HTMLSlotElement interface: document.createElement("slot") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLSlotElement interface: document.createElement("slot") must inherit property "assignedNodes(AssignedNodesOptions)" with the proper type] + expected: FAIL + + [HTMLCanvasElement interface: operation toBlob(BlobCallback, DOMString, any)] + expected: FAIL + + [HTMLCanvasElement interface: operation transferControlToOffscreen()] + expected: FAIL + + [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "toBlob(BlobCallback, DOMString, any)" with the proper type] + expected: FAIL + + [HTMLCanvasElement interface: calling toBlob(BlobCallback, DOMString, any) on document.createElement("canvas") with too few arguments must throw TypeError] + expected: FAIL + + [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "transferControlToOffscreen()" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation drawFocusIfNeeded(Path2D, Element)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation fillText(DOMString, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [CanvasRenderingContext2D interface: operation strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getTransform()" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "imageSmoothingQuality" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "filter" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "resetClip()" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(unrestricted double, unrestricted double)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: calling isPointInStroke(unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(Path2D, unrestricted double, unrestricted double)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: calling isPointInStroke(Path2D, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Element)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Path2D, Element)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: calling drawFocusIfNeeded(Path2D, Element) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView()" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView(Path2D)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "fillText(DOMString, unrestricted double, unrestricted double, unrestricted double)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: calling fillText(DOMString, unrestricted double, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: calling strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "measureText(DOMString)" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "setLineDash([object Object\])" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getLineDash()" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "lineDashOffset" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "font" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textAlign" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textBaseline" with the proper type] + expected: FAIL + + [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "direction" with the proper type] + expected: FAIL + + [CanvasPattern interface: operation setTransform(DOMMatrix2DInit)] + expected: FAIL + + [Path2D interface: operation addPath(Path2D, DOMMatrix2DInit)] + expected: FAIL + + [Path2D interface: operation moveTo(unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation lineTo(unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [Path2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] + expected: FAIL + + [Path2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] + expected: FAIL + + [ImageBitmapRenderingContext interface: existence and properties of interface object] + expected: FAIL + + [ImageBitmapRenderingContext interface object length] + expected: FAIL + + [ImageBitmapRenderingContext interface object name] + expected: FAIL + + [ImageBitmapRenderingContext interface: existence and properties of interface prototype object] + expected: FAIL + + [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [ImageBitmapRenderingContext interface: attribute canvas] + expected: FAIL + + [ImageBitmapRenderingContext interface: operation transferFromImageBitmap(ImageBitmap)] + expected: FAIL + + [OffscreenCanvas interface: existence and properties of interface object] + expected: FAIL + + [OffscreenCanvas interface object length] + expected: FAIL + + [OffscreenCanvas interface object name] + expected: FAIL + + [OffscreenCanvas interface: existence and properties of interface prototype object] + expected: FAIL + + [OffscreenCanvas interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [OffscreenCanvas interface: attribute width] + expected: FAIL + + [OffscreenCanvas interface: attribute height] + expected: FAIL + + [OffscreenCanvas interface: operation getContext(OffscreenRenderingContextType, any)] + expected: FAIL + + [OffscreenCanvas interface: operation transferToImageBitmap()] + expected: FAIL + + [OffscreenCanvas interface: operation convertToBlob(ImageEncodeOptions)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: existence and properties of interface object] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface object length] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface object name] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation commit()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute canvas] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation save()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation restore()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation scale(unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation rotate(unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation translate(unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation transform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation getTransform()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation resetTransform()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute globalAlpha] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute globalCompositeOperation] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingEnabled] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingQuality] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute strokeStyle] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute fillStyle] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation createLinearGradient(double, double, double, double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation createRadialGradient(double, double, double, double, double, double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation createPattern(CanvasImageSource, DOMString)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetX] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetY] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute shadowBlur] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute shadowColor] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute filter] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation clearRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation fillRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation strokeRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation beginPath()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation fill(CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation fill(Path2D, CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation stroke()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation stroke(Path2D)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation clip(CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation clip(Path2D, CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation resetClip()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(unrestricted double, unrestricted double, CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(Path2D, unrestricted double, unrestricted double, CanvasFillRule)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation createImageData(long, long)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation createImageData(ImageData)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation getImageData(long, long, long, long)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long, long, long, long, long)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute lineWidth] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute lineCap] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute lineJoin] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute miterLimit] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation setLineDash([object Object\])] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation getLineDash()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: attribute lineDashOffset] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation closePath()] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation moveTo(unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation lineTo(unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] + expected: FAIL + + [OffscreenCanvasRenderingContext2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] + expected: FAIL + + [CustomElementRegistry interface: operation whenDefined(DOMString)] + expected: FAIL + + [DataTransfer interface: operation setDragImage(Element, long, long)] + expected: FAIL + + [DataTransfer interface: operation setData(DOMString, DOMString)] + expected: FAIL + + [DataTransferItemList interface: operation add(DOMString, DOMString)] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Object.setPrototypeOf should throw a TypeError] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via __proto__ should throw a TypeError] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Reflect.setPrototypeOf should return false] + expected: FAIL + + [Window interface: operation open(USVString, DOMString, DOMString)] + expected: FAIL + + [Window interface: operation prompt(DOMString, DOMString)] + expected: FAIL + + [Window interface: attribute onsecuritypolicyviolation] + expected: FAIL + + [Window interface: operation createImageBitmap(ImageBitmapSource, ImageBitmapOptions)] + expected: FAIL + + [Window interface: operation createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via Object.setPrototypeOf should not throw] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via __proto__ should not throw] + expected: FAIL + + [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via Reflect.setPrototypeOf should return true] + expected: FAIL + + [Window interface: window must inherit property "self" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "name" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "locationbar" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "menubar" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "personalbar" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "scrollbars" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "statusbar" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "toolbar" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "stop()" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "focus()" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "blur()" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "frames" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "length" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "opener" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "parent" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "open(USVString, DOMString, DOMString)" with the proper type] + expected: FAIL + + [Window interface: calling open(USVString, DOMString, DOMString) on window with too few arguments must throw TypeError] + expected: FAIL + + [Window interface: window must inherit property "applicationCache" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "confirm(DOMString)" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "prompt(DOMString, DOMString)" with the proper type] + expected: FAIL + + [Window interface: calling prompt(DOMString, DOMString) on window with too few arguments must throw TypeError] + expected: FAIL + + [Window interface: window must inherit property "print()" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "external" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "onauxclick" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "onloadend" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "onsecuritypolicyviolation" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "onmessageerror" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "origin" with the proper type] + expected: FAIL + + [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, ImageBitmapOptions)" with the proper type] + expected: FAIL + + [Window interface: calling createImageBitmap(ImageBitmapSource, ImageBitmapOptions) on window with too few arguments must throw TypeError] + expected: FAIL + + [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)" with the proper type] + expected: FAIL + + [Window interface: calling createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions) on window with too few arguments must throw TypeError] + expected: FAIL + + [History interface: operation pushState(any, DOMString, USVString)] + expected: FAIL + + [History interface: operation replaceState(any, DOMString, USVString)] + expected: FAIL + + [History interface: window.history must inherit property "scrollRestoration" with the proper type] + expected: FAIL + + [History interface: window.history must inherit property "state" with the proper type] + expected: FAIL + + [History interface: window.history must inherit property "pushState(any, DOMString, USVString)" with the proper type] + expected: FAIL + + [History interface: calling pushState(any, DOMString, USVString) on window.history with too few arguments must throw TypeError] + expected: FAIL + + [History interface: window.history must inherit property "replaceState(any, DOMString, USVString)" with the proper type] + expected: FAIL + + [History interface: calling replaceState(any, DOMString, USVString) on window.history with too few arguments must throw TypeError] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "UNCACHED" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "IDLE" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "CHECKING" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "DOWNLOADING" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "UPDATEREADY" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "OBSOLETE" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "status" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "update()" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "abort()" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "swapCache()" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onchecking" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onerror" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onnoupdate" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "ondownloading" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onprogress" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onupdateready" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "oncached" with the proper type] + expected: FAIL + + [ApplicationCache interface: window.applicationCache must inherit property "onobsolete" with the proper type] + expected: FAIL + + [PromiseRejectionEvent interface: existence and properties of interface object] + expected: FAIL + + [PromiseRejectionEvent interface object length] + expected: FAIL + + [PromiseRejectionEvent interface object name] + expected: FAIL + + [PromiseRejectionEvent interface: existence and properties of interface prototype object] + expected: FAIL + + [PromiseRejectionEvent interface: existence and properties of interface prototype object's "constructor" property] + expected: FAIL + + [PromiseRejectionEvent interface: attribute promise] + expected: FAIL + + [PromiseRejectionEvent interface: attribute reason] + expected: FAIL + + [Navigator interface: attribute oscpu] + expected: FAIL + + [Navigator interface: operation registerProtocolHandler(DOMString, USVString, DOMString)] + expected: FAIL + + [Navigator interface: operation unregisterProtocolHandler(DOMString, USVString)] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "productSub" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "vendor" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "vendorSub" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "oscpu" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "languages" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "onLine" with the proper type] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "registerProtocolHandler(DOMString, USVString, DOMString)" with the proper type] + expected: FAIL + + [Navigator interface: calling registerProtocolHandler(DOMString, USVString, DOMString) on window.navigator with too few arguments must throw TypeError] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "unregisterProtocolHandler(DOMString, USVString)" with the proper type] + expected: FAIL + + [Navigator interface: calling unregisterProtocolHandler(DOMString, USVString) on window.navigator with too few arguments must throw TypeError] + expected: FAIL + + [Navigator interface: window.navigator must inherit property "hardwareConcurrency" with the proper type] + expected: FAIL + + [ImageBitmap interface: operation close()] + expected: FAIL + + [MessageEvent interface: operation initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])] + expected: FAIL + + [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "source" with the proper type] + expected: FAIL + + [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "ports" with the proper type] + expected: FAIL + + [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])" with the proper type] + expected: FAIL + + [MessageEvent interface: calling initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\]) on new MessageEvent("message", { data: 5 }) with too few arguments must throw TypeError] + expected: FAIL + + [WebSocket interface: new WebSocket("ws://foo") must inherit property "extensions" with the proper type] + expected: FAIL + + [MessagePort interface: operation postMessage(any, [object Object\])] + expected: FAIL + + [Worker interface: attribute onmessageerror] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "behavior" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "bgColor" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "direction" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "height" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "hspace" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "loop" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollAmount" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollDelay" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "trueSpeed" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "vspace" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "width" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onbounce" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onfinish" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onstart" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "start()" with the proper type] + expected: FAIL + + [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "stop()" with the proper type] + expected: FAIL + + [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "cols" with the proper type] + expected: FAIL + + [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "rows" with the proper type] + expected: FAIL + + [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "onmessageerror" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "name" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "scrolling" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "src" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "frameBorder" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "longDesc" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "noResize" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentDocument" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentWindow" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginHeight" with the proper type] + expected: FAIL + + [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginWidth" with the proper type] + expected: FAIL + + [HTMLDirectoryElement interface: document.createElement("dir") must inherit property "compact" with the proper type] + expected: FAIL + + [External interface: window.external must inherit property "AddSearchProvider()" with the proper type] + expected: FAIL + + [External interface: window.external must inherit property "IsSearchProviderInstalled()" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/reflection-forms.html.ini b/tests/wpt/metadata/html/dom/reflection-forms.html.ini index f01c5b1cadb..886ddb659db 100644 --- a/tests/wpt/metadata/html/dom/reflection-forms.html.ini +++ b/tests/wpt/metadata/html/dom/reflection-forms.html.ini @@ -23982,3 +23982,609 @@ [textarea.inputMode: IDL set to "KataKana"] expected: FAIL + [input.autocomplete: typeof IDL attribute] + expected: FAIL + + [input.autocomplete: IDL get with DOM attribute unset] + expected: FAIL + + [input.autocomplete: IDL set to ""] + expected: FAIL + + [input.autocomplete: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [input.autocomplete: IDL set to undefined] + expected: FAIL + + [input.autocomplete: IDL set to 7] + expected: FAIL + + [input.autocomplete: IDL set to 1.5] + expected: FAIL + + [input.autocomplete: IDL set to true] + expected: FAIL + + [input.autocomplete: IDL set to false] + expected: FAIL + + [input.autocomplete: IDL set to object "[object Object\]"] + expected: FAIL + + [input.autocomplete: IDL set to NaN] + expected: FAIL + + [input.autocomplete: IDL set to Infinity] + expected: FAIL + + [input.autocomplete: IDL set to -Infinity] + expected: FAIL + + [input.autocomplete: IDL set to "\\0"] + expected: FAIL + + [input.autocomplete: IDL set to null] + expected: FAIL + + [input.autocomplete: IDL set to object "test-toString"] + expected: FAIL + + [input.autocomplete: IDL set to object "test-valueOf"] + expected: FAIL + + [input.height: typeof IDL attribute] + expected: FAIL + + [input.height: IDL get with DOM attribute unset] + expected: FAIL + + [input.height: IDL set to 0] + expected: FAIL + + [input.height: IDL set to 1] + expected: FAIL + + [input.height: IDL set to 257] + expected: FAIL + + [input.height: IDL set to 2147483647] + expected: FAIL + + [input.height: IDL set to "-0"] + expected: FAIL + + [input.height: IDL set to 2147483648] + expected: FAIL + + [input.height: IDL set to 4294967295] + expected: FAIL + + [input.inputMode: setAttribute() to "kana-name"] + expected: FAIL + + [input.inputMode: setAttribute() to "xkana-name"] + expected: FAIL + + [input.inputMode: setAttribute() to "kana-name\\0"] + expected: FAIL + + [input.inputMode: setAttribute() to "ana-name"] + expected: FAIL + + [input.inputMode: setAttribute() to "KANA-NAME"] + expected: FAIL + + [input.inputMode: setAttribute() to "Kana-name"] + expected: FAIL + + [input.inputMode: IDL set to "kana-name"] + expected: FAIL + + [input.inputMode: IDL set to "xkana-name"] + expected: FAIL + + [input.inputMode: IDL set to "kana-name\\0"] + expected: FAIL + + [input.inputMode: IDL set to "ana-name"] + expected: FAIL + + [input.inputMode: IDL set to "KANA-NAME"] + expected: FAIL + + [input.inputMode: IDL set to "Kana-name"] + expected: FAIL + + [input.width: typeof IDL attribute] + expected: FAIL + + [input.width: IDL get with DOM attribute unset] + expected: FAIL + + [input.width: IDL set to 0] + expected: FAIL + + [input.width: IDL set to 1] + expected: FAIL + + [input.width: IDL set to 257] + expected: FAIL + + [input.width: IDL set to 2147483647] + expected: FAIL + + [input.width: IDL set to "-0"] + expected: FAIL + + [input.width: IDL set to 2147483648] + expected: FAIL + + [input.width: IDL set to 4294967295] + expected: FAIL + + [select.autocomplete: typeof IDL attribute] + expected: FAIL + + [select.autocomplete: IDL get with DOM attribute unset] + expected: FAIL + + [select.autocomplete: IDL set to ""] + expected: FAIL + + [select.autocomplete: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [select.autocomplete: IDL set to undefined] + expected: FAIL + + [select.autocomplete: IDL set to 7] + expected: FAIL + + [select.autocomplete: IDL set to 1.5] + expected: FAIL + + [select.autocomplete: IDL set to true] + expected: FAIL + + [select.autocomplete: IDL set to false] + expected: FAIL + + [select.autocomplete: IDL set to object "[object Object\]"] + expected: FAIL + + [select.autocomplete: IDL set to NaN] + expected: FAIL + + [select.autocomplete: IDL set to Infinity] + expected: FAIL + + [select.autocomplete: IDL set to -Infinity] + expected: FAIL + + [select.autocomplete: IDL set to "\\0"] + expected: FAIL + + [select.autocomplete: IDL set to null] + expected: FAIL + + [select.autocomplete: IDL set to object "test-toString"] + expected: FAIL + + [select.autocomplete: IDL set to object "test-valueOf"] + expected: FAIL + + [textarea.autocomplete: typeof IDL attribute] + expected: FAIL + + [textarea.autocomplete: IDL get with DOM attribute unset] + expected: FAIL + + [textarea.autocomplete: IDL set to ""] + expected: FAIL + + [textarea.autocomplete: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [textarea.autocomplete: IDL set to undefined] + expected: FAIL + + [textarea.autocomplete: IDL set to 7] + expected: FAIL + + [textarea.autocomplete: IDL set to 1.5] + expected: FAIL + + [textarea.autocomplete: IDL set to true] + expected: FAIL + + [textarea.autocomplete: IDL set to false] + expected: FAIL + + [textarea.autocomplete: IDL set to object "[object Object\]"] + expected: FAIL + + [textarea.autocomplete: IDL set to NaN] + expected: FAIL + + [textarea.autocomplete: IDL set to Infinity] + expected: FAIL + + [textarea.autocomplete: IDL set to -Infinity] + expected: FAIL + + [textarea.autocomplete: IDL set to "\\0"] + expected: FAIL + + [textarea.autocomplete: IDL set to null] + expected: FAIL + + [textarea.autocomplete: IDL set to object "test-toString"] + expected: FAIL + + [textarea.autocomplete: IDL set to object "test-valueOf"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "kana-name"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "xkana-name"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "kana-name\\0"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "ana-name"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "KANA-NAME"] + expected: FAIL + + [textarea.inputMode: setAttribute() to "Kana-name"] + expected: FAIL + + [textarea.inputMode: IDL set to "kana-name"] + expected: FAIL + + [textarea.inputMode: IDL set to "xkana-name"] + expected: FAIL + + [textarea.inputMode: IDL set to "kana-name\\0"] + expected: FAIL + + [textarea.inputMode: IDL set to "ana-name"] + expected: FAIL + + [textarea.inputMode: IDL set to "KANA-NAME"] + expected: FAIL + + [textarea.inputMode: IDL set to "Kana-name"] + expected: FAIL + + [textarea.minLength: typeof IDL attribute] + expected: FAIL + + [textarea.minLength: IDL get with DOM attribute unset] + expected: FAIL + + [textarea.minLength: setAttribute() to -2147483649] + expected: FAIL + + [textarea.minLength: setAttribute() to -2147483648] + expected: FAIL + + [textarea.minLength: setAttribute() to -36] + expected: FAIL + + [textarea.minLength: setAttribute() to -1] + expected: FAIL + + [textarea.minLength: setAttribute() to -0] + expected: FAIL + + [textarea.minLength: setAttribute() to 0] + expected: FAIL + + [textarea.minLength: setAttribute() to 1] + expected: FAIL + + [textarea.minLength: setAttribute() to 2147483647] + expected: FAIL + + [textarea.minLength: setAttribute() to 2147483648] + expected: FAIL + + [textarea.minLength: setAttribute() to 4294967295] + expected: FAIL + + [textarea.minLength: setAttribute() to 4294967296] + expected: FAIL + + [textarea.minLength: setAttribute() to ""] + expected: FAIL + + [textarea.minLength: setAttribute() to "-1"] + expected: FAIL + + [textarea.minLength: setAttribute() to "-0"] + expected: FAIL + + [textarea.minLength: setAttribute() to "0"] + expected: FAIL + + [textarea.minLength: setAttribute() to "1"] + expected: FAIL + + [textarea.minLength: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\t7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\v7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\f7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\n7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\r7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "
7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "
7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to "᠎7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to " 7"] + expected: FAIL + + [textarea.minLength: setAttribute() to undefined] + expected: FAIL + + [textarea.minLength: setAttribute() to 1.5] + expected: FAIL + + [textarea.minLength: setAttribute() to true] + expected: FAIL + + [textarea.minLength: setAttribute() to false] + expected: FAIL + + [textarea.minLength: setAttribute() to object "[object Object\]"] + expected: FAIL + + [textarea.minLength: setAttribute() to NaN] + expected: FAIL + + [textarea.minLength: setAttribute() to Infinity] + expected: FAIL + + [textarea.minLength: setAttribute() to -Infinity] + expected: FAIL + + [textarea.minLength: setAttribute() to "\\0"] + expected: FAIL + + [textarea.minLength: setAttribute() to object "2"] + expected: FAIL + + [textarea.minLength: setAttribute() to object "3"] + expected: FAIL + + [textarea.minLength: IDL set to -2147483648] + expected: FAIL + + [textarea.minLength: IDL set to -36] + expected: FAIL + + [textarea.minLength: IDL set to -1] + expected: FAIL + + [textarea.minLength: IDL set to 0] + expected: FAIL + + [textarea.minLength: IDL set to 1] + expected: FAIL + + [textarea.minLength: IDL set to 2147483647] + expected: FAIL + + [meter.value: typeof IDL attribute] + expected: FAIL + + [meter.value: IDL get with DOM attribute unset] + expected: FAIL + + [meter.value: IDL set to -10000000000] + expected: FAIL + + [meter.value: IDL set to -1] + expected: FAIL + + [meter.value: IDL set to -0] + expected: FAIL + + [meter.value: IDL set to 0] + expected: FAIL + + [meter.value: IDL set to 1] + expected: FAIL + + [meter.value: IDL set to 10000000000] + expected: FAIL + + [meter.min: typeof IDL attribute] + expected: FAIL + + [meter.min: IDL get with DOM attribute unset] + expected: FAIL + + [meter.min: IDL set to -10000000000] + expected: FAIL + + [meter.min: IDL set to -1] + expected: FAIL + + [meter.min: IDL set to -0] + expected: FAIL + + [meter.min: IDL set to 0] + expected: FAIL + + [meter.min: IDL set to 1] + expected: FAIL + + [meter.min: IDL set to 10000000000] + expected: FAIL + + [meter.max: typeof IDL attribute] + expected: FAIL + + [meter.max: IDL get with DOM attribute unset] + expected: FAIL + + [meter.max: IDL set to -10000000000] + expected: FAIL + + [meter.max: IDL set to -1] + expected: FAIL + + [meter.max: IDL set to -0] + expected: FAIL + + [meter.max: IDL set to 0] + expected: FAIL + + [meter.max: IDL set to 1] + expected: FAIL + + [meter.max: IDL set to 10000000000] + expected: FAIL + + [meter.low: typeof IDL attribute] + expected: FAIL + + [meter.low: IDL get with DOM attribute unset] + expected: FAIL + + [meter.low: IDL set to -10000000000] + expected: FAIL + + [meter.low: IDL set to -1] + expected: FAIL + + [meter.low: IDL set to -0] + expected: FAIL + + [meter.low: IDL set to 0] + expected: FAIL + + [meter.low: IDL set to 1] + expected: FAIL + + [meter.low: IDL set to 10000000000] + expected: FAIL + + [meter.high: typeof IDL attribute] + expected: FAIL + + [meter.high: IDL get with DOM attribute unset] + expected: FAIL + + [meter.high: IDL set to -10000000000] + expected: FAIL + + [meter.high: IDL set to -1] + expected: FAIL + + [meter.high: IDL set to -0] + expected: FAIL + + [meter.high: IDL set to 0] + expected: FAIL + + [meter.high: IDL set to 1] + expected: FAIL + + [meter.high: IDL set to 10000000000] + expected: FAIL + + [meter.optimum: typeof IDL attribute] + expected: FAIL + + [meter.optimum: IDL get with DOM attribute unset] + expected: FAIL + + [meter.optimum: IDL set to -10000000000] + expected: FAIL + + [meter.optimum: IDL set to -1] + expected: FAIL + + [meter.optimum: IDL set to -0] + expected: FAIL + + [meter.optimum: IDL set to 0] + expected: FAIL + + [meter.optimum: IDL set to 1] + expected: FAIL + + [meter.optimum: IDL set to 10000000000] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/reflection-metadata.html.ini b/tests/wpt/metadata/html/dom/reflection-metadata.html.ini index 7c7c6733eaa..68a2c71d7db 100644 --- a/tests/wpt/metadata/html/dom/reflection-metadata.html.ini +++ b/tests/wpt/metadata/html/dom/reflection-metadata.html.ini @@ -10926,3 +10926,540 @@ [link.as: IDL set to "XSLT"] expected: FAIL + [base.href: IDL get with DOM attribute unset] + expected: FAIL + + [link.scope: typeof IDL attribute] + expected: FAIL + + [link.scope: IDL get with DOM attribute unset] + expected: FAIL + + [link.scope: setAttribute() to ""] + expected: FAIL + + [link.scope: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.scope: setAttribute() to undefined] + expected: FAIL + + [link.scope: setAttribute() to 7] + expected: FAIL + + [link.scope: setAttribute() to 1.5] + expected: FAIL + + [link.scope: setAttribute() to true] + expected: FAIL + + [link.scope: setAttribute() to false] + expected: FAIL + + [link.scope: setAttribute() to object "[object Object\]"] + expected: FAIL + + [link.scope: setAttribute() to NaN] + expected: FAIL + + [link.scope: setAttribute() to Infinity] + expected: FAIL + + [link.scope: setAttribute() to -Infinity] + expected: FAIL + + [link.scope: setAttribute() to "\\0"] + expected: FAIL + + [link.scope: setAttribute() to null] + expected: FAIL + + [link.scope: setAttribute() to object "test-toString"] + expected: FAIL + + [link.scope: setAttribute() to object "test-valueOf"] + expected: FAIL + + [link.scope: IDL set to ""] + expected: FAIL + + [link.scope: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.scope: IDL set to undefined] + expected: FAIL + + [link.scope: IDL set to 7] + expected: FAIL + + [link.scope: IDL set to 1.5] + expected: FAIL + + [link.scope: IDL set to true] + expected: FAIL + + [link.scope: IDL set to false] + expected: FAIL + + [link.scope: IDL set to object "[object Object\]"] + expected: FAIL + + [link.scope: IDL set to NaN] + expected: FAIL + + [link.scope: IDL set to Infinity] + expected: FAIL + + [link.scope: IDL set to -Infinity] + expected: FAIL + + [link.scope: IDL set to "\\0"] + expected: FAIL + + [link.scope: IDL set to null] + expected: FAIL + + [link.scope: IDL set to object "test-toString"] + expected: FAIL + + [link.scope: IDL set to object "test-valueOf"] + expected: FAIL + + [link.workerType: typeof IDL attribute] + expected: FAIL + + [link.workerType: IDL get with DOM attribute unset] + expected: FAIL + + [link.workerType: setAttribute() to ""] + expected: FAIL + + [link.workerType: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.workerType: setAttribute() to undefined] + expected: FAIL + + [link.workerType: setAttribute() to 7] + expected: FAIL + + [link.workerType: setAttribute() to 1.5] + expected: FAIL + + [link.workerType: setAttribute() to true] + expected: FAIL + + [link.workerType: setAttribute() to false] + expected: FAIL + + [link.workerType: setAttribute() to object "[object Object\]"] + expected: FAIL + + [link.workerType: setAttribute() to NaN] + expected: FAIL + + [link.workerType: setAttribute() to Infinity] + expected: FAIL + + [link.workerType: setAttribute() to -Infinity] + expected: FAIL + + [link.workerType: setAttribute() to "\\0"] + expected: FAIL + + [link.workerType: setAttribute() to null] + expected: FAIL + + [link.workerType: setAttribute() to object "test-toString"] + expected: FAIL + + [link.workerType: setAttribute() to object "test-valueOf"] + expected: FAIL + + [link.workerType: setAttribute() to "classic"] + expected: FAIL + + [link.workerType: setAttribute() to "xclassic"] + expected: FAIL + + [link.workerType: setAttribute() to "classic\\0"] + expected: FAIL + + [link.workerType: setAttribute() to "lassic"] + expected: FAIL + + [link.workerType: setAttribute() to "CLASSIC"] + expected: FAIL + + [link.workerType: setAttribute() to "module"] + expected: FAIL + + [link.workerType: setAttribute() to "xmodule"] + expected: FAIL + + [link.workerType: setAttribute() to "module\\0"] + expected: FAIL + + [link.workerType: setAttribute() to "odule"] + expected: FAIL + + [link.workerType: setAttribute() to "MODULE"] + expected: FAIL + + [link.workerType: IDL set to ""] + expected: FAIL + + [link.workerType: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.workerType: IDL set to undefined] + expected: FAIL + + [link.workerType: IDL set to 7] + expected: FAIL + + [link.workerType: IDL set to 1.5] + expected: FAIL + + [link.workerType: IDL set to true] + expected: FAIL + + [link.workerType: IDL set to false] + expected: FAIL + + [link.workerType: IDL set to object "[object Object\]"] + expected: FAIL + + [link.workerType: IDL set to NaN] + expected: FAIL + + [link.workerType: IDL set to Infinity] + expected: FAIL + + [link.workerType: IDL set to -Infinity] + expected: FAIL + + [link.workerType: IDL set to "\\0"] + expected: FAIL + + [link.workerType: IDL set to null] + expected: FAIL + + [link.workerType: IDL set to object "test-toString"] + expected: FAIL + + [link.workerType: IDL set to object "test-valueOf"] + expected: FAIL + + [link.workerType: IDL set to "classic"] + expected: FAIL + + [link.workerType: IDL set to "xclassic"] + expected: FAIL + + [link.workerType: IDL set to "classic\\0"] + expected: FAIL + + [link.workerType: IDL set to "lassic"] + expected: FAIL + + [link.workerType: IDL set to "CLASSIC"] + expected: FAIL + + [link.workerType: IDL set to "module"] + expected: FAIL + + [link.workerType: IDL set to "xmodule"] + expected: FAIL + + [link.workerType: IDL set to "module\\0"] + expected: FAIL + + [link.workerType: IDL set to "odule"] + expected: FAIL + + [link.workerType: IDL set to "MODULE"] + expected: FAIL + + [link.updateViaCache: typeof IDL attribute] + expected: FAIL + + [link.updateViaCache: IDL get with DOM attribute unset] + expected: FAIL + + [link.updateViaCache: setAttribute() to ""] + expected: FAIL + + [link.updateViaCache: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.updateViaCache: setAttribute() to undefined] + expected: FAIL + + [link.updateViaCache: setAttribute() to 7] + expected: FAIL + + [link.updateViaCache: setAttribute() to 1.5] + expected: FAIL + + [link.updateViaCache: setAttribute() to true] + expected: FAIL + + [link.updateViaCache: setAttribute() to false] + expected: FAIL + + [link.updateViaCache: setAttribute() to object "[object Object\]"] + expected: FAIL + + [link.updateViaCache: setAttribute() to NaN] + expected: FAIL + + [link.updateViaCache: setAttribute() to Infinity] + expected: FAIL + + [link.updateViaCache: setAttribute() to -Infinity] + expected: FAIL + + [link.updateViaCache: setAttribute() to "\\0"] + expected: FAIL + + [link.updateViaCache: setAttribute() to null] + expected: FAIL + + [link.updateViaCache: setAttribute() to object "test-toString"] + expected: FAIL + + [link.updateViaCache: setAttribute() to object "test-valueOf"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "imports"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "ximports"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "imports\\0"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "mports"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "IMPORTS"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "all"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "xall"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "all\\0"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "ll"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "ALL"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "none"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "xnone"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "none\\0"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "one"] + expected: FAIL + + [link.updateViaCache: setAttribute() to "NONE"] + expected: FAIL + + [link.updateViaCache: IDL set to ""] + expected: FAIL + + [link.updateViaCache: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [link.updateViaCache: IDL set to undefined] + expected: FAIL + + [link.updateViaCache: IDL set to 7] + expected: FAIL + + [link.updateViaCache: IDL set to 1.5] + expected: FAIL + + [link.updateViaCache: IDL set to true] + expected: FAIL + + [link.updateViaCache: IDL set to false] + expected: FAIL + + [link.updateViaCache: IDL set to object "[object Object\]"] + expected: FAIL + + [link.updateViaCache: IDL set to NaN] + expected: FAIL + + [link.updateViaCache: IDL set to Infinity] + expected: FAIL + + [link.updateViaCache: IDL set to -Infinity] + expected: FAIL + + [link.updateViaCache: IDL set to "\\0"] + expected: FAIL + + [link.updateViaCache: IDL set to null] + expected: FAIL + + [link.updateViaCache: IDL set to object "test-toString"] + expected: FAIL + + [link.updateViaCache: IDL set to object "test-valueOf"] + expected: FAIL + + [link.updateViaCache: IDL set to "imports"] + expected: FAIL + + [link.updateViaCache: IDL set to "ximports"] + expected: FAIL + + [link.updateViaCache: IDL set to "imports\\0"] + expected: FAIL + + [link.updateViaCache: IDL set to "mports"] + expected: FAIL + + [link.updateViaCache: IDL set to "IMPORTS"] + expected: FAIL + + [link.updateViaCache: IDL set to "all"] + expected: FAIL + + [link.updateViaCache: IDL set to "xall"] + expected: FAIL + + [link.updateViaCache: IDL set to "all\\0"] + expected: FAIL + + [link.updateViaCache: IDL set to "ll"] + expected: FAIL + + [link.updateViaCache: IDL set to "ALL"] + expected: FAIL + + [link.updateViaCache: IDL set to "none"] + expected: FAIL + + [link.updateViaCache: IDL set to "xnone"] + expected: FAIL + + [link.updateViaCache: IDL set to "none\\0"] + expected: FAIL + + [link.updateViaCache: IDL set to "one"] + expected: FAIL + + [link.updateViaCache: IDL set to "NONE"] + expected: FAIL + + [style.nonce: typeof IDL attribute] + expected: FAIL + + [style.nonce: IDL get with DOM attribute unset] + expected: FAIL + + [style.nonce: setAttribute() to ""] + expected: FAIL + + [style.nonce: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [style.nonce: setAttribute() to undefined] + expected: FAIL + + [style.nonce: setAttribute() to 7] + expected: FAIL + + [style.nonce: setAttribute() to 1.5] + expected: FAIL + + [style.nonce: setAttribute() to true] + expected: FAIL + + [style.nonce: setAttribute() to false] + expected: FAIL + + [style.nonce: setAttribute() to object "[object Object\]"] + expected: FAIL + + [style.nonce: setAttribute() to NaN] + expected: FAIL + + [style.nonce: setAttribute() to Infinity] + expected: FAIL + + [style.nonce: setAttribute() to -Infinity] + expected: FAIL + + [style.nonce: setAttribute() to "\\0"] + expected: FAIL + + [style.nonce: setAttribute() to null] + expected: FAIL + + [style.nonce: setAttribute() to object "test-toString"] + expected: FAIL + + [style.nonce: setAttribute() to object "test-valueOf"] + expected: FAIL + + [style.nonce: IDL set to ""] + expected: FAIL + + [style.nonce: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [style.nonce: IDL set to undefined] + expected: FAIL + + [style.nonce: IDL set to 7] + expected: FAIL + + [style.nonce: IDL set to 1.5] + expected: FAIL + + [style.nonce: IDL set to true] + expected: FAIL + + [style.nonce: IDL set to false] + expected: FAIL + + [style.nonce: IDL set to object "[object Object\]"] + expected: FAIL + + [style.nonce: IDL set to NaN] + expected: FAIL + + [style.nonce: IDL set to Infinity] + expected: FAIL + + [style.nonce: IDL set to -Infinity] + expected: FAIL + + [style.nonce: IDL set to "\\0"] + expected: FAIL + + [style.nonce: IDL set to null] + expected: FAIL + + [style.nonce: IDL set to object "test-toString"] + expected: FAIL + + [style.nonce: IDL set to object "test-valueOf"] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/reflection-misc.html.ini b/tests/wpt/metadata/html/dom/reflection-misc.html.ini index 52f5e8ad123..91808fec6d2 100644 --- a/tests/wpt/metadata/html/dom/reflection-misc.html.ini +++ b/tests/wpt/metadata/html/dom/reflection-misc.html.ini @@ -17736,3 +17736,807 @@ [menu.type: IDL set to "CONTEXT"] expected: FAIL + [template.dir: typeof IDL attribute] + expected: FAIL + + [template.dir: IDL get with DOM attribute unset] + expected: FAIL + + [template.dir: setAttribute() to ""] + expected: FAIL + + [template.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [template.dir: setAttribute() to undefined] + expected: FAIL + + [template.dir: setAttribute() to 7] + expected: FAIL + + [template.dir: setAttribute() to 1.5] + expected: FAIL + + [template.dir: setAttribute() to true] + expected: FAIL + + [template.dir: setAttribute() to false] + expected: FAIL + + [template.dir: setAttribute() to object "[object Object\]"] + expected: FAIL + + [template.dir: setAttribute() to NaN] + expected: FAIL + + [template.dir: setAttribute() to Infinity] + expected: FAIL + + [template.dir: setAttribute() to -Infinity] + expected: FAIL + + [template.dir: setAttribute() to "\\0"] + expected: FAIL + + [template.dir: setAttribute() to null] + expected: FAIL + + [template.dir: setAttribute() to object "test-toString"] + expected: FAIL + + [template.dir: setAttribute() to object "test-valueOf"] + expected: FAIL + + [template.dir: setAttribute() to "ltr"] + expected: FAIL + + [template.dir: setAttribute() to "xltr"] + expected: FAIL + + [template.dir: setAttribute() to "ltr\\0"] + expected: FAIL + + [template.dir: setAttribute() to "tr"] + expected: FAIL + + [template.dir: setAttribute() to "LTR"] + expected: FAIL + + [template.dir: setAttribute() to "rtl"] + expected: FAIL + + [template.dir: setAttribute() to "xrtl"] + expected: FAIL + + [template.dir: setAttribute() to "rtl\\0"] + expected: FAIL + + [template.dir: setAttribute() to "tl"] + expected: FAIL + + [template.dir: setAttribute() to "RTL"] + expected: FAIL + + [template.dir: setAttribute() to "auto"] + expected: FAIL + + [template.dir: setAttribute() to "xauto"] + expected: FAIL + + [template.dir: setAttribute() to "auto\\0"] + expected: FAIL + + [template.dir: setAttribute() to "uto"] + expected: FAIL + + [template.dir: setAttribute() to "AUTO"] + expected: FAIL + + [template.dir: IDL set to ""] + expected: FAIL + + [template.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [template.dir: IDL set to undefined] + expected: FAIL + + [template.dir: IDL set to 7] + expected: FAIL + + [template.dir: IDL set to 1.5] + expected: FAIL + + [template.dir: IDL set to true] + expected: FAIL + + [template.dir: IDL set to false] + expected: FAIL + + [template.dir: IDL set to object "[object Object\]"] + expected: FAIL + + [template.dir: IDL set to NaN] + expected: FAIL + + [template.dir: IDL set to Infinity] + expected: FAIL + + [template.dir: IDL set to -Infinity] + expected: FAIL + + [template.dir: IDL set to "\\0"] + expected: FAIL + + [template.dir: IDL set to null] + expected: FAIL + + [template.dir: IDL set to object "test-toString"] + expected: FAIL + + [template.dir: IDL set to object "test-valueOf"] + expected: FAIL + + [template.dir: IDL set to "ltr"] + expected: FAIL + + [template.dir: IDL set to "xltr"] + expected: FAIL + + [template.dir: IDL set to "ltr\\0"] + expected: FAIL + + [template.dir: IDL set to "tr"] + expected: FAIL + + [template.dir: IDL set to "LTR"] + expected: FAIL + + [template.dir: IDL set to "rtl"] + expected: FAIL + + [template.dir: IDL set to "xrtl"] + expected: FAIL + + [template.dir: IDL set to "rtl\\0"] + expected: FAIL + + [template.dir: IDL set to "tl"] + expected: FAIL + + [template.dir: IDL set to "RTL"] + expected: FAIL + + [template.dir: IDL set to "auto"] + expected: FAIL + + [template.dir: IDL set to "xauto"] + expected: FAIL + + [template.dir: IDL set to "auto\\0"] + expected: FAIL + + [template.dir: IDL set to "uto"] + expected: FAIL + + [template.dir: IDL set to "AUTO"] + expected: FAIL + + [template.accessKey: typeof IDL attribute] + expected: FAIL + + [template.accessKey: IDL get with DOM attribute unset] + expected: FAIL + + [template.accessKey: setAttribute() to ""] + expected: FAIL + + [template.accessKey: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [template.accessKey: setAttribute() to undefined] + expected: FAIL + + [template.accessKey: setAttribute() to 7] + expected: FAIL + + [template.accessKey: setAttribute() to 1.5] + expected: FAIL + + [template.accessKey: setAttribute() to true] + expected: FAIL + + [template.accessKey: setAttribute() to false] + expected: FAIL + + [template.accessKey: setAttribute() to object "[object Object\]"] + expected: FAIL + + [template.accessKey: setAttribute() to NaN] + expected: FAIL + + [template.accessKey: setAttribute() to Infinity] + expected: FAIL + + [template.accessKey: setAttribute() to -Infinity] + expected: FAIL + + [template.accessKey: setAttribute() to "\\0"] + expected: FAIL + + [template.accessKey: setAttribute() to null] + expected: FAIL + + [template.accessKey: setAttribute() to object "test-toString"] + expected: FAIL + + [template.accessKey: setAttribute() to object "test-valueOf"] + expected: FAIL + + [template.accessKey: IDL set to ""] + expected: FAIL + + [template.accessKey: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [template.accessKey: IDL set to undefined] + expected: FAIL + + [template.accessKey: IDL set to 7] + expected: FAIL + + [template.accessKey: IDL set to 1.5] + expected: FAIL + + [template.accessKey: IDL set to true] + expected: FAIL + + [template.accessKey: IDL set to false] + expected: FAIL + + [template.accessKey: IDL set to object "[object Object\]"] + expected: FAIL + + [template.accessKey: IDL set to NaN] + expected: FAIL + + [template.accessKey: IDL set to Infinity] + expected: FAIL + + [template.accessKey: IDL set to -Infinity] + expected: FAIL + + [template.accessKey: IDL set to "\\0"] + expected: FAIL + + [template.accessKey: IDL set to null] + expected: FAIL + + [template.accessKey: IDL set to object "test-toString"] + expected: FAIL + + [template.accessKey: IDL set to object "test-valueOf"] + expected: FAIL + + [template.tabIndex: typeof IDL attribute] + expected: FAIL + + [template.tabIndex: setAttribute() to -36] + expected: FAIL + + [template.tabIndex: setAttribute() to -1] + expected: FAIL + + [template.tabIndex: setAttribute() to 0] + expected: FAIL + + [template.tabIndex: setAttribute() to 1] + expected: FAIL + + [template.tabIndex: setAttribute() to 2147483647] + expected: FAIL + + [template.tabIndex: setAttribute() to -2147483648] + expected: FAIL + + [template.tabIndex: setAttribute() to "-1"] + expected: FAIL + + [template.tabIndex: setAttribute() to "-0"] + expected: FAIL + + [template.tabIndex: setAttribute() to "0"] + expected: FAIL + + [template.tabIndex: setAttribute() to "1"] + expected: FAIL + + [template.tabIndex: setAttribute() to "\\t7"] + expected: FAIL + + [template.tabIndex: setAttribute() to "\\f7"] + expected: FAIL + + [template.tabIndex: setAttribute() to " 7"] + expected: FAIL + + [template.tabIndex: setAttribute() to "\\n7"] + expected: FAIL + + [template.tabIndex: setAttribute() to "\\r7"] + expected: FAIL + + [template.tabIndex: setAttribute() to 1.5] + expected: FAIL + + [template.tabIndex: setAttribute() to object "2"] + expected: FAIL + + [template.tabIndex: IDL set to -36] + expected: FAIL + + [template.tabIndex: IDL set to -1] + expected: FAIL + + [template.tabIndex: IDL set to 0] + expected: FAIL + + [template.tabIndex: IDL set to 1] + expected: FAIL + + [template.tabIndex: IDL set to 2147483647] + expected: FAIL + + [template.tabIndex: IDL set to -2147483648] + expected: FAIL + + [slot.dir: typeof IDL attribute] + expected: FAIL + + [slot.dir: IDL get with DOM attribute unset] + expected: FAIL + + [slot.dir: setAttribute() to ""] + expected: FAIL + + [slot.dir: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.dir: setAttribute() to undefined] + expected: FAIL + + [slot.dir: setAttribute() to 7] + expected: FAIL + + [slot.dir: setAttribute() to 1.5] + expected: FAIL + + [slot.dir: setAttribute() to true] + expected: FAIL + + [slot.dir: setAttribute() to false] + expected: FAIL + + [slot.dir: setAttribute() to object "[object Object\]"] + expected: FAIL + + [slot.dir: setAttribute() to NaN] + expected: FAIL + + [slot.dir: setAttribute() to Infinity] + expected: FAIL + + [slot.dir: setAttribute() to -Infinity] + expected: FAIL + + [slot.dir: setAttribute() to "\\0"] + expected: FAIL + + [slot.dir: setAttribute() to null] + expected: FAIL + + [slot.dir: setAttribute() to object "test-toString"] + expected: FAIL + + [slot.dir: setAttribute() to object "test-valueOf"] + expected: FAIL + + [slot.dir: setAttribute() to "ltr"] + expected: FAIL + + [slot.dir: setAttribute() to "xltr"] + expected: FAIL + + [slot.dir: setAttribute() to "ltr\\0"] + expected: FAIL + + [slot.dir: setAttribute() to "tr"] + expected: FAIL + + [slot.dir: setAttribute() to "LTR"] + expected: FAIL + + [slot.dir: setAttribute() to "rtl"] + expected: FAIL + + [slot.dir: setAttribute() to "xrtl"] + expected: FAIL + + [slot.dir: setAttribute() to "rtl\\0"] + expected: FAIL + + [slot.dir: setAttribute() to "tl"] + expected: FAIL + + [slot.dir: setAttribute() to "RTL"] + expected: FAIL + + [slot.dir: setAttribute() to "auto"] + expected: FAIL + + [slot.dir: setAttribute() to "xauto"] + expected: FAIL + + [slot.dir: setAttribute() to "auto\\0"] + expected: FAIL + + [slot.dir: setAttribute() to "uto"] + expected: FAIL + + [slot.dir: setAttribute() to "AUTO"] + expected: FAIL + + [slot.dir: IDL set to ""] + expected: FAIL + + [slot.dir: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.dir: IDL set to undefined] + expected: FAIL + + [slot.dir: IDL set to 7] + expected: FAIL + + [slot.dir: IDL set to 1.5] + expected: FAIL + + [slot.dir: IDL set to true] + expected: FAIL + + [slot.dir: IDL set to false] + expected: FAIL + + [slot.dir: IDL set to object "[object Object\]"] + expected: FAIL + + [slot.dir: IDL set to NaN] + expected: FAIL + + [slot.dir: IDL set to Infinity] + expected: FAIL + + [slot.dir: IDL set to -Infinity] + expected: FAIL + + [slot.dir: IDL set to "\\0"] + expected: FAIL + + [slot.dir: IDL set to null] + expected: FAIL + + [slot.dir: IDL set to object "test-toString"] + expected: FAIL + + [slot.dir: IDL set to object "test-valueOf"] + expected: FAIL + + [slot.dir: IDL set to "ltr"] + expected: FAIL + + [slot.dir: IDL set to "xltr"] + expected: FAIL + + [slot.dir: IDL set to "ltr\\0"] + expected: FAIL + + [slot.dir: IDL set to "tr"] + expected: FAIL + + [slot.dir: IDL set to "LTR"] + expected: FAIL + + [slot.dir: IDL set to "rtl"] + expected: FAIL + + [slot.dir: IDL set to "xrtl"] + expected: FAIL + + [slot.dir: IDL set to "rtl\\0"] + expected: FAIL + + [slot.dir: IDL set to "tl"] + expected: FAIL + + [slot.dir: IDL set to "RTL"] + expected: FAIL + + [slot.dir: IDL set to "auto"] + expected: FAIL + + [slot.dir: IDL set to "xauto"] + expected: FAIL + + [slot.dir: IDL set to "auto\\0"] + expected: FAIL + + [slot.dir: IDL set to "uto"] + expected: FAIL + + [slot.dir: IDL set to "AUTO"] + expected: FAIL + + [slot.accessKey: typeof IDL attribute] + expected: FAIL + + [slot.accessKey: IDL get with DOM attribute unset] + expected: FAIL + + [slot.accessKey: setAttribute() to ""] + expected: FAIL + + [slot.accessKey: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.accessKey: setAttribute() to undefined] + expected: FAIL + + [slot.accessKey: setAttribute() to 7] + expected: FAIL + + [slot.accessKey: setAttribute() to 1.5] + expected: FAIL + + [slot.accessKey: setAttribute() to true] + expected: FAIL + + [slot.accessKey: setAttribute() to false] + expected: FAIL + + [slot.accessKey: setAttribute() to object "[object Object\]"] + expected: FAIL + + [slot.accessKey: setAttribute() to NaN] + expected: FAIL + + [slot.accessKey: setAttribute() to Infinity] + expected: FAIL + + [slot.accessKey: setAttribute() to -Infinity] + expected: FAIL + + [slot.accessKey: setAttribute() to "\\0"] + expected: FAIL + + [slot.accessKey: setAttribute() to null] + expected: FAIL + + [slot.accessKey: setAttribute() to object "test-toString"] + expected: FAIL + + [slot.accessKey: setAttribute() to object "test-valueOf"] + expected: FAIL + + [slot.accessKey: IDL set to ""] + expected: FAIL + + [slot.accessKey: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.accessKey: IDL set to undefined] + expected: FAIL + + [slot.accessKey: IDL set to 7] + expected: FAIL + + [slot.accessKey: IDL set to 1.5] + expected: FAIL + + [slot.accessKey: IDL set to true] + expected: FAIL + + [slot.accessKey: IDL set to false] + expected: FAIL + + [slot.accessKey: IDL set to object "[object Object\]"] + expected: FAIL + + [slot.accessKey: IDL set to NaN] + expected: FAIL + + [slot.accessKey: IDL set to Infinity] + expected: FAIL + + [slot.accessKey: IDL set to -Infinity] + expected: FAIL + + [slot.accessKey: IDL set to "\\0"] + expected: FAIL + + [slot.accessKey: IDL set to null] + expected: FAIL + + [slot.accessKey: IDL set to object "test-toString"] + expected: FAIL + + [slot.accessKey: IDL set to object "test-valueOf"] + expected: FAIL + + [slot.tabIndex: typeof IDL attribute] + expected: FAIL + + [slot.tabIndex: setAttribute() to -36] + expected: FAIL + + [slot.tabIndex: setAttribute() to -1] + expected: FAIL + + [slot.tabIndex: setAttribute() to 0] + expected: FAIL + + [slot.tabIndex: setAttribute() to 1] + expected: FAIL + + [slot.tabIndex: setAttribute() to 2147483647] + expected: FAIL + + [slot.tabIndex: setAttribute() to -2147483648] + expected: FAIL + + [slot.tabIndex: setAttribute() to "-1"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "-0"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "0"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "1"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "\\t7"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "\\f7"] + expected: FAIL + + [slot.tabIndex: setAttribute() to " 7"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "\\n7"] + expected: FAIL + + [slot.tabIndex: setAttribute() to "\\r7"] + expected: FAIL + + [slot.tabIndex: setAttribute() to 1.5] + expected: FAIL + + [slot.tabIndex: setAttribute() to object "2"] + expected: FAIL + + [slot.tabIndex: IDL set to -36] + expected: FAIL + + [slot.tabIndex: IDL set to -1] + expected: FAIL + + [slot.tabIndex: IDL set to 0] + expected: FAIL + + [slot.tabIndex: IDL set to 1] + expected: FAIL + + [slot.tabIndex: IDL set to 2147483647] + expected: FAIL + + [slot.tabIndex: IDL set to -2147483648] + expected: FAIL + + [slot.name: typeof IDL attribute] + expected: FAIL + + [slot.name: IDL get with DOM attribute unset] + expected: FAIL + + [slot.name: setAttribute() to ""] + expected: FAIL + + [slot.name: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.name: setAttribute() to undefined] + expected: FAIL + + [slot.name: setAttribute() to 7] + expected: FAIL + + [slot.name: setAttribute() to 1.5] + expected: FAIL + + [slot.name: setAttribute() to true] + expected: FAIL + + [slot.name: setAttribute() to false] + expected: FAIL + + [slot.name: setAttribute() to object "[object Object\]"] + expected: FAIL + + [slot.name: setAttribute() to NaN] + expected: FAIL + + [slot.name: setAttribute() to Infinity] + expected: FAIL + + [slot.name: setAttribute() to -Infinity] + expected: FAIL + + [slot.name: setAttribute() to "\\0"] + expected: FAIL + + [slot.name: setAttribute() to null] + expected: FAIL + + [slot.name: setAttribute() to object "test-toString"] + expected: FAIL + + [slot.name: setAttribute() to object "test-valueOf"] + expected: FAIL + + [slot.name: IDL set to ""] + expected: FAIL + + [slot.name: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [slot.name: IDL set to undefined] + expected: FAIL + + [slot.name: IDL set to 7] + expected: FAIL + + [slot.name: IDL set to 1.5] + expected: FAIL + + [slot.name: IDL set to true] + expected: FAIL + + [slot.name: IDL set to false] + expected: FAIL + + [slot.name: IDL set to object "[object Object\]"] + expected: FAIL + + [slot.name: IDL set to NaN] + expected: FAIL + + [slot.name: IDL set to Infinity] + expected: FAIL + + [slot.name: IDL set to -Infinity] + expected: FAIL + + [slot.name: IDL set to "\\0"] + expected: FAIL + + [slot.name: IDL set to null] + expected: FAIL + + [slot.name: IDL set to object "test-toString"] + expected: FAIL + + [slot.name: IDL set to object "test-valueOf"] + expected: FAIL + diff --git a/tests/wpt/metadata/html/dom/reflection-tabular.html.ini b/tests/wpt/metadata/html/dom/reflection-tabular.html.ini index b7159b771ca..3866ee7acf9 100644 --- a/tests/wpt/metadata/html/dom/reflection-tabular.html.ini +++ b/tests/wpt/metadata/html/dom/reflection-tabular.html.ini @@ -25755,3 +25755,195 @@ [th.rowSpan: IDL set to 65535] expected: FAIL + [td.headers: typeof IDL attribute] + expected: FAIL + + [td.headers: IDL get with DOM attribute unset] + expected: FAIL + + [td.headers: setAttribute() to ""] + expected: FAIL + + [td.headers: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [td.headers: setAttribute() to undefined] + expected: FAIL + + [td.headers: setAttribute() to 7] + expected: FAIL + + [td.headers: setAttribute() to 1.5] + expected: FAIL + + [td.headers: setAttribute() to true] + expected: FAIL + + [td.headers: setAttribute() to false] + expected: FAIL + + [td.headers: setAttribute() to object "[object Object\]"] + expected: FAIL + + [td.headers: setAttribute() to NaN] + expected: FAIL + + [td.headers: setAttribute() to Infinity] + expected: FAIL + + [td.headers: setAttribute() to -Infinity] + expected: FAIL + + [td.headers: setAttribute() to "\\0"] + expected: FAIL + + [td.headers: setAttribute() to null] + expected: FAIL + + [td.headers: setAttribute() to object "test-toString"] + expected: FAIL + + [td.headers: setAttribute() to object "test-valueOf"] + expected: FAIL + + [td.headers: IDL set to ""] + expected: FAIL + + [td.headers: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [td.headers: IDL set to undefined] + expected: FAIL + + [td.headers: IDL set to 7] + expected: FAIL + + [td.headers: IDL set to 1.5] + expected: FAIL + + [td.headers: IDL set to true] + expected: FAIL + + [td.headers: IDL set to false] + expected: FAIL + + [td.headers: IDL set to object "[object Object\]"] + expected: FAIL + + [td.headers: IDL set to NaN] + expected: FAIL + + [td.headers: IDL set to Infinity] + expected: FAIL + + [td.headers: IDL set to -Infinity] + expected: FAIL + + [td.headers: IDL set to "\\0"] + expected: FAIL + + [td.headers: IDL set to null] + expected: FAIL + + [td.headers: IDL set to object "test-toString"] + expected: FAIL + + [td.headers: IDL set to object "test-valueOf"] + expected: FAIL + + [th.headers: typeof IDL attribute] + expected: FAIL + + [th.headers: IDL get with DOM attribute unset] + expected: FAIL + + [th.headers: setAttribute() to ""] + expected: FAIL + + [th.headers: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [th.headers: setAttribute() to undefined] + expected: FAIL + + [th.headers: setAttribute() to 7] + expected: FAIL + + [th.headers: setAttribute() to 1.5] + expected: FAIL + + [th.headers: setAttribute() to true] + expected: FAIL + + [th.headers: setAttribute() to false] + expected: FAIL + + [th.headers: setAttribute() to object "[object Object\]"] + expected: FAIL + + [th.headers: setAttribute() to NaN] + expected: FAIL + + [th.headers: setAttribute() to Infinity] + expected: FAIL + + [th.headers: setAttribute() to -Infinity] + expected: FAIL + + [th.headers: setAttribute() to "\\0"] + expected: FAIL + + [th.headers: setAttribute() to null] + expected: FAIL + + [th.headers: setAttribute() to object "test-toString"] + expected: FAIL + + [th.headers: setAttribute() to object "test-valueOf"] + expected: FAIL + + [th.headers: IDL set to ""] + expected: FAIL + + [th.headers: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo "] + expected: FAIL + + [th.headers: IDL set to undefined] + expected: FAIL + + [th.headers: IDL set to 7] + expected: FAIL + + [th.headers: IDL set to 1.5] + expected: FAIL + + [th.headers: IDL set to true] + expected: FAIL + + [th.headers: IDL set to false] + expected: FAIL + + [th.headers: IDL set to object "[object Object\]"] + expected: FAIL + + [th.headers: IDL set to NaN] + expected: FAIL + + [th.headers: IDL set to Infinity] + expected: FAIL + + [th.headers: IDL set to -Infinity] + expected: FAIL + + [th.headers: IDL set to "\\0"] + expected: FAIL + + [th.headers: IDL set to null] + expected: FAIL + + [th.headers: IDL set to object "test-toString"] + expected: FAIL + + [th.headers: IDL set to object "test-valueOf"] + expected: FAIL + diff --git a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini b/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini index 76fea8a7c80..51f27d185ef 100644 --- a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini +++ b/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini @@ -45,3 +45,12 @@ [DOMStringList interface: calling contains(DOMString) on location.ancestorOrigins with too few arguments must throw TypeError] expected: FAIL + [DOMStringList interface: location.ancestorOrigins must inherit property "length" with the proper type] + expected: FAIL + + [DOMStringList interface: location.ancestorOrigins must inherit property "item(unsigned long)" with the proper type] + expected: FAIL + + [DOMStringList interface: location.ancestorOrigins must inherit property "contains(DOMString)" with the proper type] + expected: FAIL + diff --git a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html.ini b/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html.ini index ad7d4ea8ad6..4a120ac404d 100644 --- a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html.ini +++ b/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/htmlallcollection.html.ini @@ -129,3 +129,30 @@ [collections are new live HTMLCollection instances] expected: FAIL + [named property getter with undefined] + expected: FAIL + + [named property getter with null] + expected: FAIL + + [namedItem method with undefined] + expected: FAIL + + [namedItem method with null] + expected: FAIL + + [legacy caller with undefined] + expected: FAIL + + [legacy caller with null] + expected: FAIL + + [legacy caller with arbitrary this value] + expected: FAIL + + [item method with undefined] + expected: FAIL + + [item method with null] + expected: FAIL + diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html.ini new file mode 100644 index 00000000000..8ffcefa18d9 --- /dev/null +++ b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/structuredclone_0.html.ini @@ -0,0 +1,8 @@ +[structuredclone_0.html] + type: testharness + [ImageData object can be cloned] + expected: FAIL + + [ImageData expandos are not cloned] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html.ini deleted file mode 100644 index 07dd3f915c2..00000000000 --- a/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/moving-documents.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[moving-documents.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html.ini new file mode 100644 index 00000000000..b9381ec8c38 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/remove-from-document.html.ini @@ -0,0 +1,3 @@ +[remove-from-document.html] + type: testharness + expected: TIMEOUT diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_media_change.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_media_change.html.ini new file mode 100644 index 00000000000..910515ef752 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_media_change.html.ini @@ -0,0 +1,8 @@ +[style_media_change.html] + type: testharness + [change media value dynamically] + expected: FAIL + + [removing media attribute] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type.html.ini new file mode 100644 index 00000000000..03cd84bae40 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type.html.ini @@ -0,0 +1,8 @@ +[style_type.html] + type: testharness + [With a whitespace-surrounded type attribute, the style should not apply] + expected: FAIL + + [With a charset parameter in the type attribute, the style should not apply] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type_change.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type_change.html.ini new file mode 100644 index 00000000000..ce4ccd87646 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/document-metadata/the-style-element/style_type_change.html.ini @@ -0,0 +1,11 @@ +[style_type_change.html] + type: testharness + [Check initial styleSheets length type] + expected: FAIL + + [Change type from invalid type to valid type] + expected: FAIL + + [Change type from valid type to invalid type] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/media-elements/playing-the-media-resource/playbackRate.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/media-elements/playing-the-media-resource/playbackRate.html.ini index 73933f83bf2..666997e01de 100644 --- a/tests/wpt/metadata/html/semantics/embedded-content/media-elements/playing-the-media-resource/playbackRate.html.ini +++ b/tests/wpt/metadata/html/semantics/embedded-content/media-elements/playing-the-media-resource/playbackRate.html.ini @@ -7,3 +7,21 @@ [setting playbackRate] expected: TIMEOUT + [playbackRate set to small positive value] + expected: TIMEOUT + + [playbackRate set to large positive value] + expected: TIMEOUT + + [playbackRate set to small negative value] + expected: TIMEOUT + + [playbackRate set to large negative value] + expected: TIMEOUT + + [playbackRate set to 0] + expected: TIMEOUT + + [playbackRate set to -1] + expected: TIMEOUT + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.cross.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.cross.html.ini new file mode 100644 index 00000000000..8b4f684d8e6 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.cross.html.ini @@ -0,0 +1,5 @@ +[security.reset.cross.html] + type: testharness + [Resetting the canvas state resets the origin-clean flag] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.redirect.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.redirect.html.ini new file mode 100644 index 00000000000..1de8170d39d --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-canvas-element/security.reset.redirect.html.ini @@ -0,0 +1,5 @@ +[security.reset.redirect.html] + type: testharness + [Resetting the canvas state resets the origin-clean flag] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html.ini new file mode 100644 index 00000000000..b17c9667a66 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-1.html.ini @@ -0,0 +1,5 @@ +[iframe_sandbox_allow_top_navigation-1.html] + type: testharness + [Check that sandboxed iframe can perform navigation on the top frame\n when allow-top-navigation is set] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html.ini new file mode 100644 index 00000000000..f5edfc06313 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-2.html.ini @@ -0,0 +1,5 @@ +[iframe_sandbox_allow_top_navigation-2.html] + type: testharness + [Check that sandboxed iframe cannot perform navigation on the top\n frame when allow-top-navigation is not set] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html.ini new file mode 100644 index 00000000000..2defbd51c27 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_allow_top_navigation-3.html.ini @@ -0,0 +1,5 @@ +[iframe_sandbox_allow_top_navigation-3.html] + type: testharness + [Check that sandboxed iframe can perform navigation on the top frame\n when allow-top-navigation is set (even when\n allow-top-navigation-by-user-activation is set)] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html.ini new file mode 100644 index 00000000000..9abfb1ab7ad --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_descendants.html.ini @@ -0,0 +1,5 @@ +[iframe_sandbox_navigate_descendants.html] + type: testharness + [Check that sandboxed iframe can navigate their descendants] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_005.htm.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_005.htm.ini new file mode 100644 index 00000000000..916f8f2955e --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_005.htm.ini @@ -0,0 +1,5 @@ +[sandbox_005.htm] + type: testharness + [Block script execution inside iframe with sandbox attribute.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_023.htm.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_023.htm.ini new file mode 100644 index 00000000000..bfbedc693e9 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_023.htm.ini @@ -0,0 +1,5 @@ +[sandbox_023.htm] + type: testharness + [Allow sandbox iframe to access other content from the same origin if sandbox='allow-same-origin'] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_025.htm.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_025.htm.ini new file mode 100644 index 00000000000..515a2ab2bd2 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_025.htm.ini @@ -0,0 +1,5 @@ +[sandbox_025.htm] + type: testharness + [Allow parent content to access sandbox child iframe content when sandbox='allow-same-origin'] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_029.htm.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_029.htm.ini new file mode 100644 index 00000000000..217b765c736 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_029.htm.ini @@ -0,0 +1,5 @@ +[sandbox_029.htm] + type: testharness + [Block document.cookie inside iframe with the sandbox attribute.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_031.htm.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_031.htm.ini new file mode 100644 index 00000000000..6b9e929646c --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-iframe-element/sandbox_031.htm.ini @@ -0,0 +1,5 @@ +[sandbox_031.htm] + type: testharness + [Block localStorage and sessionStorage inside iframe with the sandbox attribute.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/adoption.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/adoption.html.ini new file mode 100644 index 00000000000..28a4f9efd7c --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/adoption.html.ini @@ -0,0 +1,27 @@ +[adoption.html] + type: testharness + expected: TIMEOUT + [img (src only)] + expected: FAIL + + [img (src only), parent is picture] + expected: FAIL + + [img (src only), previous sibling is source] + expected: FAIL + + [img (srcset 1 cand)] + expected: TIMEOUT + + [img (srcset 1 cand), parent is picture] + expected: TIMEOUT + + [img (srcset 1 cand), previous sibling is source] + expected: TIMEOUT + + [adopt a cloned img in template] + expected: FAIL + + [adoption is from appendChild] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html.ini new file mode 100644 index 00000000000..91879dfa2c4 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html.ini @@ -0,0 +1,12 @@ +[image-decode-iframe.html] + type: testharness + expected: TIMEOUT + [HTMLImageElement.prototype.decode(), iframe tests. Decode from removed iframe fails (loaded img)] + expected: TIMEOUT + + [HTMLImageElement.prototype.decode(), iframe tests. Decode from removed iframe fails (img not loaded)] + expected: NOTRUN + + [HTMLImageElement.prototype.decode(), iframe tests. Decode from iframe, later removed, fails (img not loaded)] + expected: NOTRUN + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html.ini new file mode 100644 index 00000000000..550cfb6f326 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes-svg.tentative.html.ini @@ -0,0 +1,20 @@ +[image-decode-path-changes-svg.tentative.html] + type: testharness + [SVGImageElement.prototype.decode(), href mutation tests. xlink:href changes fail decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), href mutation tests. href changes fail decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), href mutation tests. xlink:href changes fail decode; following good decode succeeds.] + expected: FAIL + + [SVGImageElement.prototype.decode(), href mutation tests. href changes fail decode; following good decode succeeds.] + expected: FAIL + + [SVGImageElement.prototype.decode(), href mutation tests. xlink:href changes fail decode; following bad decode fails.] + expected: FAIL + + [SVGImageElement.prototype.decode(), href mutation tests. href changes fail decode; following bad decode fails.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html.ini new file mode 100644 index 00000000000..ef5c0e07d74 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-path-changes.html.ini @@ -0,0 +1,26 @@ +[image-decode-path-changes.html] + type: testharness + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. src changes fail decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. src changes fail decode; following good png decode succeeds.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. src changes fail decode; following good svg decode succeeds.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. src changes fail decode; following bad decode fails.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. src changes to the same path succeed.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. srcset changes fail decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. srcset changes fail decode; following good decode succeeds.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), src/srcset mutation tests. srcset changes fail decode; following bad decode fails.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html.ini new file mode 100644 index 00000000000..e12814d7f38 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-picture.html.ini @@ -0,0 +1,26 @@ +[image-decode-picture.html] + type: testharness + [HTMLImageElement.prototype.decode(), picture tests. Image with PNG source decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Image with multiple sources decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Image with PNG data URL source decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Image with SVG source decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Non-existent source fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Corrupt image in src fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Image without srcset fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), picture tests. Multiple decodes for images with src succeed.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html.ini new file mode 100644 index 00000000000..134c9ba2b48 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode-svg.tentative.html.ini @@ -0,0 +1,41 @@ +[image-decode-svg.tentative.html] + type: testharness + [SVGImageElement.prototype.decode(), basic tests. Image with PNG xlink:href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image with PNG href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image with PNG data URL xlink:href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image with PNG data URL href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image with SVG xlink:href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image with SVG href decodes with undefined.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Non-existent xlink:href fails decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Non-existent href fails decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Corrupt image in xlink:href fails decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Corrupt image in href fails decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Image without xlink:href or href fails decode.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Multiple decodes with a xlink:href succeed.] + expected: FAIL + + [SVGImageElement.prototype.decode(), basic tests. Multiple decodes with a href succeed.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode.html.ini new file mode 100644 index 00000000000..9c27df71eb3 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/decode/image-decode.html.ini @@ -0,0 +1,44 @@ +[image-decode.html] + type: testharness + [HTMLImageElement.prototype.decode(), basic tests. Image with PNG src decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Image with PNG data URL src decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Image with SVG src decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Non-existent src fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Inactive document fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Adopted active image into inactive document fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Adopted inactive image into active document succeeds.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Corrupt image in src fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Image without src/srcset fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Multiple decodes for images with src succeed.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Image with PNG srcset decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Image with SVG srcset decodes with undefined.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Non-existent srcset fails decode.] + expected: FAIL + + [HTMLImageElement.prototype.decode(), basic tests. Multiple decodes for images with srcset succeed.] + expected: FAIL + diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/non-active-document.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/non-active-document.html.ini new file mode 100644 index 00000000000..6dc30b21283 --- /dev/null +++ b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/non-active-document.html.ini @@ -0,0 +1,11 @@ +[non-active-document.html] + type: testharness + [DOMParser] + expected: FAIL + + [createHTMLDocument] + expected: FAIL + + [