diff --git a/lib/jsdom/living/aborting/AbortSignal-impl.js b/lib/jsdom/living/aborting/AbortSignal-impl.js index de894b25ff..6311f53b50 100644 --- a/lib/jsdom/living/aborting/AbortSignal-impl.js +++ b/lib/jsdom/living/aborting/AbortSignal-impl.js @@ -3,6 +3,7 @@ const { setupForSimpleEventAccessors } = require("../helpers/create-event-accessor"); const { fireAnEvent } = require("../helpers/events"); const EventTargetImpl = require("../events/EventTarget-impl").implementation; +const AbortSignal = require("../generated/AbortSignal"); class AbortSignalImpl extends EventTargetImpl { constructor(globalObject, args, privateData) { @@ -15,6 +16,12 @@ class AbortSignalImpl extends EventTargetImpl { this.abortAlgorithms = new Set(); } + static abort(globalObject) { + const abortSignal = AbortSignal.createImpl(globalObject, []); + abortSignal.aborted = true; + return abortSignal; + } + _signalAbort() { if (this.aborted) { return; diff --git a/lib/jsdom/living/aborting/AbortSignal.webidl b/lib/jsdom/living/aborting/AbortSignal.webidl index 347a99b660..74ec4f5b90 100644 --- a/lib/jsdom/living/aborting/AbortSignal.webidl +++ b/lib/jsdom/living/aborting/AbortSignal.webidl @@ -1,5 +1,7 @@ [Exposed=(Window,Worker)] interface AbortSignal : EventTarget { + [WebIDL2JSCallWithGlobal, NewObject] static AbortSignal abort(); + readonly attribute boolean aborted; attribute EventHandler onabort; diff --git a/lib/jsdom/living/helpers/form-controls.js b/lib/jsdom/living/helpers/form-controls.js index ecdd8e6aa2..bd4a799dde 100644 --- a/lib/jsdom/living/helpers/form-controls.js +++ b/lib/jsdom/living/helpers/form-controls.js @@ -73,13 +73,6 @@ exports.isButton = formControl => { formControl.namespaceURI === HTML_NS; }; -exports.normalizeToCRLF = string => { - return string.replace(/\r([^\n])/g, "\r\n$1") - .replace(/\r$/, "\r\n") - .replace(/([^\r])\n/g, "$1\r\n") - .replace(/^\n/, "\r\n"); -}; - // https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2 exports.isInteractiveContent = node => { if (node.nodeType !== NODE_TYPE.ELEMENT_NODE) { diff --git a/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js b/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js index 7202e864ca..427dfa4f90 100644 --- a/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +++ b/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js @@ -9,7 +9,7 @@ const { mixin } = require("../../utils"); const DOMException = require("domexception/webidl2js-wrapper"); const { cloningSteps } = require("../helpers/internal-constants"); -const { isDisabled, normalizeToCRLF, getLabelsForLabelable, formOwner } = require("../helpers/form-controls"); +const { isDisabled, getLabelsForLabelable, formOwner } = require("../helpers/form-controls"); const { childTextContent } = require("../helpers/text"); const { fireAnEvent } = require("../helpers/events"); @@ -38,8 +38,11 @@ class HTMLTextAreaElementImpl extends HTMLElementImpl { // https://html.spec.whatwg.org/multipage/form-elements.html#textarea-wrapping-transformation _getValue() { - // Hard-wrapping omitted, for now. - return normalizeToCRLF(this._rawValue); + const apiValue = this._getAPIValue(); + const wrap = this.getAttributeNS(null, "wrap"); + return wrap === "hard" ? + textareaWrappingTransformation(apiValue, this.cols) : + apiValue; } _childTextContentChangeSteps() { @@ -242,3 +245,28 @@ mixin(HTMLTextAreaElementImpl.prototype, DefaultConstraintValidationImpl.prototy module.exports = { implementation: HTMLTextAreaElementImpl }; + +function textareaWrappingTransformation(text, cols) { + let lineStart = 0; + let lineEnd = text.indexOf("\n"); + if (lineEnd === -1) { + lineEnd = text.length; + } + + while (lineStart < text.length) { + const lineLength = lineEnd - lineStart; + if (lineLength > cols) { + // split the line + lineEnd = lineStart + cols; + text = text.slice(0, lineEnd) + "\n" + text.slice(lineEnd); + } + // move to next line + lineStart = lineEnd + 1; // step over the newline + lineEnd = text.indexOf("\n", lineStart); + if (lineEnd === -1) { + lineEnd = text.length; + } + } + + return text; +} diff --git a/lib/jsdom/living/xhr/FormData-impl.js b/lib/jsdom/living/xhr/FormData-impl.js index bfcabf6a41..a66baf388d 100644 --- a/lib/jsdom/living/xhr/FormData-impl.js +++ b/lib/jsdom/living/xhr/FormData-impl.js @@ -1,7 +1,7 @@ "use strict"; const idlUtils = require("../generated/utils"); const { closest } = require("../helpers/traversal"); -const { isDisabled, isSubmittable, isButton, normalizeToCRLF } = require("../helpers/form-controls"); +const { isDisabled, isSubmittable, isButton } = require("../helpers/form-controls"); const Blob = require("../generated/Blob.js"); const File = require("../generated/File.js"); const conversions = require("webidl-conversions"); @@ -145,8 +145,6 @@ function constructTheEntryList(form, submitter) { appendAnEntry(entryList, name, field.files.item(i)); } } - } /* skip plugins. TODO: _charset_ */ else if (field.localName === "textarea") { - appendAnEntry(entryList, name, field._getValue(), true); } else { appendAnEntry(entryList, name, field._getValue()); } @@ -163,12 +161,9 @@ function constructTheEntryList(form, submitter) { return entryList; } -function appendAnEntry(entryList, name, value, preventLineBreakNormalization = false) { - name = conversions.USVString(normalizeToCRLF(name)); +function appendAnEntry(entryList, name, value) { + name = conversions.USVString(name); if (!File.isImpl(value)) { - if (!preventLineBreakNormalization) { - value = normalizeToCRLF(value); - } value = conversions.USVString(value); } const entry = createAnEntry(name, value); diff --git a/test/web-platform-tests/run-wpts.js b/test/web-platform-tests/run-wpts.js index 0a1f54caf7..1c9f5faca4 100644 --- a/test/web-platform-tests/run-wpts.js +++ b/test/web-platform-tests/run-wpts.js @@ -49,7 +49,7 @@ before({ timeout: 30 * 1000 }, async () => { }); after(() => { - serverProcess.kill(); + serverProcess.kill("SIGINT"); }); describe("web-platform-tests", () => { diff --git a/test/web-platform-tests/tests b/test/web-platform-tests/tests index fcde9bb214..ad5c145542 160000 --- a/test/web-platform-tests/tests +++ b/test/web-platform-tests/tests @@ -1 +1 @@ -Subproject commit fcde9bb214001374d7df7ae22ba8e32528ba54e4 +Subproject commit ad5c145542c16fcd828a6e63975b9f4aa9c8430e diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index fc132d9f4d..44bb23920e 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -7,15 +7,17 @@ blob/Blob-constructor.any.html: "Passing a FrozenArray as the blobParts array should work (FrozenArray).": [fail, Depends on MessagePort] blob/Blob-stream.any.html: [fail, Unknown] blob/Blob-text.any.html: [fail, Depends on TextEncoder] +file/File-constructor.any.html: [needs-node12, Requires globalThis] file/send-file-form*: [fail, DataTransfer not implemented] +fileReader.any.html: [needs-node12, Requires globalThis] filelist-section/filelist.html: "Check if item is a instanceof Function": [fail, function is not instanceof Function] historical.https.html: "Service worker test setup": [fail, Needs Service Worker implementation] idlharness.html: [fail, URL.createObjectURL not implemented] -reading-data-section/FileReader-multiple-reads.html: [timeout, Unknown; spews tons of zeros on the screen when failing] +reading-data-section/FileReader-multiple-reads.any.html: [timeout, Unknown; spews tons of zeros on the screen when failing] reading-data-section/filereader_events.any.html: [fail, Unknown] -reading-data-section/filereader_result.html: +reading-data-section/filereader_result.any.html: 'result is null during "loadstart" event for readAsText': [fail, Unknown] 'result is null during "loadstart" event for readAsDataURL': [fail, Unknown] 'result is null during "loadstart" event for readAsArrayBuffer': [fail, Unknown] @@ -84,6 +86,7 @@ elementFromPosition.html: [fail, Unknown] elementScroll.html: [fail, Unknown] elementsFromPoint**: [fail, Not implemented] getBoundingClientRect-empty-inline.html: [fail, document.fonts is not implemented] +getBoundingClientRect-shy.html: [fail, Not implemented] getClientRects-br-*: [fail, Not implemented] getClientRects-inline-atomic-child.html: [fail, Not implemented] idlharness.html: [fail, Depends on Fetch] @@ -171,8 +174,6 @@ throw-on-dynamic-markup-insertion-counter-reactions.html: [timeout, document.ope DIR: dom/abort -event.any.html: [fail, AbortSignal.abort() not implemented] - --- DIR: dom/collections @@ -185,6 +186,7 @@ AddEventListenerOptions-signal.any.html: [fail, Not implemented] Event-dispatch-click.tentative.html: [fail, Test is wrong, https://github.com/web-platform-tests/wpt/issues/27819] Event-isTrusted.any.html: [fail, Unknown] Event-timestamp-high-resolution.html: [fail, Not implemented] +Event-timestamp-high-resolution.https.html: [fail, Not implemented] EventListener-incumbent-global-1.sub.html: [timeout, Multi-globals] EventListener-incumbent-global-2.sub.html: [timeout, Multi-globals] EventListener-invoke-legacy.html: [timeout, Animation stuff not implemented] @@ -270,6 +272,8 @@ headers-record.any.html: [needs-node12, V8 bug fixed in Node 12 onward] DIR: hr-time +clamped-time-origin-isolated.https.html: [fail, Needs crossOriginIsolated] +clamped-time-origin.html: [fail, Needs crossOriginIsolated] cross-origin-isolated-timing-attack.https.html: [fail, Not implemented] idlharness.any.html: [fail, Depends on fetch] performance-tojson.html: [fail, PerformanceTiming and PerformanceNavigation are not implemented] @@ -317,6 +321,7 @@ DIR: html/browsers/browsing-the-web/navigating-across-documents 014.html: [fail, Unknown] 015.html: [fail, Unknown] abort-document-load.html: [fail, Unknown] +about-srcdoc-navigation-blocked.html: [timeout, Unknown] anchor-fragment-**.html: [timeout, Unknown] anchor-jsurl-form-submit.html: [timeout, Unknown] child-navigates-parent-same-origin.window.html: [fail-slow, Unknown] @@ -369,6 +374,8 @@ history_properties_only_fully_active.html: [fail, Unknown] iframe_history_go_0.html: [timeout, Unknown] joint_session_history/001.html: [timeout, Unknown] joint_session_history/002.html: [timeout, Unknown] +traverse-during-beforeunload.html: [timeout, Unknown] +traverse-during-unload.html: [timeout, Unknown] traverse_the_history_1.html: [timeout, Unknown] traverse_the_history_2.html: [timeout, Unknown] traverse_the_history_3.html: [timeout, Unknown] @@ -451,6 +458,7 @@ proxy-getOwnPropertyDescriptor.html: 'Window target, no trap, "name" attribute': [fail, Incorrectly implemented as a data property] security-window/window-security.https.html: [fail, Exoticness of Window not implemented] self-et-al.window.html: [fail, Depends on window.open() and window.closed] +window-indexed-properties-delete-no-cache.html: [fail-slow, deleting window indexed properties should fail to remove iframes] window-indexed-properties-strict.html: [flaky, " Errors in `process.nextTick` callback: Uncaught TypeError: this[i].close is not a function @@ -551,7 +559,6 @@ auxiliary-browsing-contexts/opener.html: [timeout, Unknown] browsing-context-names/**: [timeout, Not implemented] browsing-context.html: [fail, Unknown] clear-window-name.https.html: [fail, Unknown] -document-access/**: [fail, Not implemented] document-domain-nested-navigate.window.html: [fail, Unknown] embedded-opener-a-form.html: [timeout, Opener not implemented] embedded-opener-remove-frame.html: [timeout, Opener not implemented] @@ -752,6 +759,7 @@ historical-progress-event.window.html: [needs-canvas] image-base-url.html: [timeout, not implemented] image-loading-eager.html: [needs-canvas, Unimplemented and pass with canvas] image-loading-lazy**: [fail-slow, loading attr not implemented] +img-picture-ancestor.html: [fail, Unknown; possibly needs media queries?] img.complete.html: [timeout, Unknown] invalid-src.html: [timeout, Resource loader doesn't catch bad URLs at the right point in the process] invisible-image.html: [fail, images block the window load event not implemented (images not in _queue)] @@ -767,6 +775,7 @@ picture-loading-lazy.html: [fail, scrollIntoView not implemented, loading attr n relevant-mutations.html: [timeout, Unknown] remove-element-and-scroll.html: [timeout, scrollIntoView not implemented] sizes/**: [timeout, Unimplemented] +source-media-outside-doc.html: [fail, Unknown; possibly needs media queries?] srcset/**: [timeout, Unimplemented] update-media.html: [timeout, Unimplemented] update-src-complete.html: [needs-canvas] @@ -971,7 +980,6 @@ execution-timing/043.html: [fail, Unknown] execution-timing/044.html: [fail, Unknown] execution-timing/045.html: [fail, Unknown] execution-timing/048.html: [fail, Unknown] -execution-timing/050.html: [fail, Unknown] execution-timing/052.html: [fail, Unknown] execution-timing/054.html: [fail, Unknown] execution-timing/055.html: [fail, Unknown] @@ -1116,6 +1124,9 @@ parsing/html_content_in_foreign_context.html: [fail, Parser issues with foreign parsing/unclosed-svg-script.html: [fail, Unknown] serializing-html-fragments/escaping.html: [fail, https://github.com/inikulin/parse5/issues/332] serializing-html-fragments/serializing.html: [fail, https://github.com/inikulin/parse5/issues/289] +xmldecl/xmldecl-1.html: [fail, Unknown; possibly iframes are inheriting encoding from their parent?] +xmldecl/xmldecl-2.html: [fail, several encodings misdetected?] +xmldecl/xmldecl-3.html: [fail, Unknown] --- @@ -1166,7 +1177,6 @@ messageevent-constructor.https.html: [fail, uses MessageChannel] DIR: html/webappapis/system-state-and-capabilities/the-navigator-object historical.https.window.html: [fail, Not implemented] -navigator-pluginarray.html: [fail, https://github.com/jsdom/jsdom/issues/2727#issuecomment-787559889] navigator-window-controls-overlay.html: [fail, Not implemented] navigator_user_agent.https.html: [fail, Not implemented] protocol.https.html: [fail, registerProtocolHandler() is not implemented] @@ -1200,16 +1210,25 @@ Document-prototype-currentScript.html: [timeout, Test not up to date next with u DocumentOrShadowRoot-prototype-elementFromPoint.html: [fail, offsetTop not implemented] MouseEvent-prototype-offsetX-offsetY.html: [fail, offsetTop not implemented] ShadowRoot-interface.html: [fail, shadowRoot.styleSheet is not yet implemented] -declarative/**: [fail, Not implemented] +declarative/declarative-after-attachshadow.tentative.html: [fail, Not implemented] +declarative/declarative-shadow-dom-attachment.tentative.html: [fail, Not implemented] +declarative/declarative-shadow-dom-basic.tentative.html: [fail, Not implemented] +declarative/declarative-shadow-dom-opt-in.tentative.html: [fail, Not implemented] +declarative/getinnerhtml.tentative.html: [fail, Not implemented] +declarative/innerhtml-before-closing-tag.tentative.html: [fail, Not implemented] +declarative/innerhtml-on-ordinary-template.tentative.html: [fail, Not implemented] +declarative/move-template-before-closing-tag.tentative.html: [fail, Not implemented] +declarative/script-access.tentative.html: [fail, Not implemented] +focus/ShadowRoot-delegatesFocus.html: [fail, DelegatesFocus is not implemented] focus/focus-pseudo-matches-on-shadow-host.html: [timeout, Seems to depend on autofocus] focus/focus-selector-delegatesFocus.html: [fail, Not implemented] form-control-form-attribute.html: [fail, Form association doesn't respect the spec] +imperative-slot-api-slotchange.html: [fail, Imperative slot API is not implemented] +imperative-slot-api.html: [fail, Imperative slot API is not implemented] leaktests/html-collection.html: [fail, Document.all is not implemented] leaktests/window-frames.html: [fail, Window.name is not implemeneted] offsetParent-across-shadow-boundaries.html: [fail, offsetParent not implemented] scroll-to-the-fragment-in-shadow-tree.html: [fail, Requires a layout engine] -slots-imperative-api-slotchange.tentative.html: [fail, Unknown] -slots-imperative-slot-api.tentative.html: [fail, Unknown (browsers also fail now)] untriaged/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011.html: [fail, ShadowRoot.stylesheets is not implemented] untriaged/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-004.html: [fail, https://github.com/w3c/selection-api/issues/114] untriaged/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-006.html: [fail, DocumentOrShadowRoot.elementFromPoint() is not implemented. Needs layout engine] @@ -1248,7 +1267,8 @@ percent-encoding.window.html: [fail, Depends on fetch] toascii.window.html: [fail, Depends on fetch] url-constructor.any.html: [fail, Depends on fetch] url-origin.any.html: [fail, Depends on fetch] -url-setters.html: [fail, Depends on fetch] +url-setters-a-area.window.html: [fail, Depends on fetch] +url-setters.any.html: [fail, Depends on fetch] urlencoded-parser.any.html: [fail, Depends on fetch] --- @@ -1256,12 +1276,16 @@ urlencoded-parser.any.html: [fail, Depends on fetch] DIR: websockets "**/**?wpt_flags=h2": [fail-slow, HTTP/2 web sockets not implemented] -Create-Secure-extensions-empty.any.html: [timeout, Buggy test as the test does not take into account the mandatory permessage-deflate extension] +"*.any.sharedworker.html?wss": [fail-slow, Needs SharedWorker implementation] +"*.any.worker.html?wss": [fail-slow, Needs Worker implementation] Create-blocked-port.any.html: [fail-slow, Not implemented] Create-on-worker-shutdown.any.html: [fail, Needs Worker implementation] +Send-data.worker.html?wss: [fail-slow, Needs Worker implementation] +basic-auth.any.serviceworker.html?wss: [fail-slow, Unknown] cookies/third-party-cookie-accepted.https.html: [fail, 'https://github.com/salesforce/tough-cookie/issues/80'] interfaces/WebSocket/close/close-connecting.html*: [fail, Potentially buggy test as Chrome fails it too] remove-own-iframe-during-onerror.window.html: [timeout, iframe.srcdoc not implemented] +remove-own-iframe-during-onerror.window.html?wss: [timeout, iframe.srcdoc not implemented] stream/tentative/*: [fail, This is not yet standardised and browsers should not be expected to pass these tests.] unload-a-document/*: [timeout, Requires window.open] @@ -1301,7 +1325,9 @@ data-uri.htm: [fail, Unknown] event-error-order.sub.html: [fail, Unknown] event-timeout-order.any.html: [fail, Unknown] event-upload-progress.any.html: [fail, Unknown] -formdata.htm: [fail, FormDataEvent is not implemented] +formdata.html: + "Newly created FormData contains entries added to \"formData\" IDL attribute of FormDataEvent.": [fail, FormDataEvent not implemented] + "|new FormData()| in formdata event handler should throw": [fail, FormDataEvent not implemented] getallresponseheaders.htm: [fail, Unknown] getresponseheader.any.html: [fail, Unknown] headers-normalize-response.htm: [timeout, Unknown] diff --git a/test/web-platform-tests/wpt-manifest.json b/test/web-platform-tests/wpt-manifest.json index bef742fc6e..f75b7c7579 100644 --- a/test/web-platform-tests/wpt-manifest.json +++ b/test/web-platform-tests/wpt-manifest.json @@ -1,6 +1,52 @@ { "items": { "crashtest": { + "accessibility": { + "crashtests": { + "aom-in-destroyed-iframe.html": [ + "d412892983a48aca624fcffa4100eb94b8109919", + [ + null, + {} + ] + ], + "aria-hidden-with-select.html": [ + "2aedbcfb82d4f94925a89294d11d1e4c2a6564a6", + [ + null, + {} + ] + ], + "content-visibility-generated-content-removal.html": [ + "b880e244fe17099e829d54ea62d4d53fd434b829", + [ + null, + {} + ] + ], + "included-descendant-dom-removal.html": [ + "fd978fb45e5a844f2b61cd4c10fba219410a9682", + [ + null, + {} + ] + ], + "included-descendant-layout-removal.html": [ + "5270a36351988474e45eb4515df0a0e3db16d631", + [ + null, + {} + ] + ], + "table-ignored-child.html": [ + "99f385f6eaf3ebdbc5b8c4517c9a7ec7fce50117", + [ + null, + {} + ] + ] + } + }, "css": { "CSS2": { "floats": { @@ -62,6 +108,13 @@ {} ] ], + "simultaneous-animations-crash.html": [ + "223741157e152349195c8bfcc3f83217b7ad1c22", + [ + null, + {} + ] + ], "webkit-writing-mode-crash.html": [ "8c851a7572e4568816bd3ee05669d72ba50be67f", [ @@ -71,6 +124,15 @@ ] }, "css-backgrounds": { + "animations": { + "background-color-animation-removed-element-crash.html": [ + "f8408fb5a176c74acc8e5ceea0dd9d5e8f135918", + [ + null, + {} + ] + ] + }, "linear-gradient-calc-crash.html": [ "5ae6104a7941b836ab700ca50b5dbe20914afcf6", [ @@ -104,12 +166,35 @@ ] ], "content-visibility": { + "content-visibility-continuations-crash.html": [ + "e20d26fceedfc0071c61750776afa62c346d308e", + [ + null, + {} + ] + ], "content-visibility-form-controls-crash.html": [ "6c9634dc1f3605ff20e68241d1f50ff93c8268b2", [ null, {} ] + ], + "contentvisibility-nestedslot-crash.html": [ + "f4f07814e6010687e95e3f62a8b837992c8b894d", + [ + null, + {} + ] + ] + }, + "crashtests": { + "contain-nested-crash-001.html": [ + "063563c2609a77ba4937aa66ed195e92c6375b21", + [ + null, + {} + ] ] } }, @@ -199,7 +284,7 @@ ] ], "padding-overflow-crash.html": [ - "fd0c333fabadb073b9977a63de6a8c5c3ed79042", + "163be06a91758492002a8505c346103cf0a0b4cc", [ null, {} @@ -227,6 +312,15 @@ ] ] }, + "css-fonts": { + "infinite-size-crash.html": [ + "d44cf4a37e26a772a4742a825a7422b795dfc9ee", + [ + null, + {} + ] + ] + }, "css-grid": { "abspos": { "positioned-grid-items-crash.html": [ @@ -307,13 +401,6 @@ null, {} ] - ], - "multicol-in-item-crash.https.html": [ - "b7d481e1fb73c8af4f8fb74250b02cd82e3f7496", - [ - null, - {} - ] ] }, "css-lists": { @@ -347,6 +434,15 @@ {} ] ], + "crashtests": { + "multicol-dynamic-transform-crash.html": [ + "993bd1eddd857f07f8a00459bd256068a1f9daa8", + [ + null, + {} + ] + ] + }, "extremely-tall-multicol-with-extremely-tall-child-crash.html": [ "1f74697489df2d8ed687b40d3681d9918f2ecb0f", [ @@ -423,6 +519,15 @@ ] }, "css-position": { + "crashtests": { + "position-absolute-crash-014.html": [ + "a169a7b9498f4f014f9feb6ba64300f186f92776", + [ + null, + {} + ] + ] + }, "nested-positions-crash.html": [ "dbc272fa093b154be09ea2843d01da50003aa690", [ @@ -563,6 +668,13 @@ {} ] ], + "col_span_dynamic_crash.html": [ + "67630066fad440e64f901512622cbaabdc4af370", + [ + null, + {} + ] + ], "dialog-table-crash.html": [ "decc3eb1fbe1937e693a5401c64f58a3411d792b", [ @@ -570,6 +682,20 @@ {} ] ], + "dynamic_col_width_crash.html": [ + "e19c22be31f9375ccdef1a161d57997f88f8f0d7", + [ + null, + {} + ] + ], + "dynamic_table_layout_crash.html": [ + "cc28f3bfdc87c4e3add60b0bc5018665ee33acf3", + [ + null, + {} + ] + ], "empty_cells_crash.html": [ "7635afc9e6c8b9a6810988695caf80b931c7a72d", [ @@ -577,6 +703,13 @@ {} ] ], + "empty_table_with_cols.html": [ + "a2b817f85cf5aa6a7f1efb008710c9dbb3f46683", + [ + null, + {} + ] + ], "expression_width_crash.html": [ "5c636bef6ab8acb68553c1b9b19e9ae744229c30", [ @@ -619,12 +752,26 @@ {} ] ], + "textarea-intrinsic-size-crash.html": [ + "e84f2399874731e1a64131515daffbed18bf1096", + [ + null, + {} + ] + ], "uninitialized_read_crash.html": [ "5aa3b223cd53401edf01a25d2079a87b034b76fb", [ null, {} ] + ], + "vertical_percentage_crash.html": [ + "73496da4812ce5cdaa7be070b4c37cf818a09af0", + [ + null, + {} + ] ] }, "visibility-collapse-colspan-crash.html": [ @@ -665,12 +812,33 @@ {} ] ], + "rendering-table-caption-with-list-item-and-svg-crash.html": [ + "0cc371c56daf4115275c661d8affa4b98f5e2234", + [ + null, + {} + ] + ], + "rendering-table-caption-with-negative-margins-crash.html": [ + "c090be9bbefb74e760b83c41537a8cf8f6b38a5e", + [ + null, + {} + ] + ], "trailing-space-with-cr-crash.html": [ "48c223e352d378e10b7cc10e5e49e8613e43c380", [ null, {} ] + ], + "word-spacing-large-value.html": [ + "cbd83fab16036686be6afdbc57d67949b57a6e19", + [ + null, + {} + ] ] }, "ellisize-rtl-text-crash.html": [ @@ -759,6 +927,19 @@ ] ] }, + "css-typed-om": { + "stylevalue-serialization": { + "crashtests": { + "cssTransform-Internal-value.html": [ + "96097e4f94173b65ae93cb1bad76ebca3a32eee9", + [ + null, + {} + ] + ] + } + } + }, "css-ui": { "outline-with-001-crash.html": [ "d46ba8080c3ce4fddc55698e598707384ba810b1", @@ -775,9 +956,32 @@ null, {} ] - ] + ], + "crashtests": { + "orthogonal-percent-height-multicol-crash.html": [ + "aca93d23fc067ee64eb54f91fec5dbebb16d94d6", + [ + null, + {} + ] + ], + "orthogonal-scroll-percent-height-crash.html": [ + "d40ebfd6ebfadbcb89b630f629faf5da3425d78b", + [ + null, + {} + ] + ] + } }, "cssom": { + "declaration-block-all-crash.html": [ + "2d781e5dcff9d9ffdd716af0d08f81171e0ba3ea", + [ + null, + {} + ] + ], "removerule-invalidation-crash.html": [ "a83f43d5faf62338cfb442468a6e9e0e011c79f2", [ @@ -847,9 +1051,39 @@ {} ] ] + }, + "motion": { + "offset-path-huge-angle-deg-001-crash.html": [ + "1e3ddfafe1f94196e8e4babf8dac560175d15481", + [ + null, + {} + ] + ], + "offset-path-huge-angle-grad-001-crash.html": [ + "c76933ef51ea5717175b09bae36f5d2663bd21ef", + [ + null, + {} + ] + ], + "offset-path-huge-angle-turn-001-crash.html": [ + "c1b06c93d594414ebb49b1f250f3ec4f17ec02ed", + [ + null, + {} + ] + ] } }, "custom-elements": { + "prevent-extensions-crash.html": [ + "ae8b96b413319a018636b73762659704ffbe881f", + [ + null, + {} + ] + ], "xhtml-crash.xhtml": [ "8b45d2ecc830c088019b4896f1cdf0d29c0d47fb", [ @@ -860,6 +1094,13 @@ }, "dom": { "events": { + "keypress-dispatch-crash.html": [ + "3207adbd8c891903b1c6edd65edc41de9b9e7312", + [ + null, + {} + ] + ], "replace-event-listener-null-browsing-context-crash.html": [ "f41955eedd39fbdb788b4e1bcdc454fb61f97277", [ @@ -889,6 +1130,13 @@ null, {} ] + ], + "node-appendchild-crash.html": [ + "245de87f2d36ed39eec30cd627aa3c21bd4ff115", + [ + null, + {} + ] ] }, "svg-insert-crash.html": [ @@ -897,7 +1145,23 @@ null, {} ] - ] + ], + "xslt": { + "invalid-output-encoding-crash.html": [ + "d84bb5b3c33fabc7fc4a27a4b9ac66e83dd56da2", + [ + null, + {} + ] + ], + "transformToFragment-on-node-from-inactive-document-crash.html": [ + "38a62a0a9d9c2979603c68bcea07f48f8ddbd40c", + [ + null, + {} + ] + ] + } }, "editing": { "other": { @@ -982,6 +1246,13 @@ {} ] ], + "insert-legend-in-multicol-fieldset-crash.html": [ + "aad552dbe2ca80ceaf66a180e1ae18c6d2b96708", + [ + null, + {} + ] + ], "multicol-legend-becomes-floated-crash.html": [ "0e7f87232abb99000e7bc351dd73aee207c3b13a", [ @@ -1023,6 +1294,13 @@ null, {} ] + ], + "two-summaries-removal-crash.html": [ + "164d3f16aa65deb97826607e2f57c33dcaa0f9b0", + [ + null, + {} + ] ] } }, @@ -1045,6 +1323,13 @@ ] }, "the-iframe-element": { + "iframe-document-move-crash.html": [ + "43da8bf50c82fee48103148c175d001200ec54a9", + [ + null, + {} + ] + ], "sandbox-toggle-in-inactive-document-crash.html": [ "654542f6a8e21a23f70d50c1c547e9dac6971c36", [ @@ -1083,6 +1368,13 @@ null, {} ] + ], + "object-remove-param-crash.html": [ + "e1e2ebb4e60a4ab0908d9bb4a961016fa482d88c", + [ + null, + {} + ] ] }, "the-video-element": { @@ -1105,6 +1397,15 @@ ] ] }, + "the-datalist-element": { + "remove-datalist-crash.html": [ + "b40d5feebe784bf5b954de514a93724c91fc7ac6", + [ + null, + {} + ] + ] + }, "the-form-element": { "form-action-in-inactive-document-crash.html": [ "8a3543fcbcf4a51b1a3e95a549c5b345fa39dcf3", @@ -1150,6 +1451,22 @@ ] ] }, + "the-dialog-element": { + "dialog-audio-video-crash.html": [ + "c8c1ab282654d989c1c5c3e0c25623b4216501a3", + [ + null, + {} + ] + ], + "dialog-not-in-tree-crash.html": [ + "fe3fab8ebb008c1bff270921c0f416def529729d", + [ + null, + {} + ] + ] + }, "the-summary-element": { "display-table-with-rt-crash.html": [ "57cc45478e03ce1cdbb755281b2f434b38582563", @@ -1198,7 +1515,14 @@ {} ] ] - } + }, + "template-table-crash.html": [ + "0f6a49874d2da96f612d2770031ab0ce883f88c9", + [ + null, + {} + ] + ] } }, "text-level-semantics": { @@ -1250,6 +1574,13 @@ {} ] ], + "math-depth-overflow.html": [ + "e096dbb558812ce38ecacc0eb4c32aab1a185bd8", + [ + null, + {} + ] + ], "mmultiscripts-with-two-prescripts.html": [ "54f938460636bb351d9da20611fd872d6b888ca6", [ @@ -1324,8 +1655,22 @@ {} ] ], + "imperative-slot-api-crash.html": [ + "b029689211f57f355974130fba51d1ea0cebbbcf", + [ + null, + {} + ] + ], "nested-slot-remove-crash.html": [ - "2930e3a221028712377e8944873c195b39542dab", + "2ac3f109c7a85d2b5521218c3fea53372c8cc0b9", + [ + null, + {} + ] + ], + "user-agent-shadow-root-crash.html": [ + "bd90b04f290f87eac420eb98457b58701eb31320", [ null, {} @@ -1357,12 +1702,33 @@ {} ] ], + "chrome-bug-1205852.html": [ + "2048b57bc070b8f7a085b2c4a4b9c9f9e2ef3d60", + [ + null, + {} + ] + ], + "chrome-bug-1207590.html": [ + "3cbf61f02fdcaee91a614c11abbfa4701f3d16ac", + [ + null, + {} + ] + ], "firefox-bug-1688293.html": [ "9ab1a88312683a66798cb52693c2ba4389222ff4", [ null, {} ] + ], + "firefox-bug-1703592.html": [ + "badd12e5ddde8395edc936834057c0757b29ed30", + [ + null, + {} + ] ] }, "extensibility": { @@ -1419,22 +1785,6 @@ ] } } - }, - "xslt": { - "invalid-output-encoding-crash.html": [ - "d84bb5b3c33fabc7fc4a27a4b9ac66e83dd56da2", - [ - null, - {} - ] - ], - "transformToFragment-on-node-from-inactive-document-crash.html": [ - "38a62a0a9d9c2979603c68bcea07f48f8ddbd40c", - [ - null, - {} - ] - ] } }, "manual": { @@ -13967,7 +14317,7 @@ ] ], "showOpenFilePicker-manual.https.html": [ - "fd72b040c0c92d560b5bdcfda169b0c36b2ea098", + "2c8f29d7b6577ea03162ffb29c386613245a12d5", [ null, {} @@ -16984,52 +17334,6 @@ ] }, "payment-request": { - "PaymentAddress": { - "attributes-and-toJSON-method-manual.https.html": [ - "8afca19f923d45a2d97a134ecc1c9a02bf4aea82", - [ - null, - {} - ] - ] - }, - "PaymentRequestUpdateEvent": { - "updateWith-call-immediate-manual.https.html": [ - "1365ecefebeb279db2ede9de99d2f0c984708c5a", - [ - null, - {} - ] - ], - "updateWith-duplicate-shipping-options-manual.https.html": [ - "a4a7afd7f6337c3134d254f1257463d69efd30fc", - [ - null, - {} - ] - ], - "updateWith-incremental-update-manual.https.html": [ - "c1ed1b5f6850c7f26566ffb6e98b06ea51739e15", - [ - null, - {} - ] - ], - "updateWith-method-abort-update-manual.https.html": [ - "e24452c2a99d301b8eac033083e3795e54bbe16a", - [ - null, - {} - ] - ], - "updateWith-state-checks-manual.https.html": [ - "fb16de5699aa74e9fb71788e2378df6e21847f12", - [ - null, - {} - ] - ] - }, "PaymentValidationErrors": { "retry-shows-error-member-manual.https.html": [ "9135520cd762f3e6286b5f3ba572f88cae920fa1", @@ -17044,50 +17348,8 @@ null, {} ] - ], - "retry-shows-shippingAddress-member-manual.https.html": [ - "94e6fa5105b20a7127292de57adcfb20f3b806e8", - [ - null, - {} - ] ] }, - "algorithms-manual.https.html": [ - "b90c312aba3bf4978986defe00f5195c74b88b61", - [ - null, - {} - ] - ], - "billing-address-changed-manual.https.html": [ - "ccfeb6fd364c759131022c96576c9289adb0c0ee", - [ - null, - {} - ] - ], - "change-shipping-option-manual.https.html": [ - "438001804acdaca21410ce0d367a8208cac60aff", - [ - null, - {} - ] - ], - "change-shipping-option-select-last-manual.https.html": [ - "4ad31d65317338f0474c24e6e35688eb8f2b4cbe", - [ - null, - {} - ] - ], - "dynamically-change-shipping-options-manual.https.html": [ - "0e6670a1b824524872b8317b4258196379214e46", - [ - null, - {} - ] - ], "payment-request-hasenrolledinstrument-method-manual.tentative.https.html": [ "e6b164f7cc7b8f1c57b8fa9fd14cbc7f5ef81eea", [ @@ -17165,34 +17427,6 @@ null, {} ] - ], - "retry-method-manual.https.html": [ - "a5aab49e387d326c68bcca32d2ad5fe59385f517", - [ - null, - {} - ] - ], - "retry-method-warnings-manual.https.html": [ - "b68bf18309702c481c76adef0cddee24cbd1b543", - [ - null, - {} - ] - ], - "shippingAddress-attribute-manual.https.html": [ - "92bac2bb5e5e270cedfb5b84bc8c8998df46265e", - [ - null, - {} - ] - ], - "shippingOption-attribute-manual.https.html": [ - "687d3a52de9f6bfdb10456147586008b18683eb2", - [ - null, - {} - ] ] }, "rejects_if_not_active-manual.https.html": [ @@ -17202,20 +17436,6 @@ {} ] ], - "shipping-address-changed-manual.https.html": [ - "78b7f17ceeb984bde8009093a56969261e44dd7c", - [ - null, - {} - ] - ], - "show-method-optional-promise-resolves-manual.https.html": [ - "5360a9704af459f30180f938d12828f6dbf1b570", - [ - null, - {} - ] - ], "show-method-postmessage-manual.https.html": [ "0751920e375a2fa4a9a25b432a510808e03d7fef", [ @@ -17223,26 +17443,12 @@ {} ] ], - "updateWith-method-pmi-handling-manual.https.html": [ - "1a52978ca3e312392c754c08267405723e5f8800", - [ - null, - {} - ] - ], "user-abort-algorithm-manual.https.html": [ "078bf3d61ae6e75b3ccf0fed8a987e6b7cd36ffe", [ null, {} ] - ], - "user-accepts-payment-request-algo-manual.https.html": [ - "02251375853a7dccbcecc8d31dc50dd94e757cbb", - [ - null, - {} - ] ] }, "permissions-policy": { @@ -17329,13 +17535,6 @@ null, {} ] - ], - "pointerevent_pointerrawupdate_in_pointerlock-manual.html": [ - "5bd2eef739bc0a6983ada2feb4d604d3d5b1ef9c", - [ - null, - {} - ] ] } }, @@ -23230,13 +23429,6 @@ {} ] ], - "share-url-data-manual.https.html": [ - "e634c0c01c44c75eb7b348c3f9c6f6b1840fdb98", - [ - null, - {} - ] - ], "share-url-empty-manual.https.html": [ "4038dab8cf24dfc7705a17649c0162a916a9fe47", [ @@ -24164,6 +24356,21 @@ ] ] }, + "css-position": { + "position-fixed-overflow-print.html": [ + "cf5cf2ea530d7bec477e640356d4e3f2dac42f89", + [ + null, + [ + [ + "/css/css-position/position-fixed-overflow-print-ref.html", + "==" + ] + ], + {} + ] + ] + }, "css-values": { "viewport-units-001-print.html": [ "3bff494e535b9101a11222a40a382384415eee3f", @@ -24178,6 +24385,21 @@ {} ] ] + }, + "printing": { + "page-overflow-crash-print.html": [ + "e295c569d2d634867bab43741baf23c905918fc3", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ] } }, "custom-elements": { @@ -24356,6 +24578,25 @@ ] ] } + }, + "semantics": { + "embedded-content": { + "the-img-element": { + "image-srcdoc-relative-uri-print.html": [ + "4ad922ba00097ecfc8c0a90a72ca395aec3e8b9c", + [ + null, + [ + [ + "/html/semantics/embedded-content/the-img-element/image-srcdoc-relative-uri-print-ref.html", + "==" + ] + ], + {} + ] + ] + } + } } }, "infrastructure": { @@ -24386,6 +24627,19 @@ {} ] ], + "reftest_mismatch-num-pages-print.html": [ + "5efb590653a1959fd3659909aa8ac414cdd0a2c6", + [ + null, + [ + [ + "/infrastructure/reftest/reftest_match-print-ref.html", + "!=" + ] + ], + {} + ] + ], "reftest_mismatch-print.html": [ "5fd4a7f52a81cfedf6068809609aae6067f7e176", [ @@ -24461,6 +24715,21 @@ ] }, "svg": { + "layout": { + "svg-use-symbol-width-print.html": [ + "ae56d68eee25648dafa194fedac07835048cecac", + [ + null, + [ + [ + "/svg/layout/svg-use-symbol-width-print-ref.html", + "==" + ] + ], + {} + ] + ] + }, "painting": { "reftests": { "mask-print.svg": [ @@ -24493,6 +24762,21 @@ ] ] } + }, + "print": { + "svg-use-page-break-crash-print.html": [ + "82058799d4532894ef02915831a535fb0728f7f6", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ] } } }, @@ -83841,7 +84125,7 @@ ] ], "replaced-intrinsic-003.xht": [ - "e5ab5cb265b21f4f6c50fe4db1200c2fe88b2600", + "e68c0bebe7ce6307c96e2040a3d186b1de14f34b", [ null, [ @@ -115555,6 +115839,58 @@ {} ] ], + "emptyspan-1.html": [ + "dcf9367d2a2aa33599435ceaf176e79f9336cc3c", + [ + null, + [ + [ + "/css/CSS2/visuren/emptyspan-1-ref.html", + "==" + ] + ], + {} + ] + ], + "emptyspan-2.html": [ + "b740fad71b81c7a6b80e2acde33f862989a8aa73", + [ + null, + [ + [ + "/css/CSS2/visuren/emptyspan-2-ref.html", + "==" + ] + ], + {} + ] + ], + "emptyspan-3.html": [ + "1be809ec2d5471897098ade188c3eb41fadd7ce0", + [ + null, + [ + [ + "/css/CSS2/visuren/emptyspan-3-ref.html", + "==" + ] + ], + {} + ] + ], + "emptyspan-4.html": [ + "3656ada50420076c1a32273c4ac8c22f630a0013", + [ + null, + [ + [ + "/css/CSS2/visuren/emptyspan-4-ref.html", + "==" + ] + ], + {} + ] + ], "fixed-pos-stacking-001.xht": [ "221f5a2bc397c4e11fc2a12c7f936bc85043de44", [ @@ -115568,6 +115904,19 @@ {} ] ], + "float-inside-inline-between-blocks-1.html": [ + "296dcb9bde90c1e579f5baeb937510b644a5e886", + [ + null, + [ + [ + "/css/CSS2/visuren/float-inside-inline-between-blocks-1-ref.html", + "==" + ] + ], + {} + ] + ], "inherit-static-offset-001.xht": [ "6db781c9b942a2c26b13d60c971e1dab07211d83", [ @@ -115633,6 +115982,19 @@ {} ] ], + "percent-height-1.html": [ + "91c1594b2775dffcbd1fa8224c19b3ee8e98b7ab", + [ + null, + [ + [ + "/css/CSS2/visuren/percent-height-1-ref.html", + "==" + ] + ], + {} + ] + ], "position-absolute-008a.xht": [ "675acae084e3c90e92fd5e98d6171cc185f3aa31", [ @@ -115659,6 +116021,162 @@ {} ] ], + "remove-from-split-inline-1-ref.html": [ + "f197d6ac93da70b237751f56c6e7a4631831b35f", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-1-noib-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-1.html": [ + "07053efa19b0a0bca41d840ad7323c7d33d2f459", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-1-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-2.html": [ + "d4cf51040e55ebd7faca43cbb893b79001546519", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-2-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-3-ref.html": [ + "5822665ffee2503e0a3307b0f0f19d77e39267b6", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-3-noib-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-3.html": [ + "1d5e2a45bea3e3ee843aadb1cd75ff548b300fa8", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-3-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-4-ref.html": [ + "8768b0d25bb56a6ea7ee56f0ecf2b34a4ea0163c", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-4-noib-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-4.html": [ + "44c0ceed87db65c7c11d7df275433ed6d6a78aa1", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-4-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-5-ref.html": [ + "68258ef8b1a5b3f915f524aa2c0ce8e9b6b6ff62", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-5-noib-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-5.html": [ + "539115e030142ab99be79814d0fc840b2fe53b00", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-5-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-6-ref.html": [ + "bd43b45db5c8be07fb5ae80c19da36959f69f06b", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-6-noib-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-from-split-inline-6.html": [ + "99bbcf7a0f0676e384bdf645b4eb5059fdb36c36", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-from-split-inline-6-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-split-inline-1.html": [ + "cfe6a5e8c02eaa683836da5bc9e0073755977662", + [ + null, + [ + [ + "/css/CSS2/visuren/remove-split-inline-1-ref.html", + "==" + ] + ], + {} + ] + ], "right-offset-position-fixed-001.xht": [ "de9cea2811d7e5b0b65cb9c494d3002f38a6b1b6", [ @@ -115672,6 +116190,45 @@ {} ] ], + "split-inner-inline-1.html": [ + "3ae7392c2347a901e247adccb30227a8e812d29e", + [ + null, + [ + [ + "/css/CSS2/visuren/split-inner-inline-1-ref.html", + "==" + ] + ], + {} + ] + ], + "split-inner-inline-2.html": [ + "318df5344f74e5d0662f3d47fa20d0c2ffe1fa1f", + [ + null, + [ + [ + "/css/CSS2/visuren/split-inner-inline-2-ref.html", + "==" + ] + ], + {} + ] + ], + "table-pseudo-in-part3-1.html": [ + "cb50af9ca87c4d276cbbdf5f99eaddb7fdd33d3a", + [ + null, + [ + [ + "/css/CSS2/visuren/table-pseudo-in-part3-1-ref.html", + "==" + ] + ], + {} + ] + ], "top-114.xht": [ "a17b7cfbae7d409584e6e5dad7c75377e259a5e3", [ @@ -115697,6 +116254,32 @@ ], {} ] + ], + "whitespace-present-1a.html": [ + "283884b0843ab525bb29d0ebeda635ba63ae4d73", + [ + null, + [ + [ + "/css/CSS2/visuren/whitespace-present-1-ref.html", + "==" + ] + ], + {} + ] + ], + "whitespace-present-1b.html": [ + "70239a8e0853afad656f70cdba460dc3f10995fc", + [ + null, + [ + [ + "/css/CSS2/visuren/whitespace-present-1-ref.html", + "==" + ] + ], + {} + ] ] }, "zindex": { @@ -119688,7 +120271,7 @@ ] ], "tabledata-extraneous-data-001.xht": [ - "5c72c5f2cd3186bda086b6a782ec267d2a418806", + "ca36fb2fd4fa76e4c6781443651600330c14c2c4", [ null, [ @@ -120381,6 +120964,19 @@ {} ] ], + "mix-blend-mode-rotated-clip.html": [ + "9e915ac3cca49d127104e43a7fc50fa734eb9da1", + [ + null, + [ + [ + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-rotated-clip-ref.html", + "==" + ] + ], + {} + ] + ], "mix-blend-mode-script.html": [ "1268a8dc3f8242f03007dfc5a5afbd321ee57b7b", [ @@ -120852,7 +121448,7 @@ ] ], "nested-scale-animations.html": [ - "3ca7bc7ed1f59d17e322dec6a32ae7388ae3b934", + "8793e044b703e1bc30a710142d310f1f28c3350a", [ null, [ @@ -120906,6 +121502,45 @@ }, "css-backgrounds": { "animations": { + "background-color-animation-element-not-visible-at-current-viewport.html": [ + "db212e39926789f8b27d06b2a16a0f77046ef3cd", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-element-not-visible-at-current-viewport-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-fallback-additive-keyframe.html": [ + "d4d3acf31e6d4f248c35fbef2c6a05b26be6ce77", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-fallback-additive-keyframe-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-fallback-missing-0-percent.html": [ + "9140b705d435055e9e8d83219d553823d565593f", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-fallback-missing-0-percent-ref.html", + "==" + ] + ], + {} + ] + ], "background-color-animation-fallback-missing-100-percent.html": [ "1c5b63201f64464ef87a8b7a71348047dde10da0", [ @@ -120932,47 +121567,60 @@ {} ] ], - "background-color-animation-single-keyframe.html": [ - "019b7f83f13500221381e10beaf7631cfd119214", + "background-color-animation-fragmented.html": [ + "64d94b93224aeec6df8a9b98d0e30ddcdf971b9b", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-single-keyframe-ref.html", + "/css/css-backgrounds/animations/background-color-animation-fragmented-ref.html", "==" ] ], {} ] ], - "background-color-animation-three-keyframes1.html": [ - "cba0113f00396d2e6db92ebb6b6b903266eacfb4", + "background-color-animation-in-body.html": [ + "e5783f2b41f8e89b15d7b2a5d0c2abfbec37ad40", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/css-backgrounds/animations/background-color-animation-in-body-ref.html", "==" ] ], {} ] ], - "background-color-animation-three-keyframes2.html": [ - "d2be16034f9d543b48bf80bfcd634b1580e66899", + "background-color-animation-non-zero-size-element-change-to-zero.html": [ + "6ba25c819678d4a9c0141df457efaf37f5764163", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-three-keyframes2-ref.html", + "/css/css-backgrounds/animations/background-color-animation-non-zero-size-element-change-to-zero-ref.html", "==" ] ], {} ] ], - "background-color-animation-three-keyframes3.html": [ - "708faa556070b1e7190ca3fca9618c4618857b41", + "background-color-animation-single-keyframe.html": [ + "019b7f83f13500221381e10beaf7631cfd119214", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-single-keyframe-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-three-keyframes1.html": [ + "cba0113f00396d2e6db92ebb6b6b903266eacfb4", [ null, [ @@ -120984,78 +121632,143 @@ {} ] ], - "background-color-animation-with-images.html": [ - "0ea29b8f1cfd65fb4c2a4f9c570443f582403e9e", + "background-color-animation-three-keyframes2.html": [ + "d2be16034f9d543b48bf80bfcd634b1580e66899", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-images-ref.html", + "/css/css-backgrounds/animations/background-color-animation-three-keyframes2-ref.html", "==" ] ], {} ] ], - "background-color-animation-with-zero-alpha.html": [ - "c282898287f4ac119df237dd816c8679c7c47089", + "background-color-animation-three-keyframes3.html": [ + "708faa556070b1e7190ca3fca9618c4618857b41", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-zero-alpha-ref.html", + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], {} ] ], - "background-color-animation-with-zero-playbackRate.html": [ - "2a563994620ddcf6bac8eddd004666400a064893", + "background-color-animation-with-images.html": [ + "0ea29b8f1cfd65fb4c2a4f9c570443f582403e9e", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-zero-playbackRate-ref.html", + "/css/css-backgrounds/animations/background-color-animation-with-images-ref.html", "==" ] ], {} ] ], - "background-color-animation.html": [ - "597f52c9156ec7b08cf07bea2418d79fc9c7b9f9", + "background-color-animation-with-table1.html": [ + "de5f482e886b54ec67573097c7d8c509a26496cc", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "background-color-transition-with-delay.html": [ - "e3526eeb08c8cd2a149b1811b1670f2ede5c93f8", + "background-color-animation-with-table2.html": [ + "5fc03b3d92b864c641a72ef312b348f06137cf88", [ null, [ [ - "/css/css-backgrounds/animations/background-color-transition-with-delay-ref.html", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "background-color-transition-with-initially-transparent.html": [ - "fc2031fb001bf9e482c508ab8cdaf95331d94811", + "background-color-animation-with-table3.html": [ + "0ee8fdd69f9aa8834aadf211f6353cfba0461494", [ null, [ [ - "/css/css-backgrounds/animations/background-color-transition-with-initially-transparent-ref.html", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-with-table4.html": [ + "319ee77481e0cfcc942d8bff1c9bd167f7149bd1", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-with-zero-playbackRate.html": [ + "2a563994620ddcf6bac8eddd004666400a064893", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-with-zero-playbackRate-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-zero-size-element-change-to-non-zero.html": [ + "f62380f9ed4416e1bc425e2d28526f7706aa4a7f", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-zero-size-element-change-to-non-zero-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation-zero-size-element.html": [ + "008b78a4c00234a553194f3a1673e67aa1e9a223", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-zero-size-element-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-animation.html": [ + "597f52c9156ec7b08cf07bea2418d79fc9c7b9f9", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], @@ -121075,13 +121788,106 @@ {} ] ], - "two-background-color-animation-diff-length.html": [ - "b484eec9a7edb78c2a54623ac267b009b8a1c2d6", + "background-color-transparent-animation-in-body.html": [ + "f156f91408770341b2b3e80bde1828752a2162ac", + [ + null, + [ + [ + "/css/css-backgrounds/animations/background-color-transparent-animation-in-body-ref.html", + "==" + ] + ], + {} + ] + ], + "invalidation": { + "background-color-animation-with-zero-alpha.html": [ + "c282898287f4ac119df237dd816c8679c7c47089", + [ + null, + [ + [ + "/css/css-backgrounds/animations/invalidation/background-color-animation-with-zero-alpha-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-transition-obscured.html": [ + "9f8c2fc9c4f41cffabf964141c742dfeab38f45e", + [ + null, + [ + [ + "/css/css-backgrounds/animations/invalidation/background-color-transition-obscured-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-transition-with-delay.html": [ + "bf7d8fb63aa975aa1789f72d60cd82b3cf8afb46", + [ + null, + [ + [ + "/css/css-backgrounds/animations/invalidation/background-color-transition-with-delay-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-transition-with-initially-transparent.html": [ + "bd75226601a0e96d376842aaf943871e41a383bf", + [ + null, + [ + [ + "/css/css-backgrounds/animations/invalidation/background-color-transition-with-initially-transparent-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "two-background-color-animation-diff-length1.html": [ + "b584ed835c7a66764c0fce057d777faf851a558c", + [ + null, + [ + [ + "/css/css-backgrounds/animations/two-background-color-animation-diff-length1-ref.html", + "==" + ] + ], + {} + ] + ], + "two-background-color-animation-diff-length2.html": [ + "c6822dec4cbe6f16126f1ef141a7eafc2765a6ff", + [ + null, + [ + [ + "/css/css-backgrounds/animations/two-background-color-animation-diff-length2-ref.html", + "==" + ] + ], + {} + ] + ], + "two-background-color-animation-diff-length3.html": [ + "e12d8a7fd2ae3c1c8e24edc6eafae63bbe753783", [ null, [ [ - "/css/css-backgrounds/animations/two-background-color-animation-diff-length-ref.html", + "/css/css-backgrounds/animations/two-background-color-animation-diff-length3-ref.html", "==" ] ], @@ -121116,7 +121922,7 @@ ] ], "background-attachment-353.html": [ - "93338c1f8d5c3ec1d745afbb99699e02d3417955", + "5ed09397a83b94c46242641461dae3f69c7c38a1", [ null, [ @@ -121606,6 +122412,19 @@ {} ] ], + "background-clip-content-box-002.html": [ + "7dfa732643f84dac998eb5f2e05f63993bf6e9d3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "background-clip_padding-box.html": [ "354cbba90759471f886961d3b0e1a5202618d577", [ @@ -121710,6 +122529,19 @@ {} ] ], + "background-color-body-propagation-008.html": [ + "7e53211fe570054e85e7f919a60719e93b311bb6", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], "background-color-clip.html": [ "961e161388d7f1962cfc4ecb22c18b47e60ad62e", [ @@ -121893,7 +122725,7 @@ ] ], "background-image-first-letter.html": [ - "0b0a813d75b883bbfb03102f160664b8285f4146", + "87160959a29e27c4fef3c15e39fd576aea456253", [ null, [ @@ -121906,7 +122738,7 @@ ] ], "background-image-first-line.html": [ - "304fef40a896fad7af48bc71c4c921325e9695e4", + "eb8cbbd0be5a632b1715dcc6a0b9836b1645cf22", [ null, [ @@ -121944,6 +122776,19 @@ {} ] ], + "background-image-table-cells-straddling-no-repeat.html": [ + "67f7937a3fcc93d1f4d0ce1806eea1e12e6078ee", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "background-image-table-cells-zoomed.html": [ "fc23dec322b2764be8b99fb87e5931682e7756a0", [ @@ -121957,6 +122802,19 @@ {} ] ], + "background-image-with-border-radius-fidelity.html": [ + "b0b494f50219eb1e6e72b2deed232a01f7582d12", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-with-border-radius-fidelity-ref.html", + "==" + ] + ], + {} + ] + ], "background-margin-iframe-root.html": [ "9c0cc829ff01036ad9bbb5491940288a1fc8ec3a", [ @@ -126537,12 +127395,12 @@ ] ], "border-image-slice-percentage.html": [ - "5ef9ff0d1df560a31a87df7438c9e435d6ad65e3", + "0026157a62785913a736e3c5d21aff47c2cc256c", [ null, [ [ - "/css/css-backgrounds/reference/border-image-slice-percentage-ref.html", + "/css/css-backgrounds/reference/border-image-repeat-round-ref.html", "==" ] ], @@ -127662,6 +128520,32 @@ {} ] ], + "linear-gradient-currentcolor-first-line.html": [ + "981aa8db921b60969fe9eab489442ed0b424a3d0", + [ + null, + [ + [ + "/css/css-backgrounds/linear-gradient-currentcolor-first-line-ref.html", + "==" + ] + ], + {} + ] + ], + "local-attachment-content-box-scroll.html": [ + "7644c15886a29f66ca80e60b74d687cc0bdafc8a", + [ + null, + [ + [ + "/css/css-backgrounds/local-attachment-content-box-scroll-ref.html", + "==" + ] + ], + {} + ] + ], "scroll-positioned-multiple-background-images.html": [ "a9ca550ce3dea2626de05bf31437a0a19aeedbce", [ @@ -128238,6 +129122,32 @@ {} ] ], + "break-inside-avoid-min-block-size-1.html": [ + "733aae58d6fffb3af0739cfa503fa802ee3e7735", + [ + null, + [ + [ + "/css/css-break/break-inside-avoid-min-block-size-1-ref.html", + "==" + ] + ], + {} + ] + ], + "break-inside-avoid-min-block-size-2.html": [ + "e7669d8ebe13ca5a7d161f9e27feb0dd26d6de09", + [ + null, + [ + [ + "/css/css-break/break-inside-avoid-min-block-size-2-ref.html", + "==" + ] + ], + {} + ] + ], "break-overflowed-block-dynamic-001.html": [ "9afdab1d8b4021261ad0ccf51f5d2d487afee830", [ @@ -128849,6 +129759,357 @@ {} ] ], + "out-of-flow-in-multicolumn-029.html": [ + "6de88c613e45f374a6eee1b764a9f5c73b93f301", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-030.html": [ + "7737e8ef672544eca58f4751908321ae8c401066", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-031.html": [ + "aaa581c30e4bb971bdf69cea7b3f522aca864d70", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-032.html": [ + "b68f951af7d149e49ca86b48a9529c1a982141f3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-033.html": [ + "e1ecebe91bc2139cbae6efcf6b830afdd4d4ef8a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-034.html": [ + "286f6f4340d7535e6e0a5d74f5c7b1749f8ad983", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-035.html": [ + "6a2d5276ca0499af0a27ddff373eb4eb0707bbbe", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-036.html": [ + "d64f8b5974fce9166ba5656abf253d31a9878847", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-037.html": [ + "215b44f602676b4071a252a48760aefb6b251646", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-038.html": [ + "189de988c7c9c9b1b817bb8d27c9841496308f89", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-039.html": [ + "9eaa9f7320f1fd6b3cfa22091b78827cee276ae3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-040.html": [ + "6b6a73a5d9f268e2496efa25554291b2bc59b2c4", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-041.html": [ + "6bf7ffb056aa0fe6176d0b4b5dca6bacbf3f25a2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-042.html": [ + "4539201e642457b6e9d859f8ecec142779ca17b1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-043.html": [ + "bdda35d0e36c5100761b49589cd83254fc3f8eeb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-044.html": [ + "4c2b9c9af74143a0a2eff4e68910c3e6e77ad855", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-045.html": [ + "c4cda499c1d3ffc40ef59e9e7db05373194028fa", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-046.html": [ + "16caaf849c615e4f8ca1546a10c2465accf1dcb9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "out-of-flow-in-multicolumn-047.html": [ + "496c3bdaefacf0bc2f0fd47f0421c972684478db", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-000.html": [ + "72b10f5cdd3092a042f1f90bff04e9428d61608e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-001.html": [ + "8d084087447809981f7360de9a0dd9003930f1bd", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-002.html": [ + "72f72f41cd4de59e4b0728c164a08fd97c465e7c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-003.html": [ + "0d4b2956f11fb39f3be1290dc89765f76ef01764", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-004.html": [ + "772c4009e1e87c575fa6b96dec22b31ff076c27c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-005.html": [ + "6eec83ad5f6ff92217851cb8efa48add0eba579c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-006.html": [ + "526577b7b98dfc6eece14055cbcf83e42652897e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "overflow-clip-008.html": [ + "931adc755883a0d1a2a72cc9631fe6e754e6bb1a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "overflowed-block-with-no-room-after-000.html": [ "084e16fb38de072fb83f92ba01302a2e404cdd97", [ @@ -129501,6 +130762,19 @@ {} ] ], + "all-prop-revert-visited.html": [ + "9df1277acab8e226c85b544597184cfe291e18ea", + [ + null, + [ + [ + "/css/css-cascade/all-prop-revert-visited-ref.html", + "==" + ] + ], + {} + ] + ], "all-prop-unset-color.html": [ "6bd59a6fc81c52061ed9106f29f25a2fbc48215f", [ @@ -129514,6 +130788,19 @@ {} ] ], + "all-prop-unset-visited.html": [ + "598d3f5edc1ea7d389a25e4765ab811ffe45cc7d", + [ + null, + [ + [ + "/css/css-cascade/all-prop-unset-visited-ref.html", + "==" + ] + ], + {} + ] + ], "import-conditional-001.html": [ "9bdbbcb5a32b638d2275cd86f0b9f2bbd026ebdc", [ @@ -129540,6 +130827,19 @@ {} ] ], + "initial-background-color.html": [ + "80897e0ef2b4260c873eccba0752f2e0a1968b5b", + [ + null, + [ + [ + "/css/css-cascade/reference/all-green.html", + "==" + ] + ], + {} + ] + ], "initial-color-background-001.html": [ "15a1cf5a4f803d7ec419fcc5910fb4183a6b0c05", [ @@ -130024,12 +131324,12 @@ ] ], "hsl-008.html": [ - "bcef8002ee381ce2bf236ab9d6beab8762de2bd4", + "1024a1f83c9696f16f002dabc54d45a413e9caea", [ null, [ [ - "/css/css-color/greentext-ref.html", + "/css/css-color/greensquare-ref.html", "==" ] ], @@ -130582,32 +131882,6 @@ {} ] ], - "predefined-014.html": [ - "76903b9aba915cbb0c58a563fa40530a7d00f7bf", - [ - null, - [ - [ - "/css/css-color/greensquare-090-ref.html", - "==" - ] - ], - {} - ] - ], - "predefined-015.html": [ - "50ca436115192a92e1f76d3383f06c1b66cd22ee", - [ - null, - [ - [ - "/css/css-color/greensquare-090-ref.html", - "==" - ] - ], - {} - ] - ], "predefined-016.html": [ "c8a666164a92a8e5d192da971bf65450fa86b0bc", [ @@ -133179,6 +134453,266 @@ {} ] ], + "contain-body-bg-001.html": [ + "b7890faebabd1fc104ec54c0a8576b243675daf6", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-bg-002.html": [ + "71237d977e117f057e9c906b3e7882e06a1ddfd3", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-bg-003.html": [ + "0aaf8b0da859ba89dda8977bf18663be012d1fb5", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-bg-004.html": [ + "af046a96c43565c5c28988473b0bd7402610f8cc", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-dir-001.html": [ + "c055778fe41a198cfea7036700ac31f9040fb2b8", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-dir-002.html": [ + "31e188f8d1529dcc5f39d16aa44a51f2c1c479aa", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-dir-003.html": [ + "cd01c6f253725c61b5433d6b31c9510fc53bfc6b", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-dir-004.html": [ + "8b39b4324b533023b6986e12201faf49f47d0191", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-overflow-001.html": [ + "7f368756ca730e86b64fe0bc93f95af2506b12c9", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-overflow-002.html": [ + "bc432e3e0e1ffcde0773ae2a2c7e8da3511ee985", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-overflow-003.html": [ + "d38cf53c2f47fd964b0cfc912eced2ce25e62c8e", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-overflow-004.html": [ + "5064d00c8b6a8b320182e10f649ce84ba8b4063e", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-t-o-001.html": [ + "36f70a1df4c87c7ea1556efb96800055238c86a3", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-t-o-002.html": [ + "47d3f480d1018f979dc4c238979e4181e668b00f", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-t-o-003.html": [ + "2323d07838f18bb260e4aff465f1c726f55e31ab", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-t-o-004.html": [ + "3eea6b8d322fbc7966ad3116b90f53ee9689120e", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-w-m-001.html": [ + "b37e96115c77dd5041980baa4880981b02ec2097", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-w-m-002.html": [ + "15040f0399362cc27b21625f77ab074d74331444", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-w-m-003.html": [ + "87b1d63466bebf09c5f0a86c4e9de3400921dd4d", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-body-w-m-004.html": [ + "736d4a58aae6bcd5eec17952dbca7d4690aaa428", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], "contain-content-001.html": [ "649bf54df5b6e005253e1a8d5d8b45521889e9f5", [ @@ -133244,6 +134778,266 @@ {} ] ], + "contain-html-bg-001.html": [ + "6d77ce081eb32c9d482083142cc3d15bf6ef7c72", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-bg-002.html": [ + "57324052b204e42b092808ebb59a8a914fc1c13d", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-bg-003.html": [ + "f1115ceb2f5c08d3b652ebe57a65c2a8eedc676f", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-bg-004.html": [ + "05fa3f820eb94c7e8c63fd8bf561c1d574bc7870", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-bg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-dir-001.html": [ + "c02c2e2765a2027093f0d6bfe92860222f520fbe", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-dir-002.html": [ + "7d23558538d9ecb034806865169469acb1b161a4", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-dir-003.html": [ + "125f4b70e3feef9e474049702982987cd484e61e", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-dir-004.html": [ + "af31f64082b20081100513582e51f09c0553806b", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-overflow-001.html": [ + "736ad1a54dde015f265ca2d80eb0222a04d6ffaf", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-overflow-002.html": [ + "2fd0b5e1a35ed5f14feaabb4b7d5944d4b78aa25", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-overflow-003.html": [ + "88ce0918916eab7c443cb0a09f085a3036f01db7", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-overflow-004.html": [ + "15339ed3dc004b47fd8c4b85ce9d6b6d84ffdbb2", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-overflow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-t-o-001.html": [ + "d74fa252660f0b870435b1b7769897121a6e5f76", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-t-o-002.html": [ + "9ee3837bd2ad715d2f16820881d89514c134d5dd", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-t-o-003.html": [ + "87e70d505a6fab6ad6d92863c05abec3ff078136", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-t-o-004.html": [ + "5f7ea2ef18733b807f1fb4ff30166bdbaa0e4189", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-t-o-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-w-m-001.html": [ + "e8c0a8222d0993a08cbf8c8be6bb150cbd86243b", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-w-m-002.html": [ + "f4001a75c02b0f5b07e574c6efb8fd2bbf48efd8", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-w-m-003.html": [ + "c56d42ed7a40bf993cb4a5309692641aeeced600", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], + "contain-html-w-m-004.html": [ + "09a32ba50578075f4d41c3007bf38c49a43b5a3f", + [ + null, + [ + [ + "/css/css-contain/reference/contain-body-w-m-001-ref.html", + "==" + ] + ], + {} + ] + ], "contain-layout-001.html": [ "85b959da2b9a151c13be3dc83485646341752915", [ @@ -136702,6 +138496,32 @@ ], {} ] + ], + "element-reassigned-to-skipped-slot.html": [ + "a47b46388dfe73cc01e0e8384c0ccc7d87c0390a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "element-reassigned-to-slot-in-skipped-subtree.html": [ + "103de97f7032194c28d52db195360b5ef32f6253", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] ] }, "counter-scoping-001.html": [ @@ -140423,6 +142243,19 @@ {} ] ], + "display-contents-slot-attach-whitespace.html": [ + "867f1f059247cc1ba0ce5ded559b5f42e0473cf1", + [ + null, + [ + [ + "/css/reference/pass_if_two_words.html", + "==" + ] + ], + {} + ] + ], "display-contents-state-change-001.html": [ "3923041e0deb677494dc3368cec8f97ab295fa67", [ @@ -143634,7 +145467,7 @@ ] ], "align-items-baseline-overflow-non-visible.html": [ - "3c91bc5553084018b2c16cbeb6721077c8db54e2", + "48c34b365ec80754ee4d39578b6a25acd7f9725d", [ null, [ @@ -144270,6 +146103,19 @@ {} ] ], + "dynamic-stretch-change.html": [ + "f2fdf1b24f4acd733b0623034494e46e61d16259", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "fieldset-as-item-overflow.html": [ "17bc82a0b51a7f76253e1ca9f75c9840abbd366f", [ @@ -144960,7 +146806,7 @@ ] ], "flex-basis-011.html": [ - "78bbd5d889829160a66d273b8abc88bee38b2714", + "9edb5dc975206d2103d9eebfbfd7f9de450f9192", [ null, [ @@ -144972,6 +146818,19 @@ {} ] ], + "flex-basis-012.html": [ + "b1adddeb23368e7e18553436e1254ad9d8e2f582", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "flex-basis-item-margins-001.html": [ "5f65b267bb5bf1b8de1a742aef0a8fc0865bd902", [ @@ -145297,6 +147156,19 @@ {} ] ], + "flex-fragmented-with-float-descendant-001.html": [ + "f4cb7a842435fa820cc7bfbd4708709d9b2578d9", + [ + null, + [ + [ + "/css/css-flexbox/flex-fragmented-with-float-descendant-001-ref.html", + "==" + ] + ], + {} + ] + ], "flex-grow-001.xht": [ "e73c33c034048e9cb523ea8671b63f35073a24da", [ @@ -150994,7 +152866,7 @@ ] ], "flexbox_justifycontent-left-002.html": [ - "210b5862ffc130b030cec2b1493b104faf3e14dc", + "e18c43a4acb733feda47cfd9eb767d0efc09eff5", [ null, [ @@ -151020,7 +152892,7 @@ ] ], "flexbox_justifycontent-right-002.html": [ - "136ffb2c4262d11991e1cd93e7923d2567865008", + "2aeffe3b410939038003348a8330b054a9a82ad5", [ null, [ @@ -152241,6 +154113,19 @@ {} ] ], + "image-within-indefinite-row-flexbox.tentative.html": [ + "cb70568b1c08fe79c37278e2f39dd51cb4f03396", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "inline-flex-min-content-height.html": [ "b84b9afc0b67b83d3d3e2abb73c9b7e22aeb3cbe", [ @@ -152437,6 +154322,19 @@ ] ], "order": { + "order-abs-children-painting-order.html": [ + "248f380e5aebb651069116cb32722389a511d962", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "order-with-column-reverse.html": [ "5083d6843649bbbb2bf9d417ae4022042c87e0aa", [ @@ -152516,6 +154414,19 @@ {} ] ], + "overflow-area-003.html": [ + "ff86dea30f10bf9e8411871b98a249500d74832b", + [ + null, + [ + [ + "/css/css-flexbox/reference/overflow-area-003-ref.html", + "==" + ] + ], + {} + ] + ], "overflow-auto-001.html": [ "08c1bdbafabad98e7d823c47246f455cc0861fef", [ @@ -152530,7 +154441,7 @@ ] ], "overflow-auto-005.html": [ - "98e55a90fa428891a3fb7a3460217818e68deda4", + "65b6d73e9a0fb3d939be2968b41749e551791f3f", [ null, [ @@ -152539,7 +154450,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 3 + ] + ] + ] + ] + } ] ], "overflow-auto-007.html": [ @@ -152737,6 +154664,32 @@ {} ] ], + "percentage-max-height-004.html": [ + "3d155e3579ed760a1a5cfaf81a967d045528798e", + [ + null, + [ + [ + "/css/css-flexbox/percentage-max-height-004-ref.html", + "==" + ] + ], + {} + ] + ], + "percentage-padding-002.html": [ + "9eaaff013ef26f557f5f883fea76b81b6031769f", + [ + null, + [ + [ + "/css/css-flexbox/percentage-padding-002-ref.html", + "==" + ] + ], + {} + ] + ], "percentage-size-subitems-001.html": [ "70f3953052a3a770c6cd15ee169607a00fc452b0", [ @@ -152945,6 +154898,19 @@ {} ] ], + "svg-no-natural-size-grandchild.html": [ + "6f99654014e68b989695ac7f9fee46e51b62eeaf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "svg-root-as-flex-item-001.html": [ "d42cf652dede8aa72af6c78aa12324ae824c1655", [ @@ -153010,6 +154976,19 @@ {} ] ], + "synthesize-vrl-baseline.html": [ + "1e753da0a2c1349d06608d5d84bfcb3e91083330", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "table-as-item-auto-min-width.html": [ "66a77327f0f25e07db87e342ebb590358d045f7a", [ @@ -153140,6 +155119,45 @@ {} ] ], + "table-as-item-min-content-height-1.tentative.html": [ + "f60561b453881cb7e4e0b17155800ef4c8b1ce16", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-as-item-min-content-height-2.tentative.html": [ + "cac19f95003fb24088cbde2cb470cabaaa310587", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-as-item-min-height-1.html": [ + "9b0b9d25088317d346cc4fa4ec9d137503e0d04c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "table-as-item-narrow-content-2.html": [ "96af10770f2de07a9adae7603eaa0cd0ebad0121", [ @@ -153219,7 +155237,33 @@ ] ], "table-as-item-stretch-cross-size-3.html": [ - "04e168e52ebdfe1631edb786bc6134a2d8a2e0e0", + "bba29bdd29b7a7be22d1b9ff3454cbac6d6aa10d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-as-item-stretch-cross-size-4.html": [ + "0e70b4687ce95c13f1ecc6bc058ae9295481a422", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-as-item-stretch-cross-size-5.html": [ + "f5b898ac12a61893616adbbfce9010559a19b551", [ null, [ @@ -153351,7 +155395,7 @@ ] ], "fontface-override-descriptors.html": [ - "40de722981221ff08a4c8f381de8a69e75598979", + "34506b154793caac0ca3091fa6c1a250f99e7b3c", [ null, [ @@ -153362,6 +155406,19 @@ ], {} ] + ], + "fontface-size-adjust-descriptor.html": [ + "40e7a7f70aa847f0d517d1b28b657249e02a42ae", + [ + null, + [ + [ + "/css/css-font-loading/fontface-size-adjust-descriptor-ref.html", + "==" + ] + ], + {} + ] ] }, "css-fonts": { @@ -153379,7 +155436,7 @@ ] ], "ascent-descent-override.html": [ - "baa047036151b7d9ac61d69c894d68ea44643c3e", + "a2e02cc73de315f728ac2d7369a5173a588692ae", [ null, [ @@ -153888,6 +155945,32 @@ {} ] ], + "font-size-adjust-zero-1.html": [ + "ea1e57453b6e3ce9993215041dfb257c1a28a51a", + [ + null, + [ + [ + "/css/css-fonts/font-size-zero-2-ref.html", + "==" + ] + ], + {} + ] + ], + "font-size-adjust-zero-2.html": [ + "0fadcd458db59b2191593cfde3c0645cbe3a7c64", + [ + null, + [ + [ + "/css/css-fonts/font-size-zero-2-ref.html", + "==" + ] + ], + {} + ] + ], "font-size-monospace-adjust.html": [ "f1a0b7294d350225d00cfc76c6d3081e8aa7220f", [ @@ -153901,6 +155984,45 @@ {} ] ], + "font-size-zero-1-ref.html": [ + "f3bdd53d71c75326e688e7ff3c72c9a3418e5248", + [ + null, + [ + [ + "/css/css-fonts/font-size-zero-1-notref.html", + "!=" + ] + ], + {} + ] + ], + "font-size-zero-1.html": [ + "9b7b3e6d754318b69f3baeb2164680661cc0566f", + [ + null, + [ + [ + "/css/css-fonts/font-size-zero-1-ref.html", + "==" + ] + ], + {} + ] + ], + "font-size-zero-2.html": [ + "5b5aaa594c3909c4e998f5c47d721e78edefcf27", + [ + null, + [ + [ + "/css/css-fonts/font-size-zero-2-ref.html", + "==" + ] + ], + {} + ] + ], "font-stretch-01.html": [ "11f3b40504d99a47b1595fc87ec0300defd13277", [ @@ -155098,7 +157220,7 @@ ] ], "line-gap-override.html": [ - "d622fb48ac392beb9a0d733e911e822d82aa6f1f", + "487fb2ea59d91cc57715a44e33198fc6223c1d68", [ null, [ @@ -155300,6 +157422,58 @@ {} ] ], + "size-adjust-01.html": [ + "024a22097e182d6ffdbfd16dd9832e2fe35bb0b9", + [ + null, + [ + [ + "/css/css-fonts/size-adjust-01-ref.html", + "==" + ] + ], + {} + ] + ], + "size-adjust-02.html": [ + "3255b5ccaf010251668ee05467dbb3f5bbb041f8", + [ + null, + [ + [ + "/css/css-fonts/size-adjust-02-ref.html", + "==" + ] + ], + {} + ] + ], + "size-adjust-text-decoration.tentative.html": [ + "f1183dcf209051e6e657869b1b3911315baf647d", + [ + null, + [ + [ + "/css/css-fonts/size-adjust-text-decoration-tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "size-adjust.tentative.html": [ + "9b29610c058502a02b589bca0b9f8ef39cf5823f", + [ + null, + [ + [ + "/css/css-fonts/size-adjust-tentative-ref.html", + "==" + ] + ], + {} + ] + ], "standard-font-family-10.html": [ "5dde6348d3985307999572b342433cfc8f800d9c", [ @@ -155678,6 +157852,19 @@ {} ] ], + "variable-opsz-size-adjust.html": [ + "b673f3cb7bf4e72fa8aa6ff38b2f18fbd0705717", + [ + null, + [ + [ + "/css/css-fonts/variations/variable-opsz-size-adjust-ref.html", + "==" + ] + ], + {} + ] + ], "variable-opsz.html": [ "d274a478280018de975a74e2781d2ac96d1e97f5", [ @@ -155748,7 +157935,7 @@ ] ], "descendant-static-position-004.html": [ - "5496ce9986e1752916bd30d7195697628b50e8a8", + "5f87dccd80e6f38bf2bcab536c18b3fb8daa37cf", [ null, [ @@ -155761,7 +157948,7 @@ ] ], "grid-abspos-staticpos-align-self-001.html": [ - "a3ee9b46a1d997a4b450c9b6e820f26a29c9c095", + "8fd4eca36ce161c6a29d9c5683708aa2d2c64ac6", [ null, [ @@ -155774,7 +157961,7 @@ ] ], "grid-abspos-staticpos-align-self-002.html": [ - "61f84a6d73a1095d70e78981744b13280c22a6ab", + "a78dfc42450befba82455910c75e67cd55f2e2be", [ null, [ @@ -155787,7 +157974,7 @@ ] ], "grid-abspos-staticpos-align-self-img-001.html": [ - "f7037210c245aa502af98184fbb729b05ddd61e2", + "cb5906603b35912cf2e649b1fa0a049d801ec236", [ null, [ @@ -155800,7 +157987,7 @@ ] ], "grid-abspos-staticpos-align-self-img-002.html": [ - "61cce178468b69f5a18624b622834253b848ce71", + "f3cc794a66e74a2ee9cf170da9965bdff242cbfe", [ null, [ @@ -155812,8 +157999,60 @@ {} ] ], + "grid-abspos-staticpos-align-self-img-last-baseline-001.html": [ + "35fb55cfe93cd3bf2311ea1ab9178b3bb38bb619", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-img-last-baseline-002.html": [ + "028781586cfe003691a29ca01527e3e2da9fba7b", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-last-baseline-001.html": [ + "da6ce34a89dee179e53306b4526024b419106339", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-last-baseline-002.html": [ + "54fb9ae77b594986c5de41ed670d1c53fd48bcde", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], "grid-abspos-staticpos-align-self-rtl-001.html": [ - "1b64da39c3161c09e14f2d31fe87ec48239b5628", + "31def24fe8ccee24f6bb669bc82184970062000a", [ null, [ @@ -155826,7 +158065,7 @@ ] ], "grid-abspos-staticpos-align-self-rtl-002.html": [ - "931f7ec09ae4f78cbf5b834d3d1feacb01e1c49b", + "21936e964da68377b1f61d1be4312e1b3a0d4788", [ null, [ @@ -155839,7 +158078,7 @@ ] ], "grid-abspos-staticpos-align-self-rtl-003.html": [ - "b37639c99cd1da8b457ccf56600700d41994c2c8", + "e53bd1933859dbdf861eed7721f134251ca294ae", [ null, [ @@ -155852,7 +158091,7 @@ ] ], "grid-abspos-staticpos-align-self-rtl-004.html": [ - "bb4335f08e7926ef5ce5446294fdff04cdbdcab6", + "12805427e803bc743f5c123a380ed623785eb9a2", [ null, [ @@ -155864,6 +158103,58 @@ {} ] ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-001.html": [ + "8804a39a5675bd6a1d1dfac429727e69bccb97f6", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-002.html": [ + "e63bfa2813bce8f81e11404ff427255e9bf10fc7", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-003.html": [ + "7f07b13524b22fcd79a3ab97cbd62820bcbb7792", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-004.html": [ + "b40e60488fefcb2aa91175be1ff85aaaf9ed03bf", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], "grid-abspos-staticpos-align-self-safe-001.html": [ "58ccaaf01df32c286f2c7d20890e77182a354eff", [ @@ -155878,7 +158169,7 @@ ] ], "grid-abspos-staticpos-align-self-vertWM-001.html": [ - "ffac903f1e8da514d170fe100f5c40cf5625c103", + "2feeb2c3a130ede88bb0c42bf8e70fc9b0223b75", [ null, [ @@ -155891,7 +158182,7 @@ ] ], "grid-abspos-staticpos-align-self-vertWM-002.html": [ - "c636a4b8b740d609d5512bbe2077b394cd9d527b", + "659f6b727e72edc9077e7353c3e0443840479145", [ null, [ @@ -155904,7 +158195,7 @@ ] ], "grid-abspos-staticpos-align-self-vertWM-003.html": [ - "d719b0e3b71f5e475c7f5ca68dd2fb4b7e9deec0", + "61bdc0496e00e9b7fb977637c23c2071eb4b727c", [ null, [ @@ -155917,7 +158208,7 @@ ] ], "grid-abspos-staticpos-align-self-vertWM-004.html": [ - "2eba85740fa88e206b3651dcc6d3bf5afdf10c9f", + "84e9265aadd4e7a8621527e1f8a78c223a7e5ad8", [ null, [ @@ -155929,8 +158220,60 @@ {} ] ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html": [ + "be1bc8cce958ecd1be8a9fa0d3bdacd65d4b0193", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html": [ + "26e1b8dadf1c3ec8d42b7a71fd523b0ec86aa740", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html": [ + "7023e2ef4ff935ca1573dc43a5530f7c727d7455", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html": [ + "e39e6b391a06590068d6f175c027826eef1182fe", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], "grid-abspos-staticpos-justify-self-001.html": [ - "cd934bd0fbe32552609302124a3dba45437c0ce9", + "3f9a59f6b9e33f1d42eff2306fccee1b3a453555", [ null, [ @@ -155943,7 +158286,7 @@ ] ], "grid-abspos-staticpos-justify-self-002.html": [ - "1d72ae8e397c9a66d95754c0464ccf02f65e6c0e", + "d0b607565e5e152469da3a07818e55f081833556", [ null, [ @@ -155956,7 +158299,7 @@ ] ], "grid-abspos-staticpos-justify-self-img-001.html": [ - "a860ae6b9ea15bace723eef779ff5c4bc51344c6", + "d402fd889a8830eaab027d16274cd32f03e9de6a", [ null, [ @@ -155969,7 +158312,7 @@ ] ], "grid-abspos-staticpos-justify-self-img-002.html": [ - "648342168ca55696d6c8e8328cc9781a192747ac", + "be0ea3564dda416d76fd8b38506de4b7968f884b", [ null, [ @@ -155981,8 +158324,60 @@ {} ] ], + "grid-abspos-staticpos-justify-self-img-last-baseline-001.html": [ + "76e8a62c2608bbf2f1ad2e68bde3d39981d14158", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-img-last-baseline-002.html": [ + "7f7c898deee13f0c175893802f522bfbfa15f38d", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-last-baseline-001.html": [ + "2328268a63cdf87b8f4d37b722682e61ea810e88", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-last-baseline-002.html": [ + "4ae8b5de8754db370ec60a9ef343e2ed79c11926", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], "grid-abspos-staticpos-justify-self-rtl-001.html": [ - "f8f35869ffd760a9beb40d8a62802382db14b214", + "3080c49453a075944b433f0264c774f4b697f518", [ null, [ @@ -155995,7 +158390,7 @@ ] ], "grid-abspos-staticpos-justify-self-rtl-002.html": [ - "528f294783a1916b378ca722113f9fa638cb6950", + "4c3a4a849e2e451d4638bdad682464f7e1b07cbb", [ null, [ @@ -156008,7 +158403,7 @@ ] ], "grid-abspos-staticpos-justify-self-rtl-003.html": [ - "8343b14191f4261ba4250dc6c5639b0be1e5b50b", + "f27bb62c04b28f5cdf6ff1c5410f8667838365d9", [ null, [ @@ -156021,7 +158416,7 @@ ] ], "grid-abspos-staticpos-justify-self-rtl-004.html": [ - "c098cc0ba137c2282f0c02e2bedaf42236365fa6", + "a8647bbe8719f9df737bd47bfdf3c975a52eabcd", [ null, [ @@ -156033,8 +158428,60 @@ {} ] ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html": [ + "1f2be10532ec1439f703d70dc0ce10d41ce71086", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html": [ + "519c96f27b82bf4a6116520e391d5f603fcf0442", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html": [ + "90af5052cceaff188fc6ddde5695bf317d575da5", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html": [ + "66df456e7b047410f3077fd56c2e97c31a303402", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], "grid-abspos-staticpos-justify-self-vertWM-001.html": [ - "3d91ad9c470aa7bfbdb4e463072af60f48850921", + "ef5af105f62a453927e6981a1e956fccf908abf8", [ null, [ @@ -156047,7 +158494,7 @@ ] ], "grid-abspos-staticpos-justify-self-vertWM-002.html": [ - "b983a75d0bed3fc4fb2305aa4b09b73f3daffb6f", + "bed8a0a75cef63d2e8bffec9ddf418954d7059dd", [ null, [ @@ -156060,7 +158507,7 @@ ] ], "grid-abspos-staticpos-justify-self-vertWM-003.html": [ - "d938a1241cb07cbc36d08c841f1695f8ef625bbf", + "2626c49d229bc51cb632f28612952562d2819269", [ null, [ @@ -156073,7 +158520,7 @@ ] ], "grid-abspos-staticpos-justify-self-vertWM-004.html": [ - "a4cbea83cd2161130fc26cd4a373e21041dba5b4", + "4574da3a82de395fcc3bbc4c9fcb33a14afd10cf", [ null, [ @@ -156085,6 +158532,58 @@ {} ] ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html": [ + "f7ada7a8e5ee841d4fa8921428d87f38cfadec9f", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html": [ + "aa1303d35316fd8c91c0c0922a87e89d1ebaeb8d", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html": [ + "4ab166e688a87b9a51da2e2d294d9940bcc02fc0", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html": [ + "26e7e66b0a018fe75bfa24838662993fbb583adb", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], "grid-item-absolute-positioning-dynamic-001.html": [ "bcd5dbaab5db71463fa2ec511fcb4d21e7942b90", [ @@ -156163,6 +158662,19 @@ {} ] ], + "grid-positioned-item-dynamic-change-004.html": [ + "87dd67989064c6b869c492d6acee89e4e7690cb8", + [ + null, + [ + [ + "/css/css-grid/abspos/grid-positioned-item-dynamic-change-004-ref.html", + "==" + ] + ], + {} + ] + ], "grid-positioned-items-background-001.html": [ "f5e49fbffe574e9e16cfd12dedb643b02c5f28dd", [ @@ -156644,6 +159156,32 @@ {} ] ], + "positioned-grid-items-020.html": [ + "baddf0bed62feb28921a56bf8565a071921801fd", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-021.html": [ + "1e3d89de6ca16d21bb9f1437f6f49b5ae25e7d68", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "positioned-grid-items-negative-indices-001.html": [ "f723b2486c14bf993bfaf8bf4639f79fbac18e97", [ @@ -156751,7 +159289,7 @@ ] ], "grid-baseline-align-cycles-001.html": [ - "cc6b3b50f984a97838f05e340c51f33f335e0f97", + "c00a9ab56e4ca91077524770d5029369a6e987b6", [ null, [ @@ -157699,6 +160237,32 @@ {} ] ], + "grid-item-auto-margins-001.html": [ + "be5eb6efbeed1b46b5c988fe3e98b4c8d083966b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-auto-margins-002.html": [ + "037794e6cc4fdf618fb9762889ed69a7bb3bece7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "grid-item-content-baseline-001.html": [ "aa33f3c15b24e945449dd0aeea9d5cfa3e34a9f8", [ @@ -158731,6 +161295,32 @@ {} ] ], + "dynamic-grid-with-auto-fill.html": [ + "2691674165dc72c58edfd653ae11d5b51e586525", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "dynamic-grid-within-flexbox.html": [ + "2b8824f9940b755364aa7ab124ceea52229f5b93", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "grid-child-percent-basis-resize-1.html": [ "7fb5d8e117d9f0b7e23bf3921843e8ea29ef4522", [ @@ -158966,6 +161556,19 @@ {} ] ], + "grid-repeat-max-width-001.html": [ + "8e693437a21ee203b22988c890a9b576369fc629", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "grid-support-named-grid-lines-002.html": [ "6b3b19ef97f413dea4ed68fbb26edcb7a0ed1f55", [ @@ -159579,6 +162182,45 @@ {} ] ], + "grid-item-inline-contribution-001.html": [ + "ebed26b3326e94bc1384e330a8e1bb3ed93f6ec7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-inline-contribution-002.tentative.html": [ + "abf175d81431f9f6d5d362bc597968fd4b5ed4de", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-inline-contribution-003.tentative.html": [ + "0488165abe103cb7822b61a0989c9db8266edc15", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "grid-item-margins-and-writing-modes-001.html": [ "5209940a9699d6a108f815f81eb4d3b4527dcf79", [ @@ -160972,6 +163614,19 @@ {} ] ], + "grid-areas-overflowing-grid-container-009.html": [ + "d1ab96e4c770c630ee8edc8497338219d507a033", + [ + null, + [ + [ + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "==" + ] + ], + {} + ] + ], "grid-container-ignores-first-letter-002.html": [ "42014addf0337221a55c01fbc009347480cca924", [ @@ -161441,6 +164096,19 @@ ] ] }, + "grid-within-flexbox-definite-change.html": [ + "03b3e67b24ab329ebf75a2c74b1b7cf46b3a2d0d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "implicit-grids": { "grid-support-grid-auto-columns-rows-001.html": [ "e61ced340c610401448bdc0c636a835708fa80b9", @@ -161509,6 +164177,19 @@ {} ] ], + "flex-sizing-rows-indefinite-height.html": [ + "8fd1c49b7df3ba0fe3e973e48d0eb21dbd75e49f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "grid-as-flex-item-should-not-shrink-to-fit-001.html": [ "e0665d56a1a55ecd41a9ae384e822c8662740d39", [ @@ -163089,6 +165770,19 @@ ], {} ] + ], + "subgrid-mbp-overflow-004.html": [ + "e9a446bc5bfef4e4b6d3cf837e0758788378cbac", + [ + null, + [ + [ + "/css/css-grid/subgrid/subgrid-mbp-overflow-004-ref.html", + "==" + ] + ], + {} + ] ] }, "table-grid-item-dynamic-001.html": [ @@ -164279,7 +166973,7 @@ ] ], "image-set-rendering.html": [ - "f33f34c15c39a5053c1863c633c776f43a24dccb", + "eb3ece9654eb05e91e349b8ffa6f83af3c1af42a", [ null, [ @@ -164290,6 +166984,45 @@ ], {} ] + ], + "image-set-resolution-001.html": [ + "aaa750217d7079f286f01198be0b0f6dfe90ac20", + [ + null, + [ + [ + "/css/css-images/image-set/image-set-resolution-001-ref.html", + "==" + ] + ], + {} + ] + ], + "image-set-resolution-002.html": [ + "e5795e172f312a7f88d94ba85467b1f8bc7e88bb", + [ + null, + [ + [ + "/css/css-images/image-set/image-set-resolution-001-ref.html", + "==" + ] + ], + {} + ] + ], + "image-set-resolution-003.html": [ + "734ee05ecd184a532d531e92715a99e8305533c6", + [ + null, + [ + [ + "/css/css-images/image-set/image-set-resolution-001-ref.html", + "==" + ] + ], + {} + ] ] }, "infinite-radial-gradient-refcrash.html": [ @@ -169728,6 +172461,58 @@ {} ] ], + "logical-values-float-clear-1.html": [ + "d7f37fffddc918c89cdf3f1f87fd0c1305cf0533", + [ + null, + [ + [ + "/css/css-logical/reference/logical-values-float-clear-1-ref.html", + "==" + ] + ], + {} + ] + ], + "logical-values-float-clear-2.html": [ + "f5af837595311efc9c5843f1021d1aa5ec049f20", + [ + null, + [ + [ + "/css/css-logical/reference/logical-values-float-clear-2-ref.html", + "==" + ] + ], + {} + ] + ], + "logical-values-float-clear-3.html": [ + "b49711b7b2b83f7bb518358b97432b3015e495cf", + [ + null, + [ + [ + "/css/css-logical/reference/logical-values-float-clear-3-ref.html", + "==" + ] + ], + {} + ] + ], + "logical-values-float-clear-4.html": [ + "d585d38bf3af71a78313f01ccaa8a87dce8bb9d0", + [ + null, + [ + [ + "/css/css-logical/reference/logical-values-float-clear-4-ref.html", + "==" + ] + ], + {} + ] + ], "logical-values-float-clear-reftest.html": [ "c0fe9a52bc4acc02f7a1df96d2af9c526d3e4430", [ @@ -170526,6 +173311,19 @@ {} ] ], + "clip-path-inset-round-percent.html": [ + "cb0e5ec73575c83954253bdcf394290b4f4d200e", + [ + null, + [ + [ + "/css/css-masking/clip-path/clip-path-inset-round-percent-ref.html", + "==" + ] + ], + {} + ] + ], "clip-path-path-001.html": [ "ebdfc2297bbcc8225f92ba9dfa2ed33819f2f9a9", [ @@ -172487,6 +175285,32 @@ {} ] ], + "abspos-autopos-contained-by-viewport-000.html": [ + "8dbf5215b0176c9079511ef6c6e461245c28aa85", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-autopos-contained-by-viewport-001.html": [ + "05af3e91a0b72423475526ebe0d4010f01d87c0a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "abspos-containing-block-outside-spanner.html": [ "ed832d39f621322064c3b6c3da390809d9cab7d5", [ @@ -172786,6 +175610,58 @@ {} ] ], + "fixed-in-multicol-with-transform-container.html": [ + "ee384c378e537e413981ebfff94fbe3aecc69c6b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol-with-transform-container.html": [ + "df836c18ea76c2fd65bf4ee84872a5e1e6ac7096", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol-with-viewport-container.html": [ + "f3681f09176563197ebb6b40f8db247be7c8293d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol.html": [ + "0745b8394ad9efabab39ad138624d1e2389420db", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "fixed-size-child-with-overflow.html": [ "60300c3cd65ba455eb6ef7ab29bf5bc2ec6e4166", [ @@ -172826,7 +175702,7 @@ ] ], "increase-prev-sibling-height.html": [ - "109fe89952e923222071fea33ed9f92b69cf323f", + "416f811f28c319f5e39064d424c68c0d743f98bf", [ null, [ @@ -172864,6 +175740,58 @@ {} ] ], + "intrinsic-size-002.html": [ + "a85f14e9146a94f20f99f22d345be2b3a2ec973e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-003.html": [ + "86f67341d7dd7aec3c4fa4558756b87b9287e961", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-004.html": [ + "d603ae02e6f15c06a3337cc560dce37c1abbda09", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-005.html": [ + "5f128365134c3669764f42dcff917f5ef121cc9b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "intrinsic-width-change-column-count.html": [ "30e7671e41c3879ceef30627b3d5b65dc8c0ff86", [ @@ -174008,6 +176936,84 @@ {} ] ], + "multicol-list-item-003.html": [ + "1ae7c912372203a1cb12d9096a863fdddc24237f", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-003-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-004.html": [ + "e235aa26b05498b1050582133593a596c60c559a", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-004-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-005.html": [ + "4f158dfde49aed02aa1a39a9860a71f878da00e5", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-005-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-006.html": [ + "1cf609adf02a2f0c3fc8c12286ade9917fdc708f", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-006-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-007.html": [ + "acb21d1cc45f7bc02a4d3399135a1bd7f1139791", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-007-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-008.html": [ + "c77c2c2497b7d92cb81700499ce86ba6f3fba734", + [ + null, + [ + [ + "/css/css-multicol/multicol-list-item-008-ref.html", + "==" + ] + ], + {} + ] + ], "multicol-margin-001.xht": [ "dccf78f43d27c484f452edf154c86c016cbd59f3", [ @@ -174879,6 +177885,19 @@ {} ] ], + "multicol-span-all-017.html": [ + "e9100ffce9563d8cd497116d83a71f6310c59f34", + [ + null, + [ + [ + "/css/css-multicol/multicol-span-all-017-ref.html", + "==" + ] + ], + {} + ] + ], "multicol-span-all-block-sibling-003.xht": [ "abaa45f0a85023f3f07a9db483629b74d2b09d71", [ @@ -176742,6 +179761,19 @@ {} ] ], + "overflow-body-propagation-011.html": [ + "c8672c2af2e44ef3df5f6ede1f8e582e67a767ab", + [ + null, + [ + [ + "/css/css-overflow/overflow-body-propagation-011-ref.html", + "==" + ] + ], + {} + ] + ], "overflow-clip-cant-scroll.html": [ "529ef1fad94432769428aad25ebcb27e28124d85", [ @@ -176924,6 +179956,19 @@ {} ] ], + "overflow-no-frameset-propagation.html": [ + "687adbe0bced28f73aedde61233159695e23c6cc", + [ + null, + [ + [ + "/common/blank.html", + "==" + ] + ], + {} + ] + ], "overflow-recalc-001.html": [ "9c5919a5044bdbac0e782fbb662f1ff3b81857fc", [ @@ -177929,6 +180974,19 @@ {} ] ], + "no-op-animation.https.html": [ + "b1440ba3c1f738aca9fb9782a79151f30589180f", + [ + null, + [ + [ + "/css/css-paint-api/no-op-animation-ref.html", + "==" + ] + ], + {} + ] + ], "non-registered-property-value.https.html": [ "774cb4eb2de487e3254dc4fa7b39bd3e3d19f136", [ @@ -179364,6 +182422,32 @@ {} ] ], + "position-absolute-replaced-intrinsic-size.tentative.html": [ + "4e2ecb63abbb990ec565012c87160de046bbe7bf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "position-absolute-replaced-no-intrinsic-size.tentative.html": [ + "5dfa0c75d639e3a0951b58a99756256167c2c999", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "position-absolute-replaced-with-display-table.html": [ "9a966b931524a806bc08767905ea43be00f30094", [ @@ -180476,7 +183560,7 @@ }, "css-pseudo": { "active-selection-011.html": [ - "57335dc52d9ce2460e3d6db867bd41fea778e1dd", + "7b51c97dc0f56c471dc1168a4f97ab0fe398fea2", [ null, [ @@ -180489,7 +183573,7 @@ ] ], "active-selection-012.html": [ - "e40b0d2a0d2a94e64e8d79be33f3c51b89182aed", + "e4e291f92a225c623b43748dda6a20f54c5e8fe6", [ null, [ @@ -180502,7 +183586,7 @@ ] ], "active-selection-014.html": [ - "1bc244c800a82050d20acf28aa978dd478fb7fa4", + "89f28a4ffbbefd699b567ce7dcb97a29a9b7b0e2", [ null, [ @@ -180515,7 +183599,7 @@ ] ], "active-selection-016.html": [ - "e5a56afe02280bc5eae0821ee8135aeab6e0401e", + "51ee402427fd90dbe186dc69f58d08bc085add66", [ null, [ @@ -180528,7 +183612,7 @@ ] ], "active-selection-018.html": [ - "0c515bedf4d17fdc226bcaebf8f4e8f7bb10bd49", + "bf76e351d2b8eb8f461298978de19ff73b652702", [ null, [ @@ -180541,7 +183625,7 @@ ] ], "active-selection-021.html": [ - "bfa7eee77706c3a64e5c3247c9aee1c46a457a7b", + "a03078cbfb7ee6f5fa22cd54956529cf1e2fcdca", [ null, [ @@ -180554,7 +183638,7 @@ ] ], "active-selection-025.html": [ - "f5f71803c4e389d0befbc2087af2b28bcdc31726", + "c0a197ff59b49645db30956f566c67b3942cfce5", [ null, [ @@ -180567,7 +183651,7 @@ ] ], "active-selection-027.html": [ - "88b26e9f43447d4549c85858b2fea25a61320e7f", + "f28323149d28969159ea842d77c9acbcc7cc92a2", [ null, [ @@ -180580,7 +183664,7 @@ ] ], "active-selection-031.html": [ - "e5c68814526d85bf1b3d68a2d57cab2562720b53", + "bd6fe621ec58c6de5d2234883bcc348a1d54339e", [ null, [ @@ -180749,7 +183833,7 @@ ] ], "cascade-highlight-001.html": [ - "b7d294c6b9762a09f32baae84d4d1665178b667a", + "6f38624fdaeebc40f96d4e3ffc4661f33831f404", [ null, [ @@ -180762,7 +183846,7 @@ ] ], "cascade-highlight-002.html": [ - "cf13f1c533c36e71ef68077746030fb9c611a1dd", + "98846fd694eeef0261802c8525bad556ed51c4a5", [ null, [ @@ -180775,7 +183859,7 @@ ] ], "cascade-highlight-004.html": [ - "d1b614fe949530f58a4786871027822f416abd5e", + "772d33486c67f773ee8465ea9ce5a10c3bc75171", [ null, [ @@ -180865,6 +183949,19 @@ {} ] ], + "first-letter-005.html": [ + "60e36eab8f9b065067c4a26d7d134511ed00a3ae", + [ + null, + [ + [ + "/css/css-pseudo/first-letter-005-ref.html", + "==" + ] + ], + {} + ] + ], "first-letter-and-sibling-display-change.html": [ "29bdc5bbbe8ed4c1f4082dabbd7116325ed6e933", [ @@ -181125,6 +184222,32 @@ {} ] ], + "first-letter-with-quote.html": [ + "9a8e0426bd8d52fcc91ab5472f052812daa92abb", + [ + null, + [ + [ + "/css/css-pseudo/first-letter-with-quote-ref.html", + "==" + ] + ], + {} + ] + ], + "first-letter-with-span.html": [ + "cbb258837a1e7ca9fc095be5d118bab52770076b", + [ + null, + [ + [ + "/css/css-pseudo/first-letter-with-span-ref.html", + "==" + ] + ], + {} + ] + ], "first-line-and-marker.html": [ "f0a994438f1f848837b6a7814ceb621aae886fde", [ @@ -181216,6 +184339,19 @@ {} ] ], + "first-line-replaced-001.html": [ + "453c55e4a76fedbafcc470d5def5b98c4be16ec1", + [ + null, + [ + [ + "/css/css-pseudo/first-line-replaced-001-ref.html", + "==" + ] + ], + {} + ] + ], "first-line-with-before-after.html": [ "f91a22a4a7d65366dbd7dda3934c82c9b5776977", [ @@ -181334,7 +184470,7 @@ ] ], "highlight-painting-001.html": [ - "2994527d8d821653b4e106408a0984b7c5031790", + "9650943a0ddcf46b1752c27caff2d9352d4e435a", [ null, [ @@ -181347,7 +184483,7 @@ ] ], "highlight-painting-002.html": [ - "213e943c000444be934191d7d63b9a356ecf2521", + "6e535fd732ae22bd2fd64f1e3f89ce28dc5b8723", [ null, [ @@ -181360,7 +184496,7 @@ ] ], "highlight-painting-003.html": [ - "2ac688925439e376cf012e3b50c2d0b38982dce9", + "5e51966ea9801808658c7a20a5018cca27508ab0", [ null, [ @@ -181372,6 +184508,19 @@ {} ] ], + "highlight-painting-005.html": [ + "458676c3e8ee8364f9b16b774fb8f21ebbfbcd5e", + [ + null, + [ + [ + "/css/css-pseudo/highlight-painting-005-ref.html", + "==" + ] + ], + {} + ] + ], "highlight-z-index-001.html": [ "f81d25ceb9d2e4199ad80f827bd27b34013701fc", [ @@ -182243,7 +185392,7 @@ ] ], "selection-intercharacter-011.html": [ - "a8f02b10e0fc59264e79e0e94264451eb75366eb", + "3b73bd854afd425c4e2178e48304f7d82d5de738", [ null, [ @@ -182256,7 +185405,7 @@ ] ], "selection-intercharacter-012.html": [ - "8dc665b77c9529f18d65b06042f7ec14d3e57084", + "090697054a8e351c9e9822ee62f27384b9957958", [ null, [ @@ -182269,7 +185418,7 @@ ] ], "selection-overlay-and-grammar-001.html": [ - "cd2bb274f564171f7afa21b4a0a7e8d67ce4bd37", + "0ccc1763e3473d95003574365e3129d0927797cd", [ null, [ @@ -182282,7 +185431,7 @@ ] ], "selection-overlay-and-spelling-001.html": [ - "48d96e8828d9525ea1388f3aeb17827b1f0cc80e", + "b4c6f1866008752b61eb466e0782cbb7d7a316a1", [ null, [ @@ -182920,6 +186069,19 @@ {} ] ], + "ruby-intrinsic-isize-003.html": [ + "c67033f69a2a58783542fe99fd3ec39ee92d850f", + [ + null, + [ + [ + "/css/css-ruby/ruby-intrinsic-isize-003-ref.html", + "==" + ] + ], + {} + ] + ], "ruby-justification-001.html": [ "edef72874b6b564e0618eb9e795f863ee4cbf20b", [ @@ -184191,6 +187353,32 @@ } }, "css-scrollbars": { + "scrollbar-width-paint-001.html": [ + "5318a24fb159b7693370c70770d53669f078f47a", + [ + null, + [ + [ + "/css/css-scrollbars/scrollbar-width-paint-001-ref.html", + "==" + ] + ], + {} + ] + ], + "scrollbar-width-paint-002.html": [ + "4a18977a7e4efbf08cc82772cb248c5c57960583", + [ + null, + [ + [ + "/css/css-scrollbars/scrollbar-width-paint-002-ref.html", + "==" + ] + ], + {} + ] + ], "scrollbars-chrome-bug-001.html": [ "643781bac8079267c21c4c51920c56ab5f6a315a", [ @@ -187305,6 +190493,58 @@ {} ] ], + "abspos-017.html": [ + "a5bd964c9775322271024ec20173d99abb2d02d1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-018.html": [ + "6b5b57e421eaa5623a59fb63f48eea0d30f1f644", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-019.html": [ + "06fb8aab7b67946b7069437be29868c56f936196", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-020.html": [ + "7d65cb55e19138db25aa1aa191cc9b2a0f1c5dc5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "auto-margins-001.html": [ "9e89ab6ca7f5220ea030aa537bcb3b64f156043d", [ @@ -187708,6 +190948,58 @@ {} ] ], + "block-aspect-ratio-032.html": [ + "cb8dfdf052da694cda7ef8897892a18b1be0e3a7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "block-aspect-ratio-033.html": [ + "ed9714b04475e69ac8cef0c7b04ef2348ffa4fcf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "block-aspect-ratio-034.html": [ + "9b2f7fe44688cb61a82c87161c1098e579b8f533", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "block-aspect-ratio-035.html": [ + "eaa23a24fed3b34bd945cfd0c67da1bdea795f57", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "block-aspect-ratio-with-margin-collapsing-001.html": [ "78a0418fe285da58030cdd863460add0533e6af5", [ @@ -187748,7 +191040,7 @@ ] ], "flex-aspect-ratio-002.html": [ - "d7714f07e774baadc5231b43c5cf71d08dcea487", + "68cb9cf5693984a4f9d1888705ca5181093fa687", [ null, [ @@ -187774,7 +191066,7 @@ ] ], "flex-aspect-ratio-004.html": [ - "05b569ac607185b186221bbdb8edfb40fa153662", + "2633f493a87c7015bb35b8e44aeae9851f8e5ed0", [ null, [ @@ -188047,7 +191339,7 @@ ] ], "flex-aspect-ratio-025.html": [ - "c4ff8110d7bed7079c864ddf192f8242932e588d", + "bf8daaa35f08a412822dd41e7499025e4065e284", [ null, [ @@ -188060,7 +191352,7 @@ ] ], "flex-aspect-ratio-026.html": [ - "c4a250818bb7786e2f395922d28e3c7519b4ea3a", + "ff6bf2aa5690551808b98e7117ec65d9178a3425", [ null, [ @@ -188072,19 +191364,6 @@ {} ] ], - "flex-aspect-ratio-027.html": [ - "c10f1f3f7048bc891ec8d73a70342a994213b565", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], "grid-aspect-ratio-001.html": [ "ce91fe4e4e8b2bb7f610fb230a292f59188ff95b", [ @@ -188306,6 +191585,136 @@ {} ] ], + "grid-aspect-ratio-018.html": [ + "76fd6d96944a20c7a49f9e18e1524169f4e40a71", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-019.html": [ + "465b39949fb26ef95f6e7117f7d599b8f82ffa68", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-020.html": [ + "5c7b0cf10953c851b0d4027c30ba723bd1428c41", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-021.html": [ + "139459bbc008e85d41b299da6102a4633ebdce65", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-022.html": [ + "9089349dc6101918e19e29bb6779c7717752899b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-023.html": [ + "7bd320990227e35033fb065365707f211c8ac805", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-024.html": [ + "009da8106a5c755cfd9481814b3094f4c7a76bba", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-025.html": [ + "656c72f914202104ccbe18439062e9c902d15fcc", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-026.html": [ + "4904c9d3d8eb51bbf6fd1b7e2397314a36e51a1c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-027.html": [ + "019e2e7001e454b00743bd83ae5701e262ee6c09", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "intrinsic-size-001.html": [ "5b2c6049bd935c928f29c50bf4ad7afae41c4576", [ @@ -189011,6 +192420,32 @@ {} ] ], + "replaced-element-034.html": [ + "f56e4caf2f8a310a10571a432cb29d9e512afebe", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-element-dynamic-aspect-ratio.html": [ + "d4b83d3673cbfba940baec1c88f3e6630c760eb4", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "table-element-001.html": [ "51daf00957ee4a36ea5564831df4ea365233fa90", [ @@ -190132,6 +193567,214 @@ {} ] ], + "fit-content-length-percentage-001.html": [ + "b30c3cc8193f5a115d7e519b29579b8a5505a3d9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-002.html": [ + "bea4868f2bd8449e38a153464ffaf0ea99e3ac19", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-003.html": [ + "4148865560a60c38875b8052aa6d4edb2151aa3f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-004.html": [ + "bf0ff5cb746641c279ace6242b0ba331cf43c161", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-005.html": [ + "fc29fef9800a45eb88d2a8bd64ef43560a058ee9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-006.html": [ + "bd0b6589822faa9229a09e097e508e2dda3d7701", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-007.html": [ + "ae311da7b87ec44c03bad6beb90fb3f7639815a6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-008.html": [ + "d452621b5b2791961f3d9211c85c3a35b0287b01", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-009.html": [ + "e77850cfff54256717ff5aa490335d985f8224d5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-010.html": [ + "e924a885b46a1b17a7aee63e078a6d68b07ef82f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-011.html": [ + "67eac6dca1cfef221d73dc5eb9e106a311eca80f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-012.html": [ + "40d898a55aa26dc17edd9fbd807f9af49ad81210", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-013.html": [ + "3af60e87158afe1306979f11755c3aa7af0fbed4", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-014.html": [ + "641abae48765fd735f4e4fac01aa4b79cb0e72d5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-015.html": [ + "aaf29b9dd839e534ac2775fb61976db0a1316ef1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-length-percentage-016.html": [ + "bef5a62f1fb69359d791083e0027117dfc6f6f86", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "hori-block-size-small-or-larger-than-container-with-min-or-max-content-1.html": [ "68860be223474aac0eca9b408f4f8bb6ae6c61b5", [ @@ -190717,6 +194360,45 @@ {} ] ], + "replaced-aspect-ratio-stretch-fit-001.html": [ + "0653c8284a4ad029f5fb6d21f706559a24e5bf72", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "replaced-aspect-ratio-stretch-fit-002.html": [ + "2be6700047c4e9aba21a5ba6eeb16cee225708c5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "replaced-aspect-ratio-stretch-fit-003.html": [ + "06dac275cabf3cdcbed864df9c5422745ea2d37f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "slice-intrinsic-size.html": [ "2ef2a6ee6b1546b6e000c33688273a12790b16f5", [ @@ -191228,6 +194910,19 @@ {} ] ], + "border-collapse-empty-cell.html": [ + "18894a35a9c793755380d3a2ff1b34d88603af78", + [ + null, + [ + [ + "/css/css-tables/border-collapse-empty-cell-ref.html", + "==" + ] + ], + {} + ] + ], "border-collapse-rowspan-cell.html": [ "8a4bdede0ea4edafffbb5bb6c7f93684f1265368", [ @@ -191345,6 +195040,32 @@ {} ] ], + "collapsed-border-paint-phase-001.html": [ + "9c45eb7136ed0ca2047d637de8c56a74dc55d3e2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "collapsed-border-paint-phase-002.html": [ + "865069da0a5cc5aa5cb264be3da4c163be1e2a32", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "collapsed-border-positioned-tr-td.html": [ "d5c6094497268941071e516073a54f38e5900d45", [ @@ -191609,6 +195330,19 @@ ] ] }, + "html-display-table.html": [ + "394b853dff6bf8a95dad400452d76d3682b27708", + [ + null, + [ + [ + "/css/css-tables/html-display-table-ref.html", + "==" + ] + ], + {} + ] + ], "internal-containing-block-001.html": [ "a8745487b6702b8b8e8ac85bd843014dc296b717", [ @@ -191869,6 +195603,32 @@ {} ] ], + "table-cell-baseline-static-position.html": [ + "e3f5236645f03be99aa0abd3d330623413445263", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "table-cell-child-overflow-measure.html": [ + "c092d0c1bc970c6ac93050853a67098d3c750ded", + [ + null, + [ + [ + "/css/css-tables/table-cell-child-overflow-measure-ref.html", + "==" + ] + ], + {} + ] + ], "table-cell-overflow-auto.html": [ "6b688561b91321990f18680f88aa4873dd35916a", [ @@ -191908,6 +195668,19 @@ {} ] ], + "table_grid_size_col_colspan.html": [ + "2ac3e1032ff205226cdd257ae30ddd59fca6b3ef", + [ + null, + [ + [ + "/css/css-tables/table_grid_size_col_colspan-ref.html", + "==" + ] + ], + {} + ] + ], "tentative": { "paint": { "background-image-column-collapsed.html": [ @@ -192029,6 +195802,19 @@ {} ] ], + "visibility-hidden-collapsed-borders.html": [ + "c4aab2b61a27939fd5f5397d31074e7f62e99628", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "zero-rowspan-001.html": [ "bef5b947fcc817f165fbd0c73fb5b260c520e632", [ @@ -196705,6 +200491,19 @@ {} ] ], + "overflow-wrap-anywhere-011.html": [ + "0bc7a979802687a39681db1161e75f8291a215eb", + [ + null, + [ + [ + "/css/css-text/overflow-wrap/overflow-wrap-anywhere-011-ref.html", + "==" + ] + ], + {} + ] + ], "overflow-wrap-anywhere-fit-content-001.html": [ "8655b1f087df4534f59ea7c6348fe3272f84ccbf", [ @@ -197069,6 +200868,19 @@ {} ] ], + "overflow-wrap-min-content-size-009.html": [ + "e7887e7c1f3cd55b6620d5631333320241a5e6c7", + [ + null, + [ + [ + "/css/css-text/overflow-wrap/reference/overflow-wrap-min-content-size-009-ref.html", + "==" + ] + ], + {} + ] + ], "overflow-wrap-normal-keep-all-001.html": [ "8047aba133af1e4ece4b66fffcec48fa853da386", [ @@ -198208,7 +202020,7 @@ ] ], "text-align-justifyall-001.html": [ - "7388826f065529a075a3ad4781aac5ba3e381692", + "721d749dd45f50bc5450db1cfcd76ebe32e0d699", [ null, [ @@ -198221,7 +202033,7 @@ ] ], "text-align-justifyall-002.html": [ - "a363d63bcf5952faf42f502c76892a290d1d1de7", + "ab9e2edf14e26d5c9e485f3033ad3348a15acae6", [ null, [ @@ -198234,12 +202046,12 @@ ] ], "text-align-justifyall-003.html": [ - "e88590b8a771c24e510709f7e191a0aef73ce50b", + "dea27de1f172ff6358345062f0adb2a7a950ebf8", [ null, [ [ - "/css/css-text/text-align/reference/text-align-justifyall-ref-003.html", + "/css/css-text/text-align/reference/text-align-justifyall-ref-001.html", "==" ] ], @@ -198247,12 +202059,12 @@ ] ], "text-align-justifyall-004.html": [ - "b3bad61d62d3daeacd0f381713653785a273045d", + "0ab12652404d5667f2834bb3bf646c726288a1fd", [ null, [ [ - "/css/css-text/text-align/reference/text-align-justifyall-ref-004.html", + "/css/css-text/text-align/reference/text-align-justifyall-ref-002.html", "==" ] ], @@ -198260,12 +202072,12 @@ ] ], "text-align-justifyall-005.html": [ - "080f8b19a3bca6c5c489b6caed32c76d7df6da21", + "186092ca2ba6f1b66db121a4f36c90f28f588ad1", [ null, [ [ - "/css/css-text/text-align/reference/text-align-justifyall-ref-005.html", + "/css/css-text/text-align/reference/text-align-justifyall-ref-001.html", "==" ] ], @@ -198273,12 +202085,12 @@ ] ], "text-align-justifyall-006.html": [ - "42428d2b66fac43232684f6a2eff4d90eef60acf", + "bc1d0a698990362cfffba672765512aa74700711", [ null, [ [ - "/css/css-text/text-align/reference/text-align-justifyall-ref-006.html", + "/css/css-text/text-align/reference/text-align-justifyall-ref-002.html", "==" ] ], @@ -198719,6 +202531,108 @@ ], {} ] + ], + "text-justify-and-trailing-spaces-001.html": [ + "3c7dd9d31676166c4774348716970759c3067d85", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-001-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-justify-and-trailing-spaces-002.html": [ + "b596b33f95247d4d39892cc93a165cb15963179a", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-001-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-justify-and-trailing-spaces-003.html": [ + "1768ca3238cb87ebeb6215b087e5c58df23e7113", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-003-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-003-ref.html", + "==" + ] + ], + {} + ] + ], + "text-justify-and-trailing-spaces-004.html": [ + "d2f614ae9438a3de112c0c553d75d3fa98e3fa0a", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-003-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-003-ref.html", + "==" + ] + ], + {} + ] + ], + "text-justify-and-trailing-spaces-005.html": [ + "496c9e240e255b59c523697448ae4e136bcf85ac", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-005-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-005-ref.html", + "==" + ] + ], + {} + ] + ], + "text-justify-and-trailing-spaces-006.html": [ + "83dfaed80a72340051d454ec6f2a233bdd01b6c5", + [ + null, + [ + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-005-ref.html", + "==" + ], + [ + "/css/css-text/text-justify/reference/text-justify-and-trailing-spaces-alt-005-ref.html", + "==" + ] + ], + {} + ] ] }, "text-transform": { @@ -203545,7 +207459,7 @@ ] ], "trailing-ideographic-space-break-spaces-001.html": [ - "2ab5edffc0c6bee14382cb35c5960a36c62cee46", + "9ecfdb3eac6010d586db0a6ff66ab3603e016845", [ null, [ @@ -203558,7 +207472,7 @@ ] ], "trailing-ideographic-space-break-spaces-002.html": [ - "423dd8e1dbdbd196851b1d6669d2ca1c2cdd041f", + "587f4e04b9682c5b69b353043ebd06734e36f92f", [ null, [ @@ -203571,7 +207485,7 @@ ] ], "trailing-ideographic-space-break-spaces-003.html": [ - "fe09ba7eb3aea007c4f1f29aa3b628b22657f8a8", + "08eacdd2cf6bb4c8632b017a710dd076dfd8bc4e", [ null, [ @@ -203584,7 +207498,7 @@ ] ], "trailing-ideographic-space-break-spaces-004.html": [ - "bdc042e815c43f5368ca86fdbe1b78a22114f7b0", + "e9c32cfabbf5e16a66a2fe6eab3910b3f1230702", [ null, [ @@ -203597,7 +207511,7 @@ ] ], "trailing-ideographic-space-break-spaces-005.html": [ - "2d31870cc27a0a7297fca04179896bb69e481d8a", + "a8c68aa2a90b9170e3a853ca2ace7bf5d236765a", [ null, [ @@ -203610,7 +207524,7 @@ ] ], "trailing-ideographic-space-break-spaces-006.html": [ - "5ac80ad1b342888e35eaed187dc301eaef599b5a", + "e43d7c8774757c6a64b2b511afc91dbcdb764fcd", [ null, [ @@ -204025,6 +207939,36 @@ {} ] ], + "white-space-intrinsic-size-005.html": [ + "89dddf0408bcbc6c3d48382f5b5c03d0fe002393", + [ + null, + [ + [ + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", + "==" + ], + [ + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", + "==" + ] + ], + {} + ] + ], + "white-space-intrinsic-size-006.html": [ + "572b74423441875558f58e4f623672d4a3fbf147", + [ + null, + [ + [ + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", + "==" + ] + ], + {} + ] + ], "white-space-intrinsic-size-013.html": [ "298cbf7b312cc131884b921f1dbb0f48d85411b0", [ @@ -204316,12 +208260,12 @@ ] ], "white-space-pre-wrap-trailing-spaces-005.html": [ - "fccb3f48e465f81aa1154a81f9891a2d3f451738", + "298523351726e6ac3e88a8531fc6c450493957a8", [ null, [ [ - "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", "==" ] ], @@ -204329,25 +208273,29 @@ ] ], "white-space-pre-wrap-trailing-spaces-006.html": [ - "7b6630c7d00cef1178bb54f9819982d300fcc2f7", + "07a26151a6bd2c09979d593a154a1d16cc3edada", [ null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", "==" + ], + [ + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", + "==" ] ], {} ] ], "white-space-pre-wrap-trailing-spaces-007.html": [ - "11e3e3d675875683c46e0bf4a68ecedfca94710c", + "ce38da9ca00e57f450adc358ed70c46e4ded308b", [ null, [ [ - "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", "==" ] ], @@ -204355,12 +208303,12 @@ ] ], "white-space-pre-wrap-trailing-spaces-008.html": [ - "75d8b2000648b339416c469e22b57230db224cbb", + "68f116224923cefb2aae3ab17f7a5d8445464a00", [ null, [ [ - "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", "==" ] ], @@ -204368,25 +208316,29 @@ ] ], "white-space-pre-wrap-trailing-spaces-010.html": [ - "55e2437198fc6f97c5b41c602dced36257c23a79", + "c8825cfa6c174e657fc380003b794c642e04139a", [ null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", "==" + ], + [ + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", + "==" ] ], {} ] ], "white-space-pre-wrap-trailing-spaces-011.html": [ - "e54475ce44dcc12cd05a993ec92e7a18aac36bc7", + "5e3f5dbdcbea526d7c7b2e29896a00dda6c99fd3", [ null, [ [ - "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-004-ref.html", + "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-alt-004-ref.html", "==" ] ], @@ -206068,7 +210020,7 @@ ] ], "word-break-min-content-006.html": [ - "0d772a2d88cfc1f4a9b4ae482fa64a38279b04f2", + "daa6174592eef649a94807f88fdcb7fc631aa708", [ null, [ @@ -206080,6 +210032,19 @@ {} ] ], + "word-break-min-content-007.html": [ + "7886b13d734caa845356da115703ce59adac9cbd", + [ + null, + [ + [ + "/css/css-text/overflow-wrap/reference/overflow-wrap-min-content-size-009-ref.html", + "==" + ] + ], + {} + ] + ], "word-break-normal-001.html": [ "61ccba2465f772c46a771a8868e9036ff4a93b9d", [ @@ -206926,6 +210891,19 @@ {} ] ], + "text-decoration-thickness-percent-001.html": [ + "0d1f334b1e6d3eb5045338b445429cb17dcdaca9", + [ + null, + [ + [ + "/css/css-text-decor/reference/text-decoration-thickness-percent-001-ref.html", + "==" + ] + ], + {} + ] + ], "text-decoration-thickness-scroll-001.html": [ "283e28793d0ea778f30e904d986626fde596e29a", [ @@ -207530,6 +211508,123 @@ {} ] ], + "3d-rendering-context-and-abspos.html": [ + "c5eef46b5e800bcb411b2aed9c65534b8e3e1bc8", + [ + null, + [ + [ + "/css/css-transforms/reference/green.html", + "==" + ] + ], + {} + ] + ], + "3d-rendering-context-and-fixpos.html": [ + "e763e8b703ca7582fb8756f00c5faff47c7db408", + [ + null, + [ + [ + "/css/css-transforms/reference/green.html", + "==" + ] + ], + {} + ] + ], + "3d-rendering-context-and-z-ordering-001.html": [ + "d07c59a5db229cd1ed1ee9a429ea7656cd18d3e5", + [ + null, + [ + [ + "/css/css-transforms/transform-lime-square-ref.html", + "==" + ] + ], + {} + ] + ], + "3d-rendering-context-and-z-ordering-002.html": [ + "11faa1462a1a64c12480bc92551960e3b0cc1331", + [ + null, + [ + [ + "/css/css-transforms/transform-lime-square-ref.html", + "==" + ] + ], + {} + ] + ], + "3d-rendering-context-and-z-ordering-003.html": [ + "0e97e1d5e1ceb5e6a320495ca1147c41cdbdbcdf", + [ + null, + [ + [ + "/css/css-transforms/transform-lime-square-ref.html", + "==" + ] + ], + {} + ] + ], + "3dtransform-and-filter-no-perspective-001.html": [ + "d40e47352c66f4a51cc863df877ead9ae1390879", + [ + null, + [ + [ + "/css/css-transforms/3dtransform-and-filter-no-perspective-001-ref.html", + "==" + ] + ], + {} + ] + ], + "3dtransform-and-position-sticky-001.html": [ + "aec3b442bb6da1d48c64ed87b36a9f3f4c7bb336", + [ + null, + [ + [ + "/css/css-transforms/3dtransform-and-position-sticky-ref.html", + "==" + ] + ], + {} + ] + ], + "3dtransform-and-position-sticky-002.html": [ + "bde8e27e5dd7690bcd120e5fb850692ec95eaf3f", + [ + null, + [ + [ + "/css/css-transforms/3dtransform-and-position-sticky-ref.html", + "==" + ] + ], + {} + ] + ], + "add-child-in-empty-layer.html": [ + "71b5b24d353cb4c517689e5f189888e4b7ccc7c1", + [ + null, + [ + [ + "/css/css-transforms/add-child-in-empty-layer-ref.html", + "==" + ] + ], + {} + ] + ], "animation": { "rotate-transform-equivalent.html": [ "7474c79e7e6d974133abd226368ec636f0e4f49c", @@ -207682,7 +211777,7 @@ ] ], "backface-visibility-hidden-001.html": [ - "e9a463fc0b0b7e893d3c801c6a78aa5368ef3e60", + "3ccfc21159ed9ebfda6023b73955cd1385336699", [ null, [ @@ -207691,7 +211786,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 25 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], "backface-visibility-hidden-002.tentative.html": [ @@ -209253,7 +213364,7 @@ }, "inline-styles": { "svg-inline-styles-001.html": [ - "86719bffad1b11e0bb5f816102dc16254c054998", + "c0afbe4cfe13014472447cac9f54659548ee813f", [ null, [ @@ -209266,7 +213377,7 @@ ] ], "svg-inline-styles-002.html": [ - "2f0c4725c95f231fce019f44d05b6d0b6634f7d6", + "5228afc5f1fa65a28881b4b5c9062de37880ef92", [ null, [ @@ -209279,7 +213390,7 @@ ] ], "svg-inline-styles-003.html": [ - "8d4714d81b86db53c11fba52d8833a256b918565", + "327ff1341edaa73b9015089c608045b77a4e5afd", [ null, [ @@ -209292,7 +213403,7 @@ ] ], "svg-inline-styles-004.html": [ - "b7e0a7d80cf9d69327da0e499d5b23798344a31d", + "0a0dc027baa195d2852196acc816643e041d7fba", [ null, [ @@ -209396,7 +213507,7 @@ ] ], "svg-inline-styles-012.html": [ - "f046d4c6bbb48776645a0e74fe09acfd2da511d6", + "ceb25953e8bfd64804bc9266ff33274dc294cf7d", [ null, [ @@ -209409,7 +213520,7 @@ ] ], "svg-inline-styles-013.html": [ - "a06a937f92a20fe789af02942ce749e84aec7a25", + "100f90e516354befa0df4ac43c3162b65ffe3a1d", [ null, [ @@ -210492,6 +214603,19 @@ {} ] ], + "perspective-split-by-zero-w.html": [ + "3e4cf81441c912c4e514243dbd1213770109b306", + [ + null, + [ + [ + "/css/css-transforms/perspective-split-by-zero-w-ref.html", + "==" + ] + ], + {} + ] + ], "perspective-transforms-equivalence.html": [ "818555f611665b776cd0014f2b005adf69a28f94", [ @@ -210574,7 +214698,7 @@ ] ], "perspective-zero-2.html": [ - "59565ff3cd279f38c5968b117fb984d83e98178b", + "a94de82b3ff275f236ed8f0bded9a5f920e2034d", [ null, [ @@ -210586,8 +214710,21 @@ {} ] ], + "perspective-zero-3.html": [ + "0c46bd07f73c1b740a0e118f6bc4e0acd9889166", + [ + null, + [ + [ + "/css/css-transforms/reference/green.html", + "==" + ] + ], + {} + ] + ], "perspective-zero.html": [ - "f0044ad0010c5af53bcac1e448bcba46c2ed6042", + "93d2b63f55425fff7f990ec0c7cd9470c9d04e16", [ null, [ @@ -210599,6 +214736,32 @@ {} ] ], + "preserve3d-and-filter-no-perspective.html": [ + "0145b0dbfd24326e23a32e85064913f9f9393491", + [ + null, + [ + [ + "/css/css-transforms/preserve3d-and-filter-no-perspective-ref.html", + "==" + ] + ], + {} + ] + ], + "preserve3d-and-filter-with-perspective.html": [ + "8c0b0057cb9ccfc600ab4de382526d74e993f668", + [ + null, + [ + [ + "/css/css-transforms/preserve3d-and-filter-with-perspective-ref.html", + "==" + ] + ], + {} + ] + ], "preserve3d-button.html": [ "544bb2496638a52915f7c97a238ccb053b4e884e", [ @@ -210862,7 +215025,7 @@ ] ], "rotate_x_45deg.html": [ - "fa68e2abdd289f92fbea562d2038da8ed44e06ef", + "90ea4cd030a8d081f850f20840d4bb238cbab293", [ null, [ @@ -210871,11 +215034,27 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 159, + 200 + ], + [ + 200, + 200 + ] + ] + ] + ] + } ] ], "rotate_y_45deg.html": [ - "77a8b8841c3469a28f1eccc0f1a66c08aa9e0148", + "714246b99fc5d12fa2ff07dee828c629bd9092a9", [ null, [ @@ -210884,7 +215063,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 159, + 200 + ], + [ + 200, + 200 + ] + ] + ] + ] + } ] ], "scale": { @@ -211150,7 +215345,7 @@ ] ], "scaley.html": [ - "fdd8a9dca8dacee22615786fb0404be4b197c6ec", + "4137e8ffb12a79f0d26e5b291f468424c130859f", [ null, [ @@ -211228,58 +215423,6 @@ {} ] ], - "svg-skewx-002.html": [ - "c500d5f7c8a53cb2ebd16c3e1949323b6d83bd63", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-003.html": [ - "77835c2a387b1781a0693f02651203f809df8a93", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-004.html": [ - "44e681c83836bd4834614e88950fe71ce13d2189", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-005.html": [ - "06e4a876d1e135b6a1ac9906462f9bb63944d6bc", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewx-006.html": [ "9f3f3c336289f6760fe67a7ab2d4f759afc90597", [ @@ -211293,58 +215436,6 @@ {} ] ], - "svg-skewx-007.html": [ - "b57c3a15e9ee13574e001e31233d9050ecc901ab", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-008.html": [ - "aececfe81dfc42f00fed6fe861f47b493872e6b0", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-009.html": [ - "e7c94e412785df9c21aba60ccb684b5913d32ea1", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-010.html": [ - "97e52382f62c01d7818a980734fbdfdfb4569cfa", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewx-011.html": [ "e7539d23da7ea07be886b4d76af778d3c661db54", [ @@ -211358,58 +215449,6 @@ {} ] ], - "svg-skewx-012.html": [ - "f248414323f45eafa96c3927c6ade328c9d05e7d", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-013.html": [ - "7b9d3f2b4021d72c37a9c9de4369e7865a6a6e65", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-014.html": [ - "fe370ca97f540ae2ef2573b341620ceb80b885e1", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-015.html": [ - "433d8c7adbc69b0bd043a238696aef126ac3f36a", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewx-016.html": [ "29078907f467615e6be6bf1d0e173e194c4e32c5", [ @@ -211423,58 +215462,6 @@ {} ] ], - "svg-skewx-017.html": [ - "49536e0aa6d7262623c0683fe664ede472b1fe91", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-018.html": [ - "78a0c61ce7f0f2c857f1c26fcaaccbe48efcd349", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-019.html": [ - "d53fed18b69c786b89b93845984ce0ef3f5d5b43", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-020.html": [ - "4cf08ec23ecec9a9fd2276bb77372a193a883a2c", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewx-021.html": [ "73944503df224982573f8235f5a5b7008c3f0729", [ @@ -211488,47 +215475,8 @@ {} ] ], - "svg-skewx-022.html": [ - "cb4bcdf7692266cf5a1b719602692403b51556c3", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-023.html": [ - "bb23650d754e950d4da8d48a8b7a6df4226d66b3", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-024.html": [ - "1e805249b6fea96c8a8c67ef733deb58170c2f7f", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewx-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewx-025.html": [ - "e56b226992ee7ec8454256a4bc2e9b5f72206450", + "svg-skewx-with-units.html": [ + "128ee49a7cf71d6178842d7e732e8193f07ad81a", [ null, [ @@ -211552,19 +215500,6 @@ ], {} ] - ], - "svg-skewxy-002.html": [ - "98866c7579f3f75a05c09142ba5daf2d1d845466", - [ - null, - [ - [ - "/css/css-transforms/skewX/reference/svg-skewxy-ref.html", - "==" - ] - ], - {} - ] ] }, "skewY": { @@ -211581,58 +215516,6 @@ {} ] ], - "svg-skewy-002.html": [ - "32f3c79b62776ddf3383fd68308f2a6ad9ac0f25", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-003.html": [ - "dd2c1e3658b230a0d36954432229ff999ade80f6", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-004.html": [ - "709258e599382d4e5893ec9ca03e6fc2a3a0e3d6", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-005.html": [ - "f01cf51a333c9b7aab7937fb871180115079f7d2", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewy-006.html": [ "a4d6bdd90b33d4a89da6ed19af65b3a7f06a66c4", [ @@ -211646,58 +215529,6 @@ {} ] ], - "svg-skewy-007.html": [ - "41c5e15ef26bf58a71f63b4132eb747271628dfa", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-008.html": [ - "a4fc6c0013512237535770917f7da17b23cbcc3c", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-009.html": [ - "a1ffd26417e1a4b34a21148f3a93c609cbeee164", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-010.html": [ - "00171945433a834ae8a5ee6f799a80f51bf3ec54", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewy-011.html": [ "15f6208cf131623e1306e456c71a9c259e5c3fa4", [ @@ -211711,58 +215542,6 @@ {} ] ], - "svg-skewy-012.html": [ - "6973bd908f3397304019f16bdb2426bb1f3119ab", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-013.html": [ - "47341b26537eaa42edbe1d2d6fe6644a827f2a7a", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-014.html": [ - "aafac6ee8b128233f7a9398ce278145ff2a3ccca", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-015.html": [ - "0ac892069ff9b70a9fc7c1d628e1294967f1b237", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewy-016.html": [ "ce22ab40b0075818cf69589beb0d4d60c1706018", [ @@ -211776,58 +215555,6 @@ {} ] ], - "svg-skewy-017.html": [ - "9a637aa79ba1072b0da34f7adef3cb28a0477e34", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-018.html": [ - "75189e3795a89254cae16ee8f93d2bf2fbceec61", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-019.html": [ - "97a50836471cc8d092ae83ffb90e270784b24d1b", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-020.html": [ - "f2104791ee9900bab200d56741669bfa6c2bdcc0", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], "svg-skewy-021.html": [ "207bfa4c8f893880b3ac34966970e4b157820cd8", [ @@ -211841,47 +215568,8 @@ {} ] ], - "svg-skewy-022.html": [ - "0f5b6631bc6c29560f8eb8eee8f05acf2737945d", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-023.html": [ - "7f95f34729f19650e2233e265e4fd59f1d550a6f", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-024.html": [ - "9552d6a219368b4f79c72f72f198a77bbc96b7e8", - [ - null, - [ - [ - "/css/css-transforms/skewY/reference/svg-skewy-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-skewy-025.html": [ - "3d551e3b830d9eb2d7aa158fdcd148caaff8c1f6", + "svg-skewy-with-units.html": [ + "c724051ae859d04b825a5b3d6c4f80144f0354d0", [ null, [ @@ -212011,6 +215699,19 @@ {} ] ], + "transform-3d-scales-different-x-y-dynamic.html": [ + "a13295182f08336840f3c65da9cdb7a5ff607df0", + [ + null, + [ + [ + "/css/css-transforms/transform-3d-scales-different-x-y-dynamic-ref.html", + "==" + ] + ], + {} + ] + ], "transform-abspos-001.html": [ "f434079e0d32dfad483239b6a182c10ceb5cd72b", [ @@ -212895,7 +216596,7 @@ ] ], "transform-inline-001.html": [ - "d1be4f78da214b34962d96a04b4b0e27f4aad18c", + "09a35f00558d5fbfef169be2e232fdc2fd75fed8", [ null, [ @@ -213094,7 +216795,7 @@ ] ], "transform-input-015.html": [ - "da475bb7a43f20a127745f8e69fd19323baeaced", + "2158948471778882e6c1d7466e7cae03c76e1d4e", [ null, [ @@ -213103,7 +216804,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 2 + ] + ] + ] + ] + } ] ], "transform-input-016.html": [ @@ -216090,7 +219807,7 @@ ] ], "transform3d-matrix3d-001.html": [ - "aa32234b154f6802e53050762a03ded1b17e4a59", + "2f4a98b1b681073dfb9bbfa04bb2310351b045d2", [ null, [ @@ -216103,7 +219820,27 @@ "!=" ] ], - {} + { + "fuzzy": [ + [ + [ + "/css/css-transforms/transform3d-matrix3d-001.html", + "/css/css-transforms/transform3d-matrix3d-001-ref.html", + "==" + ], + [ + [ + 0, + 100 + ], + [ + 0, + 980 + ] + ] + ] + ] + } ] ], "transform3d-matrix3d-002.html": [ @@ -216231,7 +219968,7 @@ ] ], "transform3d-perspective-005.html": [ - "92b2efaadc5f0f2b38ac1f6ebaa723f210340bdc", + "f23375d0c0c5487715eb69500b54afc60374224d", [ null, [ @@ -216447,7 +220184,7 @@ ] ], "transform3d-preserve3d-010.html": [ - "89a881924d27d7ce068ef112151e452e4a42655b", + "d00f71c1e321193d752527070721393db25efaba", [ null, [ @@ -216456,7 +220193,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 200 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], "transform3d-preserve3d-011.html": [ @@ -216486,7 +220239,7 @@ ] ], "transform3d-preserve3d-013.html": [ - "2114286850494d9801dadcac7aea9492c265e74f", + "3aac76dcf781bfd5e7719385c9f69d34a453711e", [ null, [ @@ -216495,7 +220248,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 1750 + ] + ] + ] + ] + } ] ], "transform3d-rotate3d-001.html": [ @@ -216568,7 +220337,7 @@ ] ], "transform3d-rotatex-perspective-003.html": [ - "620f3b9556a74bbb694ae806f1dd9a62b7a9236c", + "fb0f9e1c623a0718a08140eb96b1ff84c93cda47", [ null, [ @@ -216581,7 +220350,23 @@ "!=" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 25 + ], + [ + 0, + 1000 + ] + ] + ] + ] + } ] ], "transform3d-rotatex-ref.html": [ @@ -216804,7 +220589,7 @@ ] ], "transform3d-sorting-006.html": [ - "d40edf00a9f2b55ab9cf54aa15443240ba59f400", + "966549adc5d05b292ddd905654b20edd827eab21", [ null, [ @@ -216981,97 +220766,6 @@ {} ] ], - "svg-translate-002.html": [ - "bcc17411bed4b0843f0028cab8513fc4ce229428", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-003.html": [ - "db349f68968ef6aa398c5635654f6b7cac73cf90", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-004.html": [ - "610707eb9d6b184d9ca8866225331dc0f2b66beb", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-005.html": [ - "e5f136ff14c82e1356ec732f707374c9c0b741f7", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-006.html": [ - "3d04651b5ad61a72bb65c655b344c3158696c703", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-007.html": [ - "1cb4cb6feb73adaa2f75bb89176224637ea952f3", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-008.html": [ - "6c099b4930278bee8c46051d3b837b5f0133d027", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-009.html": [ "f59a0a1462c64521aed46532a07b2fb0c9d71cb4", [ @@ -217085,97 +220779,6 @@ {} ] ], - "svg-translate-010.html": [ - "3acc1f26c652f32c3e40dc7c075accb6dc315cd3", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-011.html": [ - "a13a61bac6ec0f3d6693acb002f485942444e3c7", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-012.html": [ - "ac3b1bf12e2f2c8b4e1355c2d9e5637c474e3e85", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-013.html": [ - "989f2528cada90845b8127bd03d6ff0753ef379a", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-014.html": [ - "8b5842dad45e7ed96df0885aead79c99d01f91f7", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-015.html": [ - "aa52a0087a3cfb87308476394bb318214acd0424", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-016.html": [ - "4c6ab0430cfd6a90b1085ac28623da356979976c", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-017.html": [ "864ca2e2d9074b4d1de91f72f1aacd75880c1bd0", [ @@ -217189,97 +220792,6 @@ {} ] ], - "svg-translate-018.html": [ - "fbbabec9b760088bdfd86bba322390982afc36c1", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-019.html": [ - "34d40098aafef6a9e77dfce901224c98f4ea559e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-020.html": [ - "03d48806201ace7c07c4fceaaa95e385ddeb23ca", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-021.html": [ - "8cb2532a7a9d39cb153ceb15df1d4b60d5c9667f", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-022.html": [ - "a94cb9bfcf2be3d3f886e958a5351bfa7dee171e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-023.html": [ - "e17d75c60555c4cf0bb0b6fa58f8cccb2860b213", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-024.html": [ - "4057898d9b367a2eaaddc87d90fbf559b52abd5b", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-025.html": [ "ffccb8e69cf56917cdf56b0586b91e3ef737e789", [ @@ -217293,97 +220805,6 @@ {} ] ], - "svg-translate-026.html": [ - "ff46eaee192ab1a36d11cf2514b7b5ac906b91b4", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-027.html": [ - "aac1e38338f4d31066dd50f64c02e069f1a3da37", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-028.html": [ - "9076b2e14c4f3c7f3e8a9c85f61810c9ea85bc4e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-029.html": [ - "64a82b2a8542758c7729a4b52de39bfe35fc0d84", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-030.html": [ - "6dc87402fb40eb95eff66fbc34ce140f7e2ae26f", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-031.html": [ - "831641e0b0f775733acead16e7276f2a4b5fc83c", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-032.html": [ - "5492912a46ab133d878054bdb756479d7a05726e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-033.html": [ "a218a4794ac60128e31d8b6c88933d0098eec763", [ @@ -217397,97 +220818,6 @@ {} ] ], - "svg-translate-034.html": [ - "130592b52177d93b2fc74048f5d321fe0212780d", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-035.html": [ - "c4660daf954fcb2377d224aaf6f4a8cf58aa49e3", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-036.html": [ - "3fc7a4ffb613ce41c61a20f3e8279bf140440902", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-037.html": [ - "2d8113dc862052f7f61ef4f0722f3bb41cdf32a3", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-038.html": [ - "ccd982b4c028c1c858147aff3a0c4f91219f4dd5", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-039.html": [ - "cc9a6e0a482d80d3bd38900459a6f5112e7f362e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-040.html": [ - "8c1c750e0e19849a65c0478583c2507d0170a8ad", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-041.html": [ "175eb6e446741cfab39655fa46062f5b7a006971", [ @@ -217501,99 +220831,8 @@ {} ] ], - "svg-translate-042.html": [ - "3312d46f7af8d05f4dc5972eba25d8a12813878d", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-043.html": [ - "18051c5b326a97f410bc5d9115e6c71ac0e81b7c", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-044.html": [ - "45c1ce2805bc3cb88390f4a5826b78c3e60b4328", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-045.html": [ - "9ef3449f2dee0a576001d2ab56b83fe5b3356a5a", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-046.html": [ - "ee6908c2224d2a679e24bef7467a52487b96a4fb", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-047.html": [ - "fdfa8c4eb646231aaddca7ec38e921285eeb696c", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-048.html": [ - "8d54d8b450495895196e18d384862e3764731e5e", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-049.html": [ - "7861d045fe01917f49fba2504acbd1fab77a65c1", + "2684b07ed8d805a3decfe963c6007e7276d4f3bd", [ null, [ @@ -217606,7 +220845,7 @@ ] ], "svg-translate-050.html": [ - "251073add6ad7090bfe986cdf9f8a57fec10d352", + "2519e050852bec2a314af8e1c7c3237d65179b9b", [ null, [ @@ -217619,7 +220858,7 @@ ] ], "svg-translate-051.html": [ - "07136df61a068aa324be68e032bf5aeb51c83ab0", + "bb965eb41258cbe7cd465ffbab4ea2c1716e966e", [ null, [ @@ -217632,7 +220871,7 @@ ] ], "svg-translate-052.html": [ - "d01db49c5f187c9b99d464f817ea1e147771f103", + "d7656bf2e9d0ccd8e13a9afe4ced6b92392a59f5", [ null, [ @@ -217645,7 +220884,7 @@ ] ], "svg-translate-053.html": [ - "06dba9239255618008bc751b187175d9c346b27f", + "cf3da372ac26e3a77e176733d3bebc028f5ac9de", [ null, [ @@ -217658,7 +220897,7 @@ ] ], "svg-translate-054.html": [ - "295d6002c11df360ff70556256eab93ec91b5751", + "90061d4c35b9b28ba24c6d9b50526b62bf0ccc7f", [ null, [ @@ -217671,7 +220910,7 @@ ] ], "svg-translate-055.html": [ - "7523ac2d7af439ba2fc442401e207cd83896a1cd", + "54c5cc908bbe91fbca9f95b7e8dc1ed9b808f658", [ null, [ @@ -217683,164 +220922,8 @@ {} ] ], - "svg-translate-abs-unit-combinations-001.html": [ - "3eb0acd7ef386becd39af5ec2ae2fc0506040128", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-abs-unit-combinations-002.html": [ - "bc475c85193ed03f3f8682901f082dad3cc4ba58", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-abs-unit-combinations-003.html": [ - "b48c872f2b99cb61b1fa1070fcc74ba4598c8805", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-abs-unit-combinations-004.html": [ - "3135657609a5b3bdd2634dc904bffa1101c7dec8", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-abs-unit-combinations-005.html": [ - "d7dd7e033da5b1106a731ad2f51b3c5320228985", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-abs-unit-combinations-006.html": [ - "00bd57d927997202dde6c2a5812cb2b352cd4a5a", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-abs-unit-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-001.html": [ - "ea54fc6a629aa1304f36220f813fcdccbd36752a", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-002.html": [ - "6508a0cd74b9176cd533aa89678f41adebc28bad", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-003.html": [ - "7ab79d8d2f32578d97d1804bf1b5a9158a19a726", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-004.html": [ - "c9dac77efff0281e583ef0283038a760a6a23fe4", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-005.html": [ - "49ab6f966232f655b825d17d770783389541324d", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-ex-unit-006.html": [ - "70205abbc58116b3931894670bfc513f44818f1d", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-ex-unit-ref.html", - "==" - ] - ], - {} - ] - ], "svg-translate-multiple-001.html": [ - "03c72b77e9225a80503378b98ad59c40240cf45f", + "8c88e92f0b547157b735a6d6ccf0e38b593a8538", [ null, [ @@ -217865,130 +220948,13 @@ {} ] ], - "svg-translate-multiple-relative-001.html": [ - "ddde84fd818d3fd51c59f6843f1f4d526493759d", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-multiple-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-multiple-relative-002.html": [ - "3f802b7928597b1865e060f7e630853e8a81ce5d", + "svg-translate-with-units.html": [ + "32561409ad686b978edfa8b07c5793864e1d31c2", [ null, [ [ - "/css/css-transforms/translate/reference/svg-translate-multiple-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-001.html": [ - "2c54c241d4615c60a4eebb94411b1ed147ba150f", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-002.html": [ - "8e2fab6b21b69747036124fd3934e64955ea5cc8", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-003.html": [ - "3c13972c981245cf29beb5f41f5fc9e1b66e1cb7", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-004.html": [ - "2c6677f33f458c84cebdc5cf12fa9d5400e9160c", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-005.html": [ - "14aab9c0614a8f3df488e253f6f93257722c31a2", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-006.html": [ - "053b977f0378a892bc74e47c87469cb7c8e0c229", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-007.html": [ - "cabca3f62efa7ec5b766f858116ca68754f918a8", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-translate-relative-008.html": [ - "0ada9ccb51e90c88b4cd052916b51dee280b1020", - [ - null, - [ - [ - "/css/css-transforms/translate/reference/svg-translate-relative-ref.html", + "/css/css-transforms/translate/reference/svg-translate-ref.html", "==" ] ], @@ -217996,7 +220962,7 @@ ] ], "translate-and-transform-attribute-in-svg.html": [ - "6fd8027964df68a199ca496786f93630a341434e", + "5d316e0b6aa2c6221b95250ea564456c951bba0e", [ null, [ @@ -218062,20 +221028,20 @@ ] ], "ttwf-css-3d-polygon-cycle-mismatch.html": [ - "addcb65cd71de768e7205fc6c8eded21dcc8ef55", + "cdb2e59046aa17b739688897bf88399c7c6e74fa", [ null, [ [ "/css/css-transforms/reference/ttwf-css-3d-polygon-cycle-ref.html", - "==" + "!=" ] ], {} ] ], "ttwf-css-3d-polygon-cycle.html": [ - "ec33e7d5bf1f529c996ea26df540c1db02fa395a", + "bd18d20fa1a03807bb8f4696f258626bb6ac6bcd", [ null, [ @@ -218084,7 +221050,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 104 + ], + [ + 0, + 610 + ] + ] + ] + ] + } ] ], "ttwf-reftest-rotate.html": [ @@ -218249,6 +221231,32 @@ ] }, "css-ui": { + "accent-color-checkbox-checked-001.tentative.html": [ + "91bb901a736ca528cd11186fabe16456bb9a9d01", + [ + null, + [ + [ + "/css/css-ui/accent-color-checkbox-checked-001-notref.html", + "!=" + ] + ], + {} + ] + ], + "accent-color-visited.tentative.html": [ + "5aee0f125f7a1a6fffacda9790d7b72b02ab71ac", + [ + null, + [ + [ + "/css/css-ui/accent-color-visited-ref.html", + "==" + ] + ], + {} + ] + ], "appearance-auto-001.html": [ "deef1c5d0b52fe7c91a319abbd1f6ccc2eeda08d", [ @@ -220163,7 +223171,7 @@ ] ], "attr-px-invalid-cast.html": [ - "93b2d218279dbd324c15b97fa9dab983fbf8d71b", + "54b43b4076d3bef14fbd0c76a42e21a1b7105c27", [ null, [ @@ -220176,7 +223184,7 @@ ] ], "attr-px-invalid-fallback.html": [ - "f8f88f58094974ca284d0a99f486e33ed89fb550", + "27dfc10240379d3cf50af54319dcf769a2af9083", [ null, [ @@ -220358,7 +223366,7 @@ ] ], "calc-in-media-queries-002.html": [ - "4b7d7c87034184a38a708dcc4c6fe19b47b12220", + "b016393a6fcd5eafbc0ba201718eb69da0f91d97", [ null, [ @@ -220371,7 +223379,7 @@ ] ], "calc-invalid-range-clamping.html": [ - "a88416a2c2da6532084dc77ded1d3d5ac15e120e", + "72ad2a2ff58baf448fb48ea118c9dab70cfe4a24", [ null, [ @@ -221085,19 +224093,6 @@ {} ] ], - "initial-background-color.html": [ - "01543397ab6138f06acfcd85ec65d44f9fb7a54d", - [ - null, - [ - [ - "/css/css-values/reference/all-green.html", - "==" - ] - ], - {} - ] - ], "lh-unit-001.html": [ "f7a6fc9551b4524a41bdb97cb9293ff973cf3e52", [ @@ -221532,7 +224527,7 @@ ] ], "variable-declaration-07.html": [ - "ecd74b2d406579ebe4727f34003bdfd3a1de571e", + "0199c301d81e031eb01e09f00d51a546e7fc906e", [ null, [ @@ -221558,7 +224553,7 @@ ] ], "variable-declaration-09.html": [ - "898b973bfa29cdbff2565c552f205feb306d3a43", + "c9d245888a700e8ea5e5e14d386d301d065cd228", [ null, [ @@ -221791,21 +224786,8 @@ {} ] ], - "variable-declaration-28.html": [ - "f6f78911bd5ea4f630a3b3cd5fb16b90247b028a", - [ - null, - [ - [ - "/css/css-variables/support/color-green-ref.html", - "==" - ] - ], - {} - ] - ], "variable-declaration-29.html": [ - "a8847f5ed9ce94677f173e1ed4a8ff1c50abf0a9", + "2dbe0183fed61c6dbbb9dde9b858030de41ddb88", [ null, [ @@ -222377,7 +225359,7 @@ ] ], "variable-reference-06.html": [ - "464ce37ed996311e060ed54eeae3555a4b1f7984", + "8b5771d934d83602341849dc37c960b1f7855fe7", [ null, [ @@ -222442,7 +225424,7 @@ ] ], "variable-reference-11.html": [ - "81dec5a76c29ee0ebf1079ffb97cb09f27b12917", + "165e77f900c537ac29a6a67acd8cbd6662668336", [ null, [ @@ -222910,7 +225892,7 @@ ] ], "variable-supports-05.html": [ - "08a7e74967e417023e899c18c3e63838c50c15c6", + "858395bb1cf1006f3d99eb852a2d3308cb8e31ee", [ null, [ @@ -222936,7 +225918,7 @@ ] ], "variable-supports-07.html": [ - "d3bcc22ee2b615b320427b081c8a87bb14e35614", + "895b20d0d7e2577ace96f98bdeac6de75db534ca", [ null, [ @@ -223326,7 +226308,7 @@ ] ], "variable-supports-37.html": [ - "828fb2f7f5bd1481cb76051e0b2bad4ccc5705bf", + "6cfb626e09cffc4042a85b6b27aef9d93c3bb3c1", [ null, [ @@ -223352,7 +226334,7 @@ ] ], "variable-supports-39.html": [ - "d67ac48f601bc74d153d3c4f98f5dec03f734530", + "ba02455d3095201ff8e93d85d8e280f616cabc18", [ null, [ @@ -223586,7 +226568,7 @@ ] ], "variable-supports-57.html": [ - "5cb8b33643917ddd97790e15bdf4bf42140ab97f", + "88b448a6b5cf2db7cde2d7fad2be90e41c202ea3", [ null, [ @@ -223599,7 +226581,7 @@ ] ], "variable-supports-58.html": [ - "5eb41b4328b1e89c9974823a9018352493beccdd", + "97a79a6f47b4e1374eb19633743fd94d8e8c6d90", [ null, [ @@ -223899,39 +226881,364 @@ {} ] ], - "will-change-stacking-context-001.html": [ - "9720953205b1cd2863649f2b69e6e01b5107acb2", + "will-change-fixpos-cb-contain-1.html": [ + "3bb3afee3b79ff79664501f75b31b01bdad503e8", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-filter-1.html": [ + "afb03e8becc34d9cae1ee7ea38583de221b81e5d", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-height-1.html": [ + "892e6d4541ac2e00a365ab22ef6e246a9b8ccd11", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-offset-path-1.html": [ + "0fe1ec1da798479cdf0c43d3d7f8ee506b796e47", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-perspective-1.html": [ + "4a394f9958fec7021c5eab39dcacbe31902fe6e5", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-position-1.html": [ + "7e52ab4b038ce14419590e341e8f26775fcc3535", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-transform-1.html": [ + "92632cd62d47b3718e2c529f6d3101192af99b7c", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-transform-style-1.html": [ + "808f7d8cd0957e2f157b327ce6a29b384640391b", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-translate-1.html": [ + "7ff0dfe768a43d06740dd2fb338aab855ff0a175", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-fixpos-cb-webkit-perspective-1.html": [ + "2438dcd975bf181e5a59885f91059d69c0f39b28", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-backdrop-filter-1.html": [ + "0081e93c4fa2c0eb14e1e51545c45a50c2d565de", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-clip-path-1.html": [ + "673d1a895b5a62ad205c10a5883c5862e171eee6", [ null, [ [ - "/css/css-will-change/will-change-stacking-context-001-ref.html", + "/css/css-will-change/green-square-100-by-100-ref.html", "==" ] ], {} ] ], - "will-change-stacking-context-002.html": [ - "1cda23b9bcfc45c4632f810096ff837084df20d0", + "will-change-stacking-context-filter-1.html": [ + "0f87768db1ca1fa870ddd3b32568d8ba203ff047", [ null, [ [ - "/css/css-will-change/will-change-stacking-context-002-ref.html", + "/css/css-will-change/green-square-100-by-100-ref.html", "==" ] ], {} ] ], - "will-change-stacking-context-003.html": [ - "b764d2e86d641d514751afa664672291c3acf0b1", + "will-change-stacking-context-height-1.html": [ + "3ce0e61588a43f49123f7525b055d7b1cdb7b477", [ null, [ [ - "/css/css-will-change/will-change-stacking-context-003-ref.html", + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-isolation-1.html": [ + "9eaf812e937d1e571c9259060e05ce0aad4118d4", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-mask-1.html": [ + "77ec10caa97f12198bc71e7240b152c67de1219a", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-mix-blend-mode-1.html": [ + "ae13ac6b668889785ba51e778ee64ab15df24379", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-offset-path-1.html": [ + "07277b66d92f74e0d8df1d934ff213efd78c9ab4", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-opacity-1.html": [ + "2bff6676a7171e9132f7d4168d5ee2ad7c3b0f62", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-opacity-2.html": [ + "dfedbd2307bdc87569deda11a5335af7faf2282f", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-perspective-1.html": [ + "3a6863220f7dbc34ca2565bd201092d89a9b8dbd", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-position-1.html": [ + "a244b7c2c55ccf1109fdb852bfd05b288a149336", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-transform-1.html": [ + "1b55d1f7aad334de89748c953edc97551f15cbfa", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-transform-style-1.html": [ + "f8e50c60c13ee88005d5e2821d03ba28f0cc5db7", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-translate-1.html": [ + "1e1e8355d6c54e845d36fc708bbcd1eba782cea2", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-stacking-context-z-index-1.html": [ + "b80338032c8e7b68dfa26745516f83ab816433ba", + [ + null, + [ + [ + "/css/css-will-change/green-square-100-by-100-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-transform-add-content.html": [ + "1d8568ee629e48adfe99abab2e2194a73ae1301a", + [ + null, + [ + [ + "/css/css-will-change/will-change-transform-add-content-ref.html", + "==" + ] + ], + {} + ] + ], + "will-change-transform-huge-offset-scrolled.html": [ + "506ac67f0c876740ce8b4529de4abe18a194db05", + [ + null, + [ + [ + "/css/css-will-change/will-change-transform-huge-offset-scrolled-ref.html", "==" ] ], @@ -223951,6 +227258,19 @@ {} ] ], + "will-change-transform-inline.html": [ + "0df497ee4557055ff5236546adc36582dbb4b9bb", + [ + null, + [ + [ + "/css/css-will-change/will-change-transform-inline-ref.html", + "==" + ] + ], + {} + ] + ], "will-change-transform-zero-size-child-overflow-visible.html": [ "38ddf5ec37fa9f750f17bca32c2986d2f675e00e", [ @@ -228687,6 +232007,19 @@ {} ] ], + "bidi-plaintext-br-001.html": [ + "0d96934ad28b0ea9453fcf430c0fec85647c36a8", + [ + null, + [ + [ + "/css/css-writing-modes/reference/bidi-plaintext-br-001-ref.html", + "==" + ] + ], + {} + ] + ], "bidi-table-001.html": [ "860a4b3212d9a2aa5a44e233f1db3bc8ca32ae3c", [ @@ -230546,6 +233879,19 @@ {} ] ], + "direction-propagation-body-contain-root.html": [ + "2e4325d5002e8d7e2d2acb44b15f5caf60595892", + [ + null, + [ + [ + "/css/css-writing-modes/direction-propagation-body-contain-root-ref.html", + "==" + ] + ], + {} + ] + ], "direction-upright-001.html": [ "c9999951ab2df17b723b6c2da37473dbbc3c91cb", [ @@ -234693,7 +238039,7 @@ ] ], "sizing-orthog-vrl-in-htb-013.xht": [ - "997174e0f7da2d1d3946d71afeda7676ff95efe6", + "75cf1aa30057ce7c06ed50f6987aecd811e1f975", [ null, [ @@ -236647,6 +239993,19 @@ {} ] ], + "vrl-inline-paint-invalidation.html": [ + "a804e4d7c0a47e84e6aca2952c6ea65ab41a4402", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "vrl-text-orientation-sideways-alongside-vrl-floats.html": [ "710221031a3ee31e06d540a63c80a819e9eff9c8", [ @@ -236998,6 +240357,19 @@ {} ] ], + "wm-propagation-body-contain-root.html": [ + "af743ef017ac7f9a0624d8bccd48337bfe3a139f", + [ + null, + [ + [ + "/css/css-writing-modes/wm-propagation-body-contain-root-ref.html", + "==" + ] + ], + {} + ] + ], "wm-propagation-body-dynamic-change-001.html": [ "02af09311f794afcd28096bb057c1ae5c37bd460", [ @@ -237024,6 +240396,19 @@ {} ] ], + "wm-propagation-body-dynamic-change-003.html": [ + "8e8bf03c31ff3c0da37b23f07e1f71d40de27c56", + [ + null, + [ + [ + "/css/css-writing-modes/wm-propagation-body-dynamic-change-003-ref.html", + "==" + ] + ], + {} + ] + ], "wm-propagation-svg-root-scrollbar.svg": [ "a9a7b25ff26854e137c8d6bc5c17160201401cdb", [ @@ -237211,7 +240596,7 @@ ] ], "cssom-getBoundingClientRect-vertical-rl.html": [ - "85ac2a9665953aeb961f12a30dd4d82082d8273a", + "62f010afbf27c9c7f7d909fc959255b347b9884d", [ null, [ @@ -238447,6 +241832,32 @@ {} ] ], + "filter-cb-dynamic-1a.html": [ + "cc8c74701fb52bfab4960a6aac00c63f7f8cbc8d", + [ + null, + [ + [ + "/css/filter-effects/filter-cb-dynamic-1-ref.html", + "==" + ] + ], + {} + ] + ], + "filter-cb-dynamic-1b.html": [ + "15e30ee5711c97c68e112f8bdd24a7659ea0915f", + [ + null, + [ + [ + "/css/filter-effects/filter-cb-dynamic-1-ref.html", + "==" + ] + ], + {} + ] + ], "filter-contrast-001.html": [ "3f2281fcbabb8bcbc73e36980229fdcf47eb1ccf", [ @@ -243136,7 +246547,7 @@ ] ], "redefine-attr-mapping.html": [ - "6c53b42df8153cabcb2f3d1049f663a9015b343b", + "716b14383860c8061d1f7ca9567e860c529c3aaa", [ null, [ @@ -243370,402 +246781,6 @@ ] ] }, - "filters": { - "filter-containing-block-dynamic-1a.html": [ - "83230174c383f64b3941bf6dc1deda6819397b55", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/filters/filter-containing-block-dynamic-1-ref.html", - "==" - ] - ], - {} - ] - ], - "filter-containing-block-dynamic-1b.html": [ - "4c25a834c6864a845de204a5ff6bcdca837e61bc", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/filters/filter-containing-block-dynamic-1-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "fonts3": { - "font-size-adjust-zero-1.html": [ - "ea1e57453b6e3ce9993215041dfb257c1a28a51a", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/fonts3/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-zero-2.html": [ - "0fadcd458db59b2191593cfde3c0645cbe3a7c64", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/fonts3/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-zero-1-ref.html": [ - "f3bdd53d71c75326e688e7ff3c72c9a3418e5248", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/fonts3/font-size-zero-1-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-size-zero-1.html": [ - "9b7b3e6d754318b69f3baeb2164680661cc0566f", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/fonts3/font-size-zero-1-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-zero-2.html": [ - "5b5aaa594c3909c4e998f5c47d721e78edefcf27", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/fonts3/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "ib-split": { - "emptyspan-1.html": [ - "dcf9367d2a2aa33599435ceaf176e79f9336cc3c", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/emptyspan-1-ref.html", - "==" - ] - ], - {} - ] - ], - "emptyspan-2.html": [ - "b740fad71b81c7a6b80e2acde33f862989a8aa73", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/emptyspan-2-ref.html", - "==" - ] - ], - {} - ] - ], - "emptyspan-3.html": [ - "1be809ec2d5471897098ade188c3eb41fadd7ce0", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/emptyspan-3-ref.html", - "==" - ] - ], - {} - ] - ], - "emptyspan-4.html": [ - "3656ada50420076c1a32273c4ac8c22f630a0013", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/emptyspan-4-ref.html", - "==" - ] - ], - {} - ] - ], - "float-inside-inline-between-blocks-1.html": [ - "296dcb9bde90c1e579f5baeb937510b644a5e886", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/float-inside-inline-between-blocks-1-ref.html", - "==" - ] - ], - {} - ] - ], - "percent-height-1.html": [ - "91c1594b2775dffcbd1fa8224c19b3ee8e98b7ab", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/percent-height-1-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-1-ref.html": [ - "f197d6ac93da70b237751f56c6e7a4631831b35f", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-1-noib-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-1.html": [ - "07053efa19b0a0bca41d840ad7323c7d33d2f459", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-1-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-2.html": [ - "d4cf51040e55ebd7faca43cbb893b79001546519", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-2-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-3-ref.html": [ - "5822665ffee2503e0a3307b0f0f19d77e39267b6", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-3-noib-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-3.html": [ - "1d5e2a45bea3e3ee843aadb1cd75ff548b300fa8", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-3-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-4-ref.html": [ - "8768b0d25bb56a6ea7ee56f0ecf2b34a4ea0163c", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-4-noib-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-4.html": [ - "44c0ceed87db65c7c11d7df275433ed6d6a78aa1", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-4-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-5-ref.html": [ - "68258ef8b1a5b3f915f524aa2c0ce8e9b6b6ff62", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-5-noib-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-5.html": [ - "539115e030142ab99be79814d0fc840b2fe53b00", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-5-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-6-ref.html": [ - "bd43b45db5c8be07fb5ae80c19da36959f69f06b", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-6-noib-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-from-split-inline-6.html": [ - "99bbcf7a0f0676e384bdf645b4eb5059fdb36c36", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-from-split-inline-6-ref.html", - "==" - ] - ], - {} - ] - ], - "remove-split-inline-1.html": [ - "cfe6a5e8c02eaa683836da5bc9e0073755977662", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/remove-split-inline-1-ref.html", - "==" - ] - ], - {} - ] - ], - "split-inner-inline-1.html": [ - "3ae7392c2347a901e247adccb30227a8e812d29e", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/split-inner-inline-1-ref.html", - "==" - ] - ], - {} - ] - ], - "split-inner-inline-2.html": [ - "318df5344f74e5d0662f3d47fa20d0c2ffe1fa1f", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/split-inner-inline-2-ref.html", - "==" - ] - ], - {} - ] - ], - "table-pseudo-in-part3-1.html": [ - "cb50af9ca87c4d276cbbdf5f99eaddb7fdd33d3a", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/table-pseudo-in-part3-1-ref.html", - "==" - ] - ], - {} - ] - ], - "whitespace-present-1a.html": [ - "283884b0843ab525bb29d0ebeda635ba63ae4d73", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/whitespace-present-1-ref.html", - "==" - ] - ], - {} - ] - ], - "whitespace-present-1b.html": [ - "70239a8e0853afad656f70cdba460dc3f10995fc", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/ib-split/whitespace-present-1-ref.html", - "==" - ] - ], - {} - ] - ] - }, "masking": { "clip-path-borderBox-1a.html": [ "ee48c800152714f3f3f0cd8ff3daf05b948415dd", @@ -247702,307 +250717,6 @@ ] ] }, - "will-change": { - "will-change-fixpos-cb-contain-1.html": [ - "3bb3afee3b79ff79664501f75b31b01bdad503e8", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-filter-1.html": [ - "afb03e8becc34d9cae1ee7ea38583de221b81e5d", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-height-1.html": [ - "892e6d4541ac2e00a365ab22ef6e246a9b8ccd11", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-offset-path-1.html": [ - "0fe1ec1da798479cdf0c43d3d7f8ee506b796e47", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-perspective-1.html": [ - "4a394f9958fec7021c5eab39dcacbe31902fe6e5", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-position-1.html": [ - "7e52ab4b038ce14419590e341e8f26775fcc3535", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-transform-1.html": [ - "92632cd62d47b3718e2c529f6d3101192af99b7c", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-transform-style-1.html": [ - "808f7d8cd0957e2f157b327ce6a29b384640391b", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-fixpos-cb-translate-1.html": [ - "7ff0dfe768a43d06740dd2fb338aab855ff0a175", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-clip-path-1.html": [ - "673d1a895b5a62ad205c10a5883c5862e171eee6", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-filter-1.html": [ - "0f87768db1ca1fa870ddd3b32568d8ba203ff047", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-height-1.html": [ - "3ce0e61588a43f49123f7525b055d7b1cdb7b477", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-isolation-1.html": [ - "9eaf812e937d1e571c9259060e05ce0aad4118d4", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-mask-1.html": [ - "77ec10caa97f12198bc71e7240b152c67de1219a", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-mix-blend-mode-1.html": [ - "ae13ac6b668889785ba51e778ee64ab15df24379", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-offset-path-1.html": [ - "07277b66d92f74e0d8df1d934ff213efd78c9ab4", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-opacity-1.html": [ - "2bff6676a7171e9132f7d4168d5ee2ad7c3b0f62", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-perspective-1.html": [ - "3a6863220f7dbc34ca2565bd201092d89a9b8dbd", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-position-1.html": [ - "a244b7c2c55ccf1109fdb852bfd05b288a149336", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-transform-1.html": [ - "1b55d1f7aad334de89748c953edc97551f15cbfa", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-transform-style-1.html": [ - "f8e50c60c13ee88005d5e2821d03ba28f0cc5db7", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-translate-1.html": [ - "1e1e8355d6c54e845d36fc708bbcd1eba782cea2", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ], - "will-change-stacking-context-z-index-1.html": [ - "bcb9ea0a1d62a1ceeb5b6e60e7f90b97bf5b03ed", - [ - null, - [ - [ - "/css/vendor-imports/mozilla/mozilla-central-reftests/will-change/green-square-100-by-100-ref.html", - "==" - ] - ], - {} - ] - ] - }, "writing-modes-3": { "dynamic-offset-rtl-001.html": [ "b13907cd28faa74cca74fe5612bf48c665d711c9", @@ -248350,6 +251064,45 @@ ], {} ] + ], + "image-set-001.html": [ + "cb155806512b40e5b702b745ec440616231e64fb", + [ + null, + [ + [ + "/density-size-correction/image-set-001-ref.html", + "==" + ] + ], + {} + ] + ], + "image-set-002.html": [ + "bbb06fa342918ae565dd133337bd67c18641a31c", + [ + null, + [ + [ + "/density-size-correction/image-set-002-ref.html", + "==" + ] + ], + {} + ] + ], + "srcset.html": [ + "4f3133ea4f27910334bb737b7e1f099cbc4f8e95", + [ + null, + [ + [ + "/density-size-correction/srcset-ref.html", + "==" + ] + ], + {} + ] ] }, "document-policy": { @@ -248531,7 +251284,7 @@ "forced-colors-mode": { "backplate": { "forced-colors-mode-backplate-01.html": [ - "05d362328a30c22324870626766a2f2c71465b5d", + "7aeb12a52c0ba34189f67de4b0c395a78ebce44b", [ null, [ @@ -248544,7 +251297,7 @@ ] ], "forced-colors-mode-backplate-02.html": [ - "cf521533c9e244d43edbb586cc66ffa22bb82bc6", + "1643a6eef32a8b55da4bd42b4a62d8b2a7bac989", [ null, [ @@ -248557,7 +251310,7 @@ ] ], "forced-colors-mode-backplate-03.html": [ - "936332a2d17be8800d1771e01c84dc0a3dc02662", + "f8c8f349bac4139b49b5bda0793b3717c99a3fc8", [ null, [ @@ -248570,7 +251323,7 @@ ] ], "forced-colors-mode-backplate-04.html": [ - "c9b8136fdf9b8179ff5b60231532b3ed6c7c4476", + "be3ab4bd1fa6be44d88d8a60867d777185afa6ea", [ null, [ @@ -248583,7 +251336,7 @@ ] ], "forced-colors-mode-backplate-05.html": [ - "69ab33b23eb3a74232eaf6708da4f5be4488f522", + "7d8f8057cfe2872c7ea1b658263ae8184505b3bc", [ null, [ @@ -248596,7 +251349,7 @@ ] ], "forced-colors-mode-backplate-06.html": [ - "c45a25a540b12fcbd87e078d5d084d65f57bbf85", + "49a8429c01a04262c28aef280d658978e2193b16", [ null, [ @@ -248609,7 +251362,7 @@ ] ], "forced-colors-mode-backplate-08.html": [ - "829d73900ce3eba7173e129558256cfdfd5a78c3", + "2049e3e383d0b12609a81e347ec524d73646c992", [ null, [ @@ -248622,7 +251375,7 @@ ] ], "forced-colors-mode-backplate-09.html": [ - "4e9f517e08f3a16bbdc5b850305e4e0bfd7a7ee2", + "467a23c17cc58c0a0d5223a88e9d8496539a4c1d", [ null, [ @@ -248635,7 +251388,7 @@ ] ], "forced-colors-mode-backplate-10.html": [ - "cc7f977212bea378864c3668d57e57593ed190c1", + "db6c5adc298cb12e9b8fcd940ba3e25f8d36eb1d", [ null, [ @@ -248648,7 +251401,7 @@ ] ], "forced-colors-mode-backplate-11.html": [ - "b81b52282e95377c6a5ccbf1c540c880953c7b9a", + "a43f79db5168f700a95de90e675a359cc39f89c7", [ null, [ @@ -249398,6 +252151,90 @@ ] ] }, + "fill-and-stroke-styles": { + "conic-gradient-rotation.html": [ + "e8b213b3d83d416bac353693747f3d06b9e8b64f", + [ + null, + [ + [ + "/html/canvas/element/manual/fill-and-stroke-styles/conic-gradient-rotation-expected.html", + "==" + ] + ], + {} + ] + ], + "conic-gradient.html": [ + "73fcf6c23efaccbb56d937693b15e52012ec12fa", + [ + null, + [ + [ + "/html/canvas/element/manual/fill-and-stroke-styles/conic-gradient-expected.html", + "==" + ] + ], + {} + ] + ] + }, + "filters": { + "canvas-filter-object-blur.html": [ + "b95712bf3a64ecdd34a48830acb3fa4be8462ee1", + [ + null, + [ + [ + "/html/canvas/element/manual/filters/canvas-filter-object-blur-expected.html", + "==" + ] + ], + {} + ] + ], + "canvas-filter-object-component-transfer.html": [ + "30dff089a6ae2cf81977ce7ff79d85f472b218bd", + [ + null, + [ + [ + "/html/canvas/element/manual/filters/canvas-filter-object-component-transfer-expected.html", + "==" + ] + ], + {} + ] + ], + "canvas-filter-object-convolve-matrix.html": [ + "157deec7a160317bb6ee6cde77047e71b9b64150", + [ + null, + [ + [ + "/html/canvas/element/manual/filters/canvas-filter-object-convolve-matrix-expected.html", + "==" + ] + ], + {} + ] + ] + }, + "imagebitmap": { + "imageBitmap-from-imageData-no-image-rotation.html": [ + "e93c17c8e857d940f632ead6d6ee3fe7be505d75", + [ + null, + [ + [ + "/html/canvas/element/manual/imagebitmap/imageBitmap-from-imageData-no-image-rotation-expected.html", + "==" + ] + ], + {} + ] + ] + }, "line-styles": { "canvas_linestyles_linecap_001.htm": [ "583dbc9d134682a778569877e38513e07736dd82", @@ -251094,6 +253931,19 @@ ] }, "form-controls": { + "input-placeholder-line-height.html": [ + "7af4e65b09fe519e41c3e513ba2097e22281e055", + [ + null, + [ + [ + "/html/rendering/non-replaced-elements/form-controls/input-placeholder-line-height-ref.html", + "==" + ] + ], + {} + ] + ], "select-sizing-001.html": [ "e8db3eae1d28acbb2eff0f8906e0cf253f966bdd", [ @@ -252690,6 +255540,19 @@ {} ] ], + "number-placeholder-right-aligned.html": [ + "c1c695ffcac24d637025b1d43dcb7ddd1c04155b", + [ + null, + [ + [ + "/html/rendering/replaced-elements/attributes-for-embedded-content-and-images/number-placeholder-right-aligned-ref.html", + "==" + ] + ], + {} + ] + ], "object_border_perc.xhtml": [ "3663e9ce61d5d9b3679c91dde2d15d3feca2704f", [ @@ -252744,6 +255607,19 @@ {} ] ], + "tall-cross-domain-iframe-in-scrolled.sub.html": [ + "43b9d7ae32c7eb0856867d70b33bd2bc77afa03e", + [ + null, + [ + [ + "/html/rendering/replaced-elements/embedded-content/tall-cross-domain-iframe-in-scrolled.sub-ref.html", + "==" + ] + ], + {} + ] + ], "video-controls-vertical-writing-mode.html": [ "d124396ab2c0383febe73c557e94dfd1e6401ace", [ @@ -252991,6 +255867,58 @@ {} ] ], + "summary-display-flex.html": [ + "c495516cf3dabd27952f44293c5b39629bd56c64", + [ + null, + [ + [ + "/html/rendering/the-details-element/summary-display-flex-ref.html", + "==" + ] + ], + {} + ] + ], + "summary-display-grid.html": [ + "934b4ff595e8d1be8819a9b117ebf7514f5bfeae", + [ + null, + [ + [ + "/html/rendering/the-details-element/summary-display-grid-ref.html", + "==" + ] + ], + {} + ] + ], + "summary-display-inline-flex.html": [ + "2c935e42b8669c55714de9b1863b73698dd484a0", + [ + null, + [ + [ + "/html/rendering/the-details-element/summary-display-inline-flex-ref.html", + "==" + ] + ], + {} + ] + ], + "summary-display-inline-grid.html": [ + "3578f050e2b82138c0df0a39f1e7384346e2cb4c", + [ + null, + [ + [ + "/html/rendering/the-details-element/summary-display-inline-grid-ref.html", + "==" + ] + ], + {} + ] + ], "summary-display-list-item.html": [ "c2e96e987ea943e29626e0cfd013ef6d6cae3bbc", [ @@ -253891,6 +256819,50 @@ ] ] }, + "the-selectmenu-element": { + "selectmenu-option-arbitrary-content-displayed.tentative.html": [ + "969d1eb1466d87f7431aad83b3660a2e6a850401", + [ + null, + [ + [ + "/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed-ref.tentative.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 10 + ] + ] + ] + ] + } + ] + ], + "selectmenu-option-arbitrary-content-not-displayed.tentative.html": [ + "01d389c18507d153203490458b4e5879e12ee3b4", + [ + null, + [ + [ + "/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-not-displayed-ref.tentative.html", + "==" + ] + ], + {} + ] + ] + }, "the-textarea-element": { "multiline-placeholder-cr.html": [ "08d0982ba53ac4e21a419c2aacc8540e890418e7", @@ -254347,7 +257319,7 @@ "interactive-elements": { "the-popup-element": { "popup-hidden-display.tentative.html": [ - "8a070b9d479a55e231db0da68996fe065a16cbe6", + "b313f06f664d35ca86e98a2361c04e329964e02a", [ null, [ @@ -254359,8 +257331,21 @@ {} ] ], + "popup-initiallyopen-display.tentative.html": [ + "64589e5267a1959e9a8c5fec6053554a9bd71231", + [ + null, + [ + [ + "/html/semantics/interactive-elements/the-popup-element/popup-initiallyopen-display-ref.tentative.html", + "==" + ] + ], + {} + ] + ], "popup-inside-display-none.tentative.html": [ - "745403da5ff35676ace0cc49a0fc9c4f36ead55e", + "0b9fcc5427caf5781a3e4dfeaccf71f2a99fb5fd", [ null, [ @@ -254373,7 +257358,7 @@ ] ], "popup-open-display.tentative.html": [ - "7c5bf44b779470526b4f3e53494f019bd7f7d75a", + "792cc09d071a699437f41131d6e75a375282ed0a", [ null, [ @@ -254386,7 +257371,7 @@ ] ], "popup-open-overflow-display.tentative.html": [ - "b2780b7af362316558181710e2ddd198c69495bb", + "ebe95d8544daf1d8b30f33258911bbab33e827b7", [ null, [ @@ -254397,6 +257382,19 @@ ], {} ] + ], + "popup-stacking-context.tentative.html": [ + "74cdcadd2369aa3e73d47a9c7178e50ff5f8a141", + [ + null, + [ + [ + "/html/semantics/interactive-elements/the-popup-element/popup-stacking-context-ref.tentative.html", + "==" + ] + ], + {} + ] ] } }, @@ -254833,7 +257831,7 @@ ] ], "data-xhtml-with-dtd.html": [ - "fd29905ea30ed987c8d634c7f6df2e9e5e517e96", + "3672ef6184f9fd918d29264083dae28713b6d9de", [ null, [ @@ -255792,7 +258790,7 @@ }, "fractions": { "frac-bar-001.html": [ - "9fc441230588216f5f5b20eab36b465c48cbb41b", + "a607baa0f8f426307add34595baa6b4975247ea5", [ null, [ @@ -255805,7 +258803,7 @@ ] ], "frac-bar-002.html": [ - "ccf1bd904e77bf04c71fcab760a708f5aaaeed04", + "6ddd429434661eb4a4b334a77cddb8128b4d691d", [ null, [ @@ -256013,7 +259011,7 @@ ] ], "frac-parameters-gap-001.html": [ - "98fd807f91d35af3bfe2994d9283db5a185b357f", + "0ba6199753a07b72dfa37b700809373a98cce385", [ null, [ @@ -256026,7 +259024,7 @@ ] ], "frac-parameters-gap-002.html": [ - "2bc848b415c9f69c08baff65993f515ea70ec0a7", + "a55a141e99056c1e13a2f91f32cdf38509ac57b4", [ null, [ @@ -256039,7 +259037,7 @@ ] ], "frac-parameters-gap-003.html": [ - "44c4cf63e35a55a627746a6ab74ad9391399724e", + "213b1593659f27499e0e1b81e4bd76a6e48a3846", [ null, [ @@ -256052,7 +259050,7 @@ ] ], "frac-parameters-gap-004.html": [ - "431b0af4fff241640a53e3b70820b0e10eee4f99", + "938697dce6939df55f82935533ff19d908711f3f", [ null, [ @@ -256065,7 +259063,7 @@ ] ], "frac-parameters-gap-005.html": [ - "3be779734043dcded8a93761ed8bdfa13238220e", + "b82da688460236c9435102c9632315bc9b1e3520", [ null, [ @@ -256078,7 +259076,7 @@ ] ], "frac-parameters-gap-006.html": [ - "783696ace5ffcb0e0c9316b35dccec09abf9f045", + "fed106f5a8f4960fd994172fb8f97dbb04e126c9", [ null, [ @@ -256372,7 +259370,7 @@ }, "radicals": { "dynamic-radical-paint-invalidation-001.html": [ - "5ff82f51271197af5d1502bd3e80d18666bd93ad", + "8d7f1b71dd431a65d320c14c0be90faac9597d02", [ null, [ @@ -256603,7 +259601,7 @@ ] ], "color-005.html": [ - "aaf8fece6229959723cdcc3d9193baf1b4490528", + "edcd10c669856ca7ee0c90503d72caab48a0126d", [ null, [ @@ -256655,7 +259653,7 @@ ] ], "displaystyle-013.html": [ - "2ed4559908bc4e66aed227708eefb68646ddf517", + "46f84ba56146e975e9877b060751f9a461792b97", [ null, [ @@ -256668,7 +259666,7 @@ ] ], "displaystyle-014.html": [ - "1e70cb66f3f15a2e52b3b6006329f85e2ef93731", + "597932dc17672baed74b66139fa27a14903c900d", [ null, [ @@ -257268,7 +260266,7 @@ ] ], "visibility-005.html": [ - "1bc3e595a36c1c96593bebdd3d951452e060f9c1", + "60532164ad1deb9215470628915c3e74da69fbfc", [ null, [ @@ -257931,6 +260929,36 @@ ] ] }, + "selection": { + "caret": { + "collapse-pre-linestart-1.html": [ + "6863456f06e0173789634eff5a8ec22035f91388", + [ + null, + [ + [ + "/selection/caret/collapse-pre-linestart-ref.html", + "==" + ] + ], + {} + ] + ], + "collapse-pre-linestart-2.html": [ + "ac119cbb3167ee5e5f88742420d849b15dd58664", + [ + null, + [ + [ + "/selection/caret/collapse-pre-linestart-ref.html", + "==" + ] + ], + {} + ] + ] + } + }, "service-workers": { "service-worker": { "svg-target-reftest.https.html": [ @@ -258061,7 +261089,7 @@ }, "reprojection": { "reprojection-001.html": [ - "8bd2bb6f6d8515857c8aa0e8be5d4c84ee5dc51b", + "e2f5212b9a6fcee00a21327a7fcee260d506b172", [ null, [ @@ -258075,7 +261103,7 @@ ] }, "shadow-root-001.html": [ - "67843b0678334768e71e8e660d63cede8f32c735", + "99cacded05b8ed99b4f379b4661bef8840bc723f", [ null, [ @@ -258088,7 +261116,7 @@ ] ], "shadow-root-002.html": [ - "24d5d016b91a50f1b794c62b81e6ace1d8dd04ba", + "a26e817aaec543312fd65792991e1e714a38b6f6", [ null, [ @@ -258103,7 +261131,7 @@ }, "styles": { "not-apply-in-shadow-root-001.html": [ - "7c27d98d4af5f02a532ef0c5b55f885f8bb81d0a", + "99c130ef59a0444c024dd903d1862bf470c8d5b4", [ null, [ @@ -258202,6 +261230,19 @@ {} ] ], + "image-embedding-svg-with-fractional-viewbox.svg": [ + "6e37c7b7b64ba3e82a20b714ef868f243dc868a6", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], "image-embedding-svg-with-viewport-units-inline-style.svg": [ "7ef2655dc91c815d57d1496d2e5707d54ac94c5d", [ @@ -258413,6 +261454,19 @@ {} ] ], + "scroll-transform-nested-stacked-children.html": [ + "d57289f02c14babc776077802ecb18e540c8924d", + [ + null, + [ + [ + "/svg/extensibility/foreignObject/scroll-transform-nested-stacked-children-ref.html", + "==" + ] + ], + {} + ] + ], "stacking-context.html": [ "dfad5a175fb4955a0a73c97e0fe5b24fdffef558", [ @@ -259377,6 +262431,19 @@ ] ] }, + "subpixel-clip-path-transform.html": [ + "62f07de8209a63501629c5c5d1e47e0a9691962d", + [ + null, + [ + [ + "/svg/painting/subpixel-clip-path-transform-ref.html", + "==" + ] + ], + {} + ] + ], "svg-child-will-change-transform-invalidation.html": [ "962ba5abeb7ca711551fdf30de45de81083e58ae", [ @@ -259390,6 +262457,32 @@ {} ] ], + "text-clip-path-transform.html": [ + "cf1a52de8a32b122fcb313a98acf0b3e1d5aefe0", + [ + null, + [ + [ + "/svg/painting/text-clip-path-transform-ref.html", + "==" + ] + ], + {} + ] + ], + "text-mask-transform.html": [ + "9d6a7a476722c462cee54e9aa76c111ac464bf01", + [ + null, + [ + [ + "/svg/painting/text-clip-path-transform-ref.html", + "==" + ] + ], + {} + ] + ], "will-change-under-mask.html": [ "feed381d0a64fbb195a6c54e58a75060721f8ce4", [ @@ -259609,6 +262702,32 @@ ] }, "property": { + "marker-path.svg": [ + "c03e9c515c478dc6c46521b0867ec714d55e13e9", + [ + null, + [ + [ + "/svg/path/property/marker-path-ref.svg", + "==" + ] + ], + {} + ] + ], + "mpath.svg": [ + "c4233b17050d30fa09eda0ebe3c952a34c6c78bb", + [ + null, + [ + [ + "/svg/path/property/mpath-ref.svg", + "==" + ] + ], + {} + ] + ], "priority.svg": [ "ef187c191369e894920c7dc38b47d5cc4b984f01", [ @@ -264044,11 +267163,7 @@ }, "support": { ".azure-pipelines.yml": [ - "29b19e5726c3b7bc1f33cbbd57ff59b3dd74c489", - [] - ], - ".codecov.yml": [ - "904cf85a4fd7576bb470172ade7317de94435dd0", + "da7ab390890ca1fc5814e0c9c21e85bba81a3b81", [] ], ".git": [ @@ -264065,24 +267180,28 @@ [] ], "dependabot.yml": [ - "bf513bd1e445dd0c3e01035c8dd02ed3ae6ecaca", + "e0ee656db1bba3e568c0c8d1b2b03c45f589405b", [] ], "workflows": { "documentation.yml": [ - "b8bf7972b0f7666f8a01a81b05e8dec432732225", + "14b17916c1e2b981f13f1d7282f3e00aba0bbca5", [] ], "epochs.yml": [ - "a605a818c5f390212b5962c270ae0e9e33663b96", + "4ab98ffcb1137114311cfd6982bdf8a6166df678", + [] + ], + "interfaces.yml": [ + "70c349c67461a2fc3abfab7744ba848707e24988", [] ], "manifest.yml": [ - "3210c703b1d8f89371c84716fdc836c4b7508cdb", + "3d08dd9882c5cdd0855ab992d94b293a05577549", [] ], "regen_certs.yml": [ - "33699d833aad7cc0f96893d31b9f5f7a9b5576fa", + "aa592926e841266af2b7cadb1021b207d0af6236", [] ] } @@ -264095,10 +267214,6 @@ "5293948fc2311eb9b900a89a5b57e30f5c5c8eb2", [] ], - ".pyup.yml": [ - "05bee451e2f8891f235313f867be88bbc3ff3a14", - [] - ], ".taskcluster.yml": [ "c5e3a68087123737fc8ab2ba930ee8d4d7587d0e", [] @@ -264175,7 +267290,7 @@ "file": { "resources": { "echo-content-escaped.py": [ - "f35d069acac9c5cfe4d15fcf9a83288a72c375db", + "5370e1e46ac8071f564fb1582ab40492a08f50ec", [] ] } @@ -264222,7 +267337,7 @@ [] ], "send-file-formdata-helper.js": [ - "53572ef36c8d1b17037117d988c64e8b4fbc2a73", + "53c8cca7e09b8e8c039828ebcdcb21293fb2699e", [] ], "upload.txt": [ @@ -264300,6 +267415,10 @@ [] ] }, + "serialize-sharedarraybuffer-throws.https.html.headers": [ + "5f8621ef83660c66f0d037ea28fafefb558140f1", + [] + ], "support-promises.js": [ "9128bfe151ab9cda59ff6e3d4487024b0b7cd0cb", [] @@ -264310,16 +267429,16 @@ ] }, "LICENSE.md": [ - "ad4858c8745cfa1b330a52d27c621a09aa3112e0", + "39c46d03ac2988226f949ee7ab3c7347d5481bd8", [] ], "README.md": [ - "96fdf8d770f566e145c8dd0a31e01e184778ecf0", + "5946646c9f5c4e4de7939f526aef4f91a9bc0148", [] ], "WebCryptoAPI": { "META.yml": [ - "7cae5c0f90396f6e3a0bcd5f34935550f08c4b84", + "27a11a1fe47c39baa6f8ea9390f4e9be1777e77e", [] ], "README.md": [ @@ -264354,7 +267473,7 @@ }, "digest": { "digest.js": [ - "c557d96ac4bd663b4f880009a01994b8161a05e3", + "ea341d36fb6652cfb4618c31f5ddf63a10ab5eb0", [] ] }, @@ -264446,7 +267565,7 @@ }, "util": { "helpers.js": [ - "c13ce9146e2b283d45294ddc08cf490a770a1200", + "fecd8733c0b26a37d6622c2f60405265ebb719cd", [] ], "worker-report-crypto-subtle-presence.js": [ @@ -265135,7 +268254,7 @@ }, "animation-worklet": { "META.yml": [ - "7a53b4d76d2c41ece6d9acc86482f92a28173e03", + "88e7d924aa67645938190a6570f5026233779702", [] ], "common.js": [ @@ -266242,7 +269361,7 @@ }, "tools": { "make_tests.py": [ - "615d8b6403daffd7cdabbca42fd4e195c34229d6", + "e8bb1aec5a77e697bd9dbc2f23a301dd6ba2bae3", [] ], "samples": { @@ -266572,13 +269691,9 @@ [] ] }, - "requirements.txt": [ - "f800ea081e43d57f138fe5b5fccab23dd582fc9c", - [] - ], "tools": { "protocol-server.py": [ - "176d90c4848987c2302bdd27e2d0dd4ab9c9e414", + "e5d121000177a27176194d860bba9bd003b9bc20", [] ] } @@ -266964,7 +270079,7 @@ [] ], "utils.js": [ - "dbe041941d093e3c91472c410d506d40a466fe45", + "10895c3ccfc012c0e0ecd1d9ffa820a86c3ef142", [] ] }, @@ -267064,7 +270179,7 @@ ], "resources": { "bluetooth-fake-devices.js": [ - "c4d699ad40a5bbf3a105cf7335b8b30c383f08ee", + "bc142aa4de8e017580c07d03ad471b71a4eb3d92", [] ], "bluetooth-scanning-helpers.js": [ @@ -267253,15 +270368,15 @@ [] ], "accept-ch-cache-revalidation.https.html.headers": [ - "6f01afb921bd98c7de89fc1f1054db49b7a12ed8", + "ed61fa27203ade74e305ee4d1dbf41a626c0d42c", [] ], "accept-ch-feature-policy-navigation.https.html.headers": [ - "557140f8f2d821e031e23c10f94aa65a7c283254", + "5f5f807c1df420cd1f0f7895275558119b905acb", [] ], "accept-ch-feature-policy.sub.https.html.headers": [ - "cf453cf368ddfb8096a62ad9720af877480bcc07", + "d620a5b8253f4b8283945949ea512f9af23311d4", [] ], "accept-ch-malformed-header.https.html.headers": [ @@ -267430,7 +270545,7 @@ [] ], "echo-client-hints-received.py": [ - "ca623d40f88305bb2bb5101612465bb25db6a021", + "ef750bddf7d39329b67025cdec56858f65429bd2", [] ], "echo-ua-client-hints-received.py": [ @@ -267450,7 +270565,7 @@ [] ], "feature-policy-navigation.js": [ - "4487d9a447313f87dd2f230ce7d858b38008fae8", + "b8d6fd6c44de343a0083744dc195ae08c00af140", [] ], "iframe-accept-ch-lifetime.html": [ @@ -267470,12 +270585,12 @@ [] ], "stale-echo-client-hints.py": [ - "664f7c4c15d08a8ae608c05b0051b8aba6a1a5d1", + "51e09b887a2b6df1abde21a9012a616c9814942c", [] ] }, "sec-ch-quotes.https.html.headers": [ - "7ce8173856179f3758adf4a671582e2fa28a9880", + "abec79a3582a6de1cba0601332e4abb76618a265", [] ], "service-workers": { @@ -267627,7 +270742,7 @@ [] ], "get-host-info.sub.js": [ - "8f37d557583b99235b7a1fa903e54e96f90b9870", + "9b8c2b5de63f282663cab92231fe1c35184e6f02", [] ], "get-host-info.sub.js.headers": [ @@ -267679,7 +270794,7 @@ [] ], "sab.js": [ - "d40dd7cca8da10ad321067e638c772550f1a042f", + "47d12970d393c1291907c7079a0256965b267971", [] ], "security-features": { @@ -267739,11 +270854,11 @@ [] ], "font.py": [ - "6e33dbbc35a6334586a83fe0762f6b6cb8112e21", + "7900079cdf32747ee591880bae0317ca36a8f03e", [] ], "image.py": [ - "6991224717e70becbd45709461a3f807c40b2081", + "5c9a0c063c367cf7cdc000a88c381d886681068d", [] ], "referrer.py": [ @@ -267759,7 +270874,7 @@ [] ], "static-import.py": [ - "435753eefb6215699dce9f6201c723055cd31949", + "717d3de6b186b20b1b5fcbfcb361e24168feda15", [] ], "stylesheet.py": [ @@ -267767,7 +270882,7 @@ [] ], "subresource.py": [ - "0416c324b31de08fe95bd955129793c6d750324c", + "b3c055a93a58c6e92adac7033ff186193464c0e9", [] ], "svg.py": [ @@ -267870,6 +270985,10 @@ [] ] }, + "slow-redirect.py": [ + "85c80e08446c93694fc73fada200fb563691ac97", + [] + ], "slow.py": [ "5329a04ed2d7b8a8de09673d9d8a5d3768f3cb5a", [] @@ -268031,13 +271150,19 @@ } } }, + "compute-pressure": { + "README.md": [ + "9766bb075f3618a8b8b1a5849916c1be8c9d6245", + [] + ] + }, "conformance-checkers": { "META.yml": [ "9b8c31d67eeac86ab7c5875d63d16cac965aafcc", [] ], "Makefile": [ - "f7774341cb50ef3acb37b20d9d8874e8dd8edfea", + "53e7d60cf9c39db9de45765246633809ceea0dd5", [] ], "README.md": [ @@ -268386,7 +271511,7 @@ ] }, "href-isvalid.html": [ - "504ec6e37be033398c883555ac0f64aec31c8979", + "9224c29ce12bb9d3bb10f855153c784a8f676461", [] ], "media-novalid.html": [ @@ -268694,7 +271819,7 @@ [] ], "href-isvalid.html": [ - "ea068dccf96f6a7fb8658472455dc0cb2ee779b4", + "9f6b8c4b596c84450d96f5bd8a5f2b500e1049db", [] ], "media-novalid.html": [ @@ -268982,7 +272107,7 @@ [] ], "src-isvalid.html": [ - "c13d03b61783244b4ba18ebd3223eab22f0683b2", + "d6b71e0e025992c81c982fb2ed8bf2078e21bf20", [] ], "src-whitespace-only-novalid.html": [ @@ -269892,7 +273017,7 @@ [] ], "cite-isvalid.html": [ - "03d498272176c90fa2baf4d26f1e4dd8e3ff266c", + "657b9be378e443d852a9b62bd97a9d0cc652c87b", [] ], "model-isvalid.html": [ @@ -270178,7 +273303,7 @@ [] ], "formaction-isvalid.html": [ - "70e3ded983c8c5d244256f6f94df602118994ab6", + "4697ae83179734cd0e9e7d3189b766eb0c128fc7", [] ], "formaction-whitespace-only-novalid.html": [ @@ -270486,7 +273611,7 @@ [] ], "cite-isvalid.html": [ - "380207babb756f630fd5fb814d75a8b05c4ab702", + "4fb0d3b03ce032abbcc41a374c54fa051429226e", [] ], "date-0004-02-29-haswarn.html": [ @@ -270654,7 +273779,7 @@ [] ], "datetime-isvalid.html": [ - "3dff10cc0d50a9be2f97d339bc7ee69ae201d86a", + "cfb960c784414d1c81b433516f7da423d550a46d", [] ], "duration-P-form-novalid.html": [ @@ -270889,6 +274014,10 @@ "1c2fde9cd6a52d3edff919ef28d64ff6b50f7a45", [] ], + "aside-in-dt-novalid.html": [ + "b08c05b7f397f124e329b4c37d9d4c83b6fa01b1", + [] + ], "dd-in-template-novalid.html": [ "3c4ddbdae19b96b3dab03ba9c0dd4ae312d046e5", [] @@ -270934,7 +274063,7 @@ [] ], "dl-isvalid.html": [ - "9bd331c913990c99cf8048992ea25f54d7d3bc43", + "822ef9372b4b2f71e31d76f2adabcb1dde343ecc", [] ], "dt-in-template-novalid.html": [ @@ -271300,7 +274429,7 @@ [] ], "src-isvalid.html": [ - "4b6e213ecfa666900811715999ff8392ce2d7344", + "db0593686ae6d8a35c29912a184b86b99fe4d4fe", [] ], "src-whitespace-only-novalid.html": [ @@ -271590,7 +274719,7 @@ [] ], "action-isvalid.html": [ - "a7fb1360d922d46dcfe086fc802c48f515d3057f", + "91082ba0b4cd5b366642b271465dad18ae937610", [] ], "action-whitespace-only-novalid.html": [ @@ -271960,7 +275089,7 @@ [] ], "src-isvalid.html": [ - "a0bbcbe4eb040722d78c5e410e8045ecf7d8e3ef", + "232333c0dc96cc4f0ec3b7dff29f7b2b1fe28736", [] ], "src-whitespace-only-novalid.html": [ @@ -272240,7 +275369,7 @@ [] ], "src-isvalid.html": [ - "0837cfe1e366813811e4b099a84183116124a23a", + "1867e55db57b18ce2f12db9b9dadda4077b58403", [] ], "src-whitespace-only-novalid.html": [ @@ -272556,7 +275685,7 @@ [] ], "type-image-formaction-isvalid.html": [ - "ea797c3b94d756373330d4714473112630cb0a3d", + "dd375f2ba836d01d2d615606daf701594f892bb2", [] ], "type-image-formaction-whitespace-only-novalid.html": [ @@ -272826,7 +275955,7 @@ [] ], "type-image-src-isvalid.html": [ - "0d744c002ad67f628a72e7affcfb4e1c842fe6b2", + "dbcb14830ef1c5cff87d2ccb8b0dfcff65c160b3", [] ], "type-image-src-whitespace-only-novalid.html": [ @@ -273096,7 +276225,7 @@ [] ], "type-submit-formaction-isvalid.html": [ - "332b92065e1f5c0a9fe1d7c17009d283e318050b", + "891ad230e010622a77f1caca9333282a042f2e4d", [] ], "type-submit-formaction-whitespace-only-novalid.html": [ @@ -273406,7 +276535,7 @@ [] ], "type-url-value-isvalid.html": [ - "93f5eb5cc70527f1d2171956f63f4992eb441505", + "d5de5adf541fa67c9fdfe75c756cd3e069f514e7", [] ] }, @@ -273674,7 +276803,7 @@ [] ], "cite-isvalid.html": [ - "64c2d189e67b0b39201ba60ce8a59e9f89c0f257", + "b7c315342c23b345ff068d11b64eb2e6bfa70bd9", [] ], "date-0004-02-29-haswarn.html": [ @@ -273842,7 +276971,7 @@ [] ], "datetime-isvalid.html": [ - "e9f6daf621f3aed54c6690ac12ca27fb2e5abb34", + "85862d67ba5d3c523715aee53b02461349d8c9ba", [] ], "duration-P-form-novalid.html": [ @@ -274384,7 +277513,7 @@ [] ], "href-isvalid.html": [ - "fd4bd484a8a17a286cf31a905203cfb779b08a59", + "3635f92a634127acd9d838a558779a7083cbc161", [] ], "href-missing-novalid.html": [ @@ -274422,7 +277551,7 @@ [] ], "refresh-isvalid.html": [ - "8b3f499690f6521e8dd3d4b5a29deedfe0b1007e", + "5313bcab89ab78bd36f13948514c6237e15d43f9", [] ] }, @@ -274696,7 +277825,7 @@ [] ], "data-isvalid.html": [ - "a4b3d4fbacd732484f801fa2bef0b83b17f4ecb5", + "4af55f53af38474c63c0f1284beaaefe856b84d7", [] ], "data-type-missing-novalid.html": [ @@ -275094,7 +278223,7 @@ [] ], "picture-isvalid.html": [ - "efc4d4023eb0c8f3adb46f57f0f1fa298461de19", + "31c6bd5bd5192f25b607904fcdaf469c3773db01", [] ], "picture-longdesc-novalid.html": [ @@ -275836,7 +278965,7 @@ [] ], "cite-isvalid.html": [ - "0f4f7391fd53f1c740259f6f2ded4dea9f59ba04", + "c7139fc711cbb30faea2b79c84566e0a5d92ae43", [] ], "model-isvalid.html": [ @@ -276142,7 +279271,7 @@ [] ], "src-isvalid.html": [ - "752e2d266f56eabc2072c533cc7d371436e674a8", + "d78edda46cec28eeb0fa722f3f98bcaded737a20", [] ], "src-whitespace-only-novalid.html": [ @@ -276436,7 +279565,7 @@ [] ], "src-isvalid.html": [ - "138463d951d737e7c54191261468dbb55a6016b3", + "21e39d8596bc6db465297139ba07ca929962c24c", [] ], "src-whitespace-only-novalid.html": [ @@ -276834,7 +279963,7 @@ [] ], "src-isvalid.html": [ - "190eec7e8af4adecfcfe95646383f2a28a8ec127", + "e771465c40141eb23564980cf86f9529d5b89948", [] ], "src-whitespace-only-novalid.html": [ @@ -277140,7 +280269,7 @@ [] ], "poster-isvalid.html": [ - "01e32e775d0492efd28bef83a6ac3b2dd20b1144", + "4e8606471c294125bec753dc4676cc362718e4e7", [] ], "poster-whitespace-only-novalid.html": [ @@ -277406,7 +280535,7 @@ ] }, "src-isvalid.html": [ - "d7a85fe4587a979aa3af7a38d11b3292be2899e8", + "5e419bd803f33c1a63ae9edc34117b2da2cc11d6", [] ] } @@ -277885,7 +281014,7 @@ [] ], "itemid-isvalid.html": [ - "26ac06797eb5ddf262e929eabc3d9faf9a0215ed", + "0c09810d4787e359621a2e4c35b8ba5bd7769fdf", [] ], "itemid-scheme-data-contains-fragment-haswarn.html": [ @@ -278179,7 +281308,7 @@ [] ], "itemtype-isvalid.html": [ - "81538abebdd63d382679aaf034e3d683ad5e7dd0", + "29d4eeb0b8596b2f87920e780d145bfde23909f9", [] ], "itemtype-scheme-data-contains-fragment-haswarn.html": [ @@ -285599,24 +288728,24 @@ ] }, "tools": { - "build-svg-tests.py": [ - "dd3aa3844e9093cd3970e03677eed748a7df7509", + "build.sh": [ + "66143fd83ce2c8f2508a64621be80af2be5eff95", [] ], "dl.py": [ - "7b6beeb97e658bbff88102f523f80984b98daaa8", + "b0e14f18c05ab0c68160ad56f63333fd47a3f50e", [] ], "ins-del-datetime.py": [ - "88ccc443d805102c521c665ece0722be4a231a74", + "d169a2fe0f9071ce7da1f5020b442df607f7410b", [] ], "picture.py": [ - "417eff14368fe057e0415363ae89531b31fd03a3", + "14b8a65eb32a8acb522f79b03ad09ecdab625a82", [] ], "url.py": [ - "af89c80f994fea707b21f91d37fe4858e83fea1e", + "6b77fd72fc327eb4a3e3ff02a555a51494477409", [] ] }, @@ -286223,7 +289352,7 @@ ] }, "resources.js": [ - "51e98005b037013f17d91add984edfd7846a17b2", + "cf96dd5390a0c49b32dd871a9b2e24b9688409d8", [] ] }, @@ -287052,6 +290181,10 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], + "iframe-do.sub.html": [ + "effc1adcdde2b0c85eee53d2a83cc2219eeb05b2", + [] + ], "javascript-url-srcdoc-cross-origin-iframe-inheritance-helper.sub.html": [ "afe4753cf93f8d68884eb731ce69e004a4b5e9ff", [] @@ -287103,13 +290236,25 @@ ] }, "inside-worker": { + "dedicated-worker-report-only.html.headers": [ + "b3746674ec7e6457a9d4f0175d4caf4a29e13c49", + [] + ], "support": { "connect-src-allow.sub.js": [ "7ba44e53634311ec1100a5a3aa2565ec9248ba00", [] ], + "connect-src-self-report-only.sub.js": [ + "dc1f79235ff93e89212c32a1f4d4133c415bc6b1", + [] + ], + "connect-src-self-report-only.sub.js.headers": [ + "b3746674ec7e6457a9d4f0175d4caf4a29e13c49", + [] + ], "connect-src-self.sub.js": [ - "a3e6e975d7d1f2ef2c3a7800f922ff178eb2e27c", + "1ddfe55267a82c4a41377e6cb34bc3d53735c01a", [] ], "script-src-allow.sub.js": [ @@ -287405,7 +290550,7 @@ [] ], "set-cookie.py": [ - "38325f0651be0c315042459d99911694c9e2799a", + "db747bcd3bdaeb2e8391b454a0566e9bbb462278", [] ], "throw-function.js": [ @@ -288022,7 +291167,7 @@ [] ], "cookie_helper.py": [ - "b88b25c701639dfdf92596c6523bf310fe8dcca1", + "2565944320a2de90cb756e45ebb09bf1d4b9c933", [] ], "empty_sw.js": [ @@ -288136,7 +291281,7 @@ [] ], "cookie.py": [ - "16efcc04aeb919e70c8e9bbf03253a8101bef2c8", + "b18da7774da6eab7d311c1d40611e44bdf77d997", [] ], "drop.py": [ @@ -288168,7 +291313,7 @@ [] ], "helpers.py": [ - "47f40b4fc19a8304ef39141f5a3d31b1d56368ef", + "5fee5a9a914dec8c3f829074da9b0bca1ba04678", [] ], "imgIfMatch.py": [ @@ -288192,11 +291337,11 @@ [] ], "set-cookie.py": [ - "38325f0651be0c315042459d99911694c9e2799a", + "db747bcd3bdaeb2e8391b454a0566e9bbb462278", [] ], "set.py": [ - "ffd8a7d33b86a4907a15969799ca37e2d7333ac9", + "eda9338c9269e9c5caf30114adb0ca2ef165e805", [] ], "setSameSite.py": [ @@ -303768,10 +306913,30 @@ "deaa71d9d05d7438464bfac304e24e28eee5d635", [] ], + "emptyspan-1-ref.html": [ + "a66a85e762d7d7186b8ddc190d9a2ae7ce19f7a3", + [] + ], + "emptyspan-2-ref.html": [ + "941044b92600db9a536436d3a65a7e7b59da1529", + [] + ], + "emptyspan-3-ref.html": [ + "629c3424ca5c0e17a1c60446aad3214b15dbc7d4", + [] + ], + "emptyspan-4-ref.html": [ + "af74e690e182ab018c66eb8223d84392e03bacfd", + [] + ], "fixed-pos-stacking-001-ref.xht": [ "e85be0e69183ef09ed8b14fa6d839c40ccfb65ba", [] ], + "float-inside-inline-between-blocks-1-ref.html": [ + "d9146e2ae098396623628343ce1417866087d691", + [] + ], "inline-formatting-context-001-ref.xht": [ "42f12fe4bc3f4c520fbe8a3e626992300a097b8a", [] @@ -303780,14 +306945,54 @@ "00e2afe4e871c09c0cce182992d72a8889971b7e", [] ], + "percent-height-1-ref.html": [ + "0f74e18a85a0539026e9c85c61cd773f2be9fa3c", + [] + ], "position-absolute-percentage-inherit-001-ref.xht": [ "9cf6e10bc594cb511c0dd73c7207e65ac345ce65", [] ], + "remove-from-split-inline-1-noib-ref.html": [ + "7b8a141e7865fc1ae2541c94a64d398ba177535f", + [] + ], + "remove-from-split-inline-2-ref.html": [ + "9fd41e13849ec3e65c8216bf7d192c5ef93f4091", + [] + ], + "remove-from-split-inline-3-noib-ref.html": [ + "124b8fd8909352aec9c57951e960835d3b280df9", + [] + ], + "remove-from-split-inline-4-noib-ref.html": [ + "10c563ce5405ad01085249e96c30be807058bc0d", + [] + ], + "remove-from-split-inline-5-noib-ref.html": [ + "8bd8802f6652af6545cfdf0dfb7ddbc364600bbd", + [] + ], + "remove-from-split-inline-6-noib-ref.html": [ + "7678e811c0d6f568ea7ba4317cde2b03a4cfde84", + [] + ], + "remove-split-inline-1-ref.html": [ + "cf4cfffd50350f165a4ca85a4abe2a0c3a190c9f", + [] + ], "right-offset-position-fixed-001-ref.xht": [ "0f91ecfb7f907d2045cc2f3820efa3398264cc7e", [] ], + "split-inner-inline-1-ref.html": [ + "3f2a82f83c10707c5d000afba83805a8d1934f87", + [] + ], + "split-inner-inline-2-ref.html": [ + "1ace2f8fb64e500ab13fb88a44042063822244f2", + [] + ], "support": { "100x100-lime.png": [ "1b947700808585e8c224cee096247eb5d30a1ded", @@ -303810,6 +307015,10 @@ [] ] }, + "table-pseudo-in-part3-1-ref.html": [ + "b21050370d4819ed10910bcfc4f2ff763cc4c8e6", + [] + ], "top-114-ref.xht": [ "54ebabb80b419b61c5f06341ee25bdb61b7fddbb", [] @@ -303817,6 +307026,10 @@ "top-115-ref.xht": [ "2f6bc48cfded02a1099fe60c04674db54638ee8b", [] + ], + "whitespace-present-1-ref.html": [ + "46cac675c51137ccd1214a6971e3705c37c28877", + [] ] }, "zindex": { @@ -306579,6 +309792,10 @@ "275105c5dbb03cf1b82eb058e856d53b129ecbe9", [] ], + "mix-blend-mode-rotated-clip-ref.html": [ + "377ed7c879fd8ec15ff660da617294bc119206e0", + [] + ], "mix-blend-mode-script-ref.html": [ "b18ed6cd3c83d98495ab7c46ccb90fc593c3ad49", [] @@ -306802,7 +310019,7 @@ [] ], "nested-scale-animations-ref.html": [ - "ef0d2f64c10855a0dd7839121ec34d9236292e06", + "6dd3cde31126329fd3012c0fc1feac5855b24826", [] ], "support": { @@ -306834,6 +310051,18 @@ [] ], "animations": { + "background-color-animation-element-not-visible-at-current-viewport-ref.html": [ + "e47a83e393b77657869eceb7786bbf3e61ae4b07", + [] + ], + "background-color-animation-fallback-additive-keyframe-ref.html": [ + "b8ef74f8e1aa3530c9645fe5f520b7b44a1e0a46", + [] + ], + "background-color-animation-fallback-missing-0-percent-ref.html": [ + "7a0046f27b2bd432944e61aee3bb900300093019", + [] + ], "background-color-animation-fallback-missing-100-percent-ref.html": [ "7a0046f27b2bd432944e61aee3bb900300093019", [] @@ -306842,6 +310071,18 @@ "271281cf8842d48c5ff9c325a8189388936be45f", [] ], + "background-color-animation-fragmented-ref.html": [ + "845a8b5a5beaec4338f0b3f361a4c1e471b2b1af", + [] + ], + "background-color-animation-in-body-ref.html": [ + "5d3d419db6c84dc9480218b1ee487c7e4b301a58", + [] + ], + "background-color-animation-non-zero-size-element-change-to-zero-ref.html": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "background-color-animation-ref.html": [ "8e0e70ba20e56678753b78c91ba8d02fb195b6cf", [] @@ -306858,25 +310099,55 @@ "ba414f7b349d6a3de8b10eb539de48b408365f2a", [] ], - "background-color-animation-with-zero-alpha-ref.html": [ - "8442d3de965d939504d7ac059203d0eabbec9a6a", + "background-color-animation-with-table1-ref.html": [ + "7522c388f064caf63a589618d842894c709c0445", [] ], "background-color-animation-with-zero-playbackRate-ref.html": [ "823d8ac3821638dd92cdccbc39497d1cc1dc797a", [] ], - "background-color-transition-with-delay-ref.html": [ - "8e0e70ba20e56678753b78c91ba8d02fb195b6cf", + "background-color-animation-zero-size-element-change-to-non-zero-ref.html": [ + "26882bd23b712067ae80d770d85b123393e3d3d1", + [] + ], + "background-color-animation-zero-size-element-ref.html": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "background-color-transparent-animation-in-body-ref.html": [ + "72c0c83ffca3079656fa9701a535b2874a55f686", [] ], - "background-color-transition-with-initially-transparent-ref.html": [ - "10475b7bb17534d101ca8c6e366e53b944e48df6", + "invalidation": { + "background-color-animation-with-zero-alpha-ref.html": [ + "8442d3de965d939504d7ac059203d0eabbec9a6a", + [] + ], + "background-color-transition-obscured-ref.html": [ + "d615522c848216136ac00967c783d149616f0699", + [] + ], + "background-color-transition-with-delay-ref.html": [ + "8e0e70ba20e56678753b78c91ba8d02fb195b6cf", + [] + ], + "background-color-transition-with-initially-transparent-ref.html": [ + "10475b7bb17534d101ca8c6e366e53b944e48df6", + [] + ] + }, + "two-background-color-animation-diff-length1-ref.html": [ + "44e416fe8f2e4e4665365e6a32e0197dbed63a79", [] ], - "two-background-color-animation-diff-length-ref.html": [ + "two-background-color-animation-diff-length2-ref.html": [ "44e416fe8f2e4e4665365e6a32e0197dbed63a79", [] + ], + "two-background-color-animation-diff-length3-ref.html": [ + "66af34da3df44eb25dcf075a8f352bf215bbf792", + [] ] }, "background-attachment-fixed-inside-transform-1-ref.html": [ @@ -307627,6 +310898,14 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], + "linear-gradient-currentcolor-first-line-ref.html": [ + "a83685f3fed611fec0d9ba16af75ac3ade82691d", + [] + ], + "local-attachment-content-box-scroll-ref.html": [ + "a6fd494660b6f1072d68211862b7bfd14fd345c5", + [] + ], "reference": { "60x60-green-background.html": [ "d19ed4ea2678a45bbe53838d6eebf61ab641bcdd", @@ -307673,11 +310952,11 @@ [] ], "background-image-first-letter-ref.html": [ - "210994b3ec0e9bec82709f7055792d1f97ad72ed", + "fd2fdf93aaa9b1d4bccb8731b09ea27aa2fabdfc", [] ], "background-image-first-line-ref.html": [ - "3536cba54b5b34cd792299abdd8687a274bd8b0c", + "3bbe8467a59ea9ee2ec47757ed9a28c36ccc6384", [] ], "background-image-large-with-auto-ref.html": [ @@ -307688,6 +310967,10 @@ "6f4261ecf45443c0d1d38f4599f2946492a570bb", [] ], + "background-image-with-border-radius-fidelity-ref.html": [ + "0d8f30d74f81e16d9fa0a3baf81306b14df0eac1", + [] + ], "background-origin-002-ref.html": [ "88d61225a623d112e5f54505899a21dd4d929a5b", [] @@ -307789,11 +311072,11 @@ [] ], "border-image-repeat-round-ref.html": [ - "bfc2efbfa0bf419c13530e6c7d2ffcb324b05e35", + "327013a93369af6cf023fef0668a4c5060e04f24", [] ], "border-image-round-and-stretch-ref.html": [ - "39a88e954c5c4f449be8781ca7174324d7faef24", + "4f0ffdbc526a4c3f899cc72277f9d46688538c6b", [] ], "border-image-shorthand-001-ref.html": [ @@ -307816,10 +311099,6 @@ "2581d8dabfc7927c6ce8c1a5bedd9ccb2af82e52", [] ], - "border-image-slice-percentage-ref.html": [ - "bfc2efbfa0bf419c13530e6c7d2ffcb324b05e35", - [] - ], "border-image-space-001-ref.html": [ "22c5f4dfb8b40fddeb3eeb0af52056dfebf623e1", [] @@ -308148,10 +311427,6 @@ "d8bd022f08265e46078284e1525989d0980d3d85", [] ], - "border-image-round-result.png": [ - "2f9d54ce3c2bc7e68d0458f01c5ad49bbc8e0f81", - [] - ], "border-image.jpg": [ "a83a921fdf0326c1b2aca374867d8596a2d7684c", [] @@ -308160,10 +311435,6 @@ "7a657391d65480c6ab3f1a3e34320f447ed9b8a3", [] ], - "borderresult.png": [ - "9e2afc348e7cccf5c036a44928a9e61de18721ba", - [] - ], "c-red.css": [ "d4ba5c64e95406f541e2f8cc19e192e9f521ed6b", [] @@ -308501,6 +311772,14 @@ "f87e16adedc779911ec081990acd76dd5f6ed5ad", [] ], + "break-inside-avoid-min-block-size-1-ref.html": [ + "56789f62cbb570c4f5fbdcbdb13b97feda4fa174", + [] + ], + "break-inside-avoid-min-block-size-2-ref.html": [ + "70c4049131f7c4f458398c40bb0c1d575a6fa071", + [] + ], "break-nested-float-in-table-001-print-ref.html": [ "3459e25edd64ca8d90cebd4a44f68aa9b4106e25", [] @@ -308625,6 +311904,14 @@ "f596b559b0e26b9c03d47b7dcab966a4d091308b", [] ], + "all-prop-revert-visited-ref.html": [ + "0ef326c2722a4f65f6657d7740a990c079b08289", + [] + ], + "all-prop-unset-visited-ref.html": [ + "e67b97276818d50adb0e47105fbecab3c91e52c7", + [] + ], "important-prop-ref.html": [ "004679da7309ccc08640fe8c92b6f069090a37b6", [] @@ -308634,6 +311921,10 @@ [] ], "reference": { + "all-green.html": [ + "c70532129ad86b81faad3e98093084d644100bfb", + [] + ], "ref-filled-green-100px-square.xht": [ "05a13794482a94f6c10bd9d4c98704e63ef60331", [] @@ -308864,7 +312155,7 @@ [] ], "t421-rgb-values-meaning-b-ref.html": [ - "b468f0eb9888c6e88ff00feb8f01955ac28ff090", + "b824200a06bcd4c27b05e19ae9da12ff96176a0b", [] ], "t422-rgba-a1.0-a-ref.html": [ @@ -309460,6 +312751,22 @@ "1fdecb1c33149af52c48c105bce8ad91904bad44", [] ], + "contain-body-bg-001-ref.html": [ + "1d6357e173ccf3878821ceef86fd69c71778f6c4", + [] + ], + "contain-body-overflow-001-ref.html": [ + "32bc8b0eafc64d2c8552da37bab3b0138ab12dc9", + [] + ], + "contain-body-t-o-001-ref.html": [ + "ecf9d031a33956924d739136859b5837bfe73885", + [] + ], + "contain-body-w-m-001-ref.html": [ + "3341816e2b01433d8b24acc5cbd05a915c2c2736", + [] + ], "contain-content-011-ref.html": [ "21043b083c893a474aee7e0a926ce5be3d73ec12", [] @@ -311236,7 +314543,7 @@ [] ], "flex-basis-011-ref.html": [ - "e1a968b5b53042ca97a97996c62a062ed89153f7", + "8c9d248efaf1cb03c18c4a4955576ccbc6ecaa15", [] ], "flex-child-percent-basis-resize-1-ref.html": [ @@ -311259,6 +314566,10 @@ "bfe02c24ec4cfa41f44151ad23c45fd72728c4f8", [] ], + "flex-fragmented-with-float-descendant-001-ref.html": [ + "ead53ad704a08d06a2e88ed5e43b9bcaf55aa584", + [] + ], "flex-grow-001-ref.xht": [ "2b0f294c3441f1cf25a6678b9ce0748258582ea1", [] @@ -312426,7 +315737,7 @@ [] ], "flexbox_justifycontent-left-002-ref.html": [ - "f412b3d14b3ec5494c8bebe9f44f7d57ae1bef67", + "0680b1cea71801f855748e60efbf839e1b80278c", [] ], "flexbox_justifycontent-right-001-ref.html": [ @@ -312434,7 +315745,7 @@ [] ], "flexbox_justifycontent-right-002-ref.html": [ - "a1c096fb0b6da986ad3707c94ece7068196157b6", + "63d2f702d956853bd1fda9bb5f68f5219e30468c", [] ], "flexbox_justifycontent-spacearound-negative-ref.html": [ @@ -312684,7 +315995,7 @@ ] }, "overflow-top-left-ref.html": [ - "48b2aa88158b6301c7c7df3d7af84d9d96192761", + "8e58953a33d0ae4557b68909b1eb20b009f47159", [] ], "percentage-heights-002-ref.html": [ @@ -312695,6 +316006,14 @@ "7c1e5858130b6150d36c52df0eaa525836b9075a", [] ], + "percentage-max-height-004-ref.html": [ + "e7cdafacb50035c603ef651167cf8faf6973d3d0", + [] + ], + "percentage-padding-002-ref.html": [ + "65d55194062623b8deb4d083881cc6ea6899fe2f", + [] + ], "percentage-widths-001-ref.html": [ "ca0c4d9b2a0c62244d9c1bd5bd3a9a7ed884b8f7", [] @@ -312737,7 +316056,7 @@ [] ], "align-items-baseline-overflow-non-visible-ref.html": [ - "89f1025261aca313a0598a2f87919f0c201d4b06", + "c2f6d2353cf8cbdcdf8b04b5c53ed381919bcf04", [] ], "align-self-015-ref.html": [ @@ -312964,8 +316283,12 @@ "f5d06c6cf3e3227f9c415c6d5e3e11b3d766bd67", [] ], + "overflow-area-003-ref.html": [ + "2d9bf19922ce5bbe12327bd6c833fbe167bcb856", + [] + ], "overflow-auto-005-ref.html": [ - "ace792e456c12f40e52ae50d51d05fd6a449a628", + "633623936a5ab3215bc149d5103b30f458f83916", [] ], "overflow-auto-007-ref.html": [ @@ -313263,6 +316586,10 @@ "a08e7e97e02467a38062419a002013ebfa9c9e39", [] ], + "fontface-size-adjust-descriptor-ref.html": [ + "e752f4110c6f62ae66b7f96ff9995b4f4e660c71", + [] + ], "resources": { "GenI102.woff2": [ "117d4a8fe7f8429d4eb97089e2f1334e1ff7bec9", @@ -313457,6 +316784,14 @@ "098fca5ea76ff3dd31633dc1c7c7166fa7cf076a", [] ], + "font-size-zero-1-notref.html": [ + "9e95ca66ec75caeaa104b7f9eea14ace52f7f46b", + [] + ], + "font-size-zero-2-ref.html": [ + "2aea76d74d479de7497a0fbb53fd89527e87708e", + [] + ], "font-stretch-pass-ref.html": [ "0bd11557a61fd6ee1a2317853458415d156a165c", [] @@ -313782,7 +317117,7 @@ [] ], "line-gap-override-ref.html": [ - "4afa061e833c71d2f990e80954200b0293fe99f2", + "cb6d2ced1a336793bb121474a1c608a8106ffde8", [] ], "matching": { @@ -313852,7 +317187,7 @@ ] }, "metrics-override-normal-keyword-ref.html": [ - "3a8e89ed80c411746ccd8050c08bb58de3723c69", + "7575db40e1e729f7bc56da4d26fd13937cb721d3", [] ], "quoted-generic-ignored-ref.html": [ @@ -313873,6 +317208,22 @@ [] ] }, + "size-adjust-01-ref.html": [ + "765201d3552d70163bac26bf698218e1b1312f16", + [] + ], + "size-adjust-02-ref.html": [ + "44bf8a130bea06a037de837fdd9d4fe4b0292d81", + [] + ], + "size-adjust-tentative-ref.html": [ + "db8f8a46772b44313a71546520fde1b14bd6f907", + [] + ], + "size-adjust-text-decoration-tentative-ref.html": [ + "1cf10862ad60865a2095789625f104f9db7b4ba7", + [] + ], "standard-font-family-10-notref.html": [ "e977fdaf7647400d18b975247d42b239a37e540c", [] @@ -320243,6 +323594,10 @@ "variable-opsz-ref.html": [ "24080345ba03cc983685d6fe3ed1c1f6631ce254", [] + ], + "variable-opsz-size-adjust-ref.html": [ + "4e88cace350e32711fc06220c2d14dcbd3ab3339", + [] ] } }, @@ -320266,6 +323621,10 @@ "07e297f18e150d20371a51953e043ceedab36448", [] ], + "absolute-positioning-grid-container-parent-002-ref.html": [ + "0c09ca180f3eeece411141f77421393e19a3d6db", + [] + ], "descendant-static-position-001-ref.html": [ "05cdb41b3175d85966f84da13a163631e0acfc17", [] @@ -320279,39 +323638,71 @@ [] ], "descendant-static-position-004-ref.html": [ - "83002f09cff37c9a76f40c3ce51d7a87b33ac3ea", + "3da40c17eb67387bc4458f7c86ce95480d97a4c5", [] ], "grid-abspos-staticpos-align-self-001-ref.html": [ - "36b570f24580adebdeee7afb9c8147e85da4fd2f", + "cb6d12be4e108e8c30a3349a9f806fe4c553d173", [] ], "grid-abspos-staticpos-align-self-002-ref.html": [ - "40dd0f2f5173b4d8e544c47fba6c2eb62dee4faf", + "ddb89d1fb2a3601509dbf19219b03b91c930ae84", [] ], "grid-abspos-staticpos-align-self-img-001-ref.html": [ - "a14d630680fb8ccf5fcadeda56e7e95954479269", + "06d9d366127609b22f599fd87528693e37c8e6f4", [] ], "grid-abspos-staticpos-align-self-img-002-ref.html": [ - "ea15f8de198622cdc8472b28a3c7235b4c921205", + "a31ac1d659a935970ba6392d810128db8df6d864", + [] + ], + "grid-abspos-staticpos-align-self-img-last-baseline-001-ref.html": [ + "37655b038ca3ba9bd284120c9ba6eaa893c49e1b", + [] + ], + "grid-abspos-staticpos-align-self-img-last-baseline-002-ref.html": [ + "76d52fd857d22286a5aa9018482e69cbe0123c4e", + [] + ], + "grid-abspos-staticpos-align-self-last-baseline-001-ref.html": [ + "6bc5ba4f8c11fc147b217c3e0aacd4a6d67164b2", + [] + ], + "grid-abspos-staticpos-align-self-last-baseline-002-ref.html": [ + "f1ca180e8283fa882939a5d035aeade3ad45ec8e", [] ], "grid-abspos-staticpos-align-self-rtl-001-ref.html": [ - "671b315a147a361e87d67d8be4a210c79aa3e99b", + "a5ad3a342733d8bd806093a57b58efbbd24f6983", [] ], "grid-abspos-staticpos-align-self-rtl-002-ref.html": [ - "671b315a147a361e87d67d8be4a210c79aa3e99b", + "a5ad3a342733d8bd806093a57b58efbbd24f6983", [] ], "grid-abspos-staticpos-align-self-rtl-003-ref.html": [ - "cadaadd95a35752e6a93564349ddb8bafdc2aeda", + "dde6f967453b534a54b7cc7868d90bc17d33bd81", [] ], "grid-abspos-staticpos-align-self-rtl-004-ref.html": [ - "cadaadd95a35752e6a93564349ddb8bafdc2aeda", + "dde6f967453b534a54b7cc7868d90bc17d33bd81", + [] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-001-ref.html": [ + "9c838e9eaf95215e232a063c0703ce6591fb67a4", + [] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-002-ref.html": [ + "9c838e9eaf95215e232a063c0703ce6591fb67a4", + [] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-003-ref.html": [ + "ff60b13f19030310ade234884911561a772cd73d", + [] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-004-ref.html": [ + "ff60b13f19030310ade234884911561a772cd73d", [] ], "grid-abspos-staticpos-align-self-safe-001-ref.html": [ @@ -320319,67 +323710,131 @@ [] ], "grid-abspos-staticpos-align-self-vertWM-001-ref.html": [ - "37575f03e53830976da0937ea08aea9c178c9ead", + "dd151d46fd0cd2a4d28dca8fa2e3b21700de7f59", [] ], "grid-abspos-staticpos-align-self-vertWM-002-ref.html": [ - "ce217e7fffbe933016bb77a0117b0d230c0f276b", + "60bd0cec268170dc4f25705e2dfe2677519ddae3", [] ], "grid-abspos-staticpos-align-self-vertWM-003-ref.html": [ - "7eca626d2df3522741a36169ae2776eb9735c633", + "b8deb0302e4d25b1b24d09908659c6e309670af7", [] ], "grid-abspos-staticpos-align-self-vertWM-004-ref.html": [ - "66d0d29f3c3e6bc459bd37d24a0a3448d81fd472", + "95060a70263fc00693208d620a04a276fc20bcff", + [] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-001-ref.html": [ + "abd41fca4fcfc55a9337c1a36b7fc4ea676dfd38", + [] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-002-ref.html": [ + "abd41fca4fcfc55a9337c1a36b7fc4ea676dfd38", + [] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-003-ref.html": [ + "41da802a2d90d9d56a6f735bb9fcf2554b9840b6", + [] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-004-ref.html": [ + "41da802a2d90d9d56a6f735bb9fcf2554b9840b6", [] ], "grid-abspos-staticpos-justify-self-001-ref.html": [ - "6d197e490fe69c5e45f48d884fe265e5080c97e0", + "982e0c67845ef502646b0121b03c7294dd9f2c7b", [] ], "grid-abspos-staticpos-justify-self-002-ref.html": [ - "f7396eda984b03ffd8660f5287963448c9d552e2", + "cb0fb93ba45da5269c4181d28c6c7ae085e6a107", [] ], "grid-abspos-staticpos-justify-self-img-001-ref.html": [ - "78d621219ab0fd36fb625252a977ab1166e0c42b", + "29a2961e1dd062a5c32e427be8a2015c1566a238", [] ], "grid-abspos-staticpos-justify-self-img-002-ref.html": [ - "e71555d429498deae363039e015ef303aa2c6f68", + "7a969458118576f2c948b25d71b8aaf8750b2677", + [] + ], + "grid-abspos-staticpos-justify-self-img-last-baseline-001-ref.html": [ + "401cc7cc415ae45efc6eb561ac77e6a796fc68a3", + [] + ], + "grid-abspos-staticpos-justify-self-img-last-baseline-002-ref.html": [ + "a4662970d6c6187a07640bdc5aa635e0c84f62dd", + [] + ], + "grid-abspos-staticpos-justify-self-last-baseline-001-ref.html": [ + "d19b16591cb63154aff72cd1a14019d12f322913", + [] + ], + "grid-abspos-staticpos-justify-self-last-baseline-002-ref.html": [ + "44cc78860e466e50d9235f4ac1f53f717ac59516", [] ], "grid-abspos-staticpos-justify-self-rtl-001-ref.html": [ - "8e5db1efc59b812a5ef71b90ccd94bbc7e48f870", + "32c9ed275109554d8ec16a0915cd6618fc10a13d", [] ], "grid-abspos-staticpos-justify-self-rtl-002-ref.html": [ - "c7176a7c21025ac178194c3592ef2fe30e4a86ee", + "4dea2074a8209a7e2012336e64b2bcf11f3d60d3", [] ], "grid-abspos-staticpos-justify-self-rtl-003-ref.html": [ - "8c88ad97b9c456702e2c649b2fb486f06538ca85", + "602d0a51b6b5fca1f958de2c63965f3035c10b04", [] ], "grid-abspos-staticpos-justify-self-rtl-004-ref.html": [ - "3e4c10049db205a89e0f3462f96ef5386e29296f", + "ebf46d7626598845d388d38e9a8da166b77a7b27", + [] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-001-ref.html": [ + "d051371aaa252f79ea1c9f887d50dee83b1e575b", + [] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-002-ref.html": [ + "d051371aaa252f79ea1c9f887d50dee83b1e575b", + [] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-003-ref.html": [ + "240803b3e3e65d2f3e5702bc8aeba6702358f62b", + [] + ], + "grid-abspos-staticpos-justify-self-rtl-last-baseline-004-ref.html": [ + "240803b3e3e65d2f3e5702bc8aeba6702358f62b", [] ], "grid-abspos-staticpos-justify-self-vertWM-001-ref.html": [ - "9fff3eabcc0860a981714bb81895b61560861d07", + "1914d557a7234b66828f7c6a03c8fc7b65f5ad47", [] ], "grid-abspos-staticpos-justify-self-vertWM-002-ref.html": [ - "9fff3eabcc0860a981714bb81895b61560861d07", + "1914d557a7234b66828f7c6a03c8fc7b65f5ad47", [] ], "grid-abspos-staticpos-justify-self-vertWM-003-ref.html": [ - "c0d0b784415ad0c1b2e8af582aec8825c4860c71", + "230caa4ea380d4d5ae2c8e350f0b525794bc2953", [] ], "grid-abspos-staticpos-justify-self-vertWM-004-ref.html": [ - "c0d0b784415ad0c1b2e8af582aec8825c4860c71", + "230caa4ea380d4d5ae2c8e350f0b525794bc2953", + [] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-001-ref.html": [ + "7857835a31ac0eee92474a6a6014bd387bda02dd", + [] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-002-ref.html": [ + "fb1c5fda3b3936617d6fd33a6d7f2e5d2df0ba83", + [] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-003-ref.html": [ + "41555d5ec8e6047b7002f60f5d82072a44923ab1", + [] + ], + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-004-ref.html": [ + "41555d5ec8e6047b7002f60f5d82072a44923ab1", [] ], "grid-paint-positioned-children-001-ref.html": [ @@ -320390,6 +323845,10 @@ "2794df263eba5417c66c6ae395ec5e364b4ddeb6", [] ], + "grid-positioned-item-dynamic-change-004-ref.html": [ + "985e8f85250c3313d17f3ee03d5263d966d547ce", + [] + ], "grid-positioned-items-background-001-ref.html": [ "899dc98ec62700a327bae7032304449e0146a718", [] @@ -320502,6 +323961,10 @@ "2633ac41aa392da22d5c5b73c8013563947c3e21", [] ], + "positioned-grid-items-019-ref.html": [ + "865b3d83a2f3ad065acbf9830b0c2babb85af58f", + [] + ], "positioned-grid-items-negative-indices-001-ref.html": [ "2bbc3a95136e0e61191ec10fe5ff1ca901e799b9", [] @@ -321477,6 +324940,10 @@ "subgrid-mbp-overflow-003-ref.html": [ "d771427f6e5adff7304c892bfc0990cba51d923a", [] + ], + "subgrid-mbp-overflow-004-ref.html": [ + "5188a3c9fbf98f3730dd9195bbbf2cb56ab1aa90", + [] ] }, "support": { @@ -321771,9 +325238,19 @@ [] ], "image-set-rendering-ref.html": [ - "b735c38622a64488d001270431fb5a5774ed4146", + "081766ce7dbd271ac53fc4af96b19cea4fb095eb", [] - ] + ], + "image-set-resolution-001-ref.html": [ + "46c4d729ed59525b1a138f1f60aa6e6074251211", + [] + ], + "support": { + "image-set-parsing-tests.js": [ + "ade2b0368103b2e4df0d66d08b95ba064aca9fb4", + [] + ] + } }, "infinite-radial-gradient-crash-ref.html": [ "a80236dcf75c22ecd8e43935d004f1fddf0550cb", @@ -322542,7 +326019,7 @@ [] ], "inline-list-marker-ref.html": [ - "e5a3c2e490ab2ae93bd64fd0e98eff3cfee9c6ab", + "f1dbbdea3db12f0b17d149b2608b465b35656a34", [] ], "inline-list-ref.html": [ @@ -322690,6 +326167,22 @@ [] ], "reference": { + "logical-values-float-clear-1-ref.html": [ + "0dac4c29b18ec0323ac81b15016d8b0a9f99989b", + [] + ], + "logical-values-float-clear-2-ref.html": [ + "82bfcd2d36f567637d2cdac0feb74dfdaa680eb3", + [] + ], + "logical-values-float-clear-3-ref.html": [ + "654afd856f677ebde9f1f41b604121e84a6e0320", + [] + ], + "logical-values-float-clear-4-ref.html": [ + "0c2065b3e9782034c936b2b961a3ecbbfea635b5", + [] + ], "logical-values-float-clear-reftest-ref.html": [ "28c275ebb307a3db20c019daebe140e3fa591971", [] @@ -322788,6 +326281,10 @@ "b860304f04fe22498eb5b43d9de00d7e261353bb", [] ], + "clip-path-inset-round-percent-ref.html": [ + "597481d7dbe99afb764ad5f1e5603c5dd0240bee", + [] + ], "clip-path-rotated-will-change-transform-ref.html": [ "ddbf0e9812cf432486f22a22cb2680343d5be298", [] @@ -323429,6 +326926,30 @@ "66fee5b5b943643623e21483f9483dc65cf7f0da", [] ], + "multicol-list-item-003-ref.html": [ + "966715ae1f689b1ede660e95221364d613704a88", + [] + ], + "multicol-list-item-004-ref.html": [ + "a1a373c2972c647516baaad5f1ad9cbd0ad3269e", + [] + ], + "multicol-list-item-005-ref.html": [ + "3a9fbc7eb3daea05f62f9cd32ca474e731f301ac", + [] + ], + "multicol-list-item-006-ref.html": [ + "30e55658f5422ed94e24a18425cd800f5a7083cd", + [] + ], + "multicol-list-item-007-ref.html": [ + "54435d7191883cac6e41863bbcf5ed39732b0b21", + [] + ], + "multicol-list-item-008-ref.html": [ + "c0abd5164cdc42765020d387a8a8a3383463059c", + [] + ], "multicol-margin-child-001-ref.xht": [ "db9a49db40c3c7edce1bfc61a15d7df5caf21b18", [] @@ -323633,6 +327154,10 @@ "54981d81068873d95a0b3725fc8aabdb542ef491", [] ], + "multicol-span-all-017-ref.html": [ + "64d1419cfc8b8be4d9ac0c8ab84c830b9ffc9b5e", + [] + ], "multicol-span-all-block-sibling-3-ref.xht": [ "53b58c6d2b0cbd9d6e6288231c22ff5c76068b25", [] @@ -324141,6 +327666,10 @@ "9e502e7e237de7ffb6dfc754450c70f5f03d297e", [] ], + "overflow-body-propagation-011-ref.html": [ + "0d440ef20afa3d2456b702b2a1727a9f0717c4c1", + [] + ], "overflow-clip-cant-scroll-ref.html": [ "d52fa0e9574cdbdb067106bccfd2014b9559b921", [] @@ -324629,6 +328158,10 @@ "b6a6dec6c6087633b6e3efd8e7e9dcf49a3fea8b", [] ], + "no-op-animation-ref.html": [ + "a6eca8329b97dc74197e2b5b065cd8b33d0a0d02", + [] + ], "one-custom-property-animation-ref.html": [ "c221aa0e89d30c68781be2c2c512e81b4403f921", [] @@ -324779,6 +328312,10 @@ "d4649f2d5abc240f09551cc9efebfa2029406101", [] ], + "position-fixed-overflow-print-ref.html": [ + "0fb21d47f54c974c2ee1ca7dae801ca188d09715", + [] + ], "position-fixed-root-element-ref.html": [ "96dfe200fb0dbae31906305e1536cf32f4d96c09", [] @@ -324981,6 +328518,10 @@ "ae3222595453ec46cf48810cb2f276126897bac6", [] ], + "README.md": [ + "b0cdd2867cb65336e2dda78a202e841651858bc9", + [] + ], "active-selection-051-ref.html": [ "77e2d2817f66adb707e506c46a1eed948a2e92e3", [] @@ -324990,11 +328531,11 @@ [] ], "cascade-highlight-001-ref.html": [ - "aaebc77ca997db470355161f4e4813624e18adcc", + "25dbeadb2ee2dbf6d7f568eb6e15443715e77360", [] ], "cascade-highlight-004-ref.html": [ - "7cca053e681993aa71f14738c76d4f66d8e235ad", + "e755283a32dc1332c29d61342edd6802d2be52fc", [] ], "file-selector-button-001-notref.html": [ @@ -325009,6 +328550,10 @@ "75a0149a8f81d8bf915b5e98ef86cfb4be0e5b48", [] ], + "first-letter-005-ref.html": [ + "4e9b962bced77a7c8c1067015a4bdb6babea797e", + [] + ], "first-letter-and-whitespace-ref.html": [ "d193306fe45064d281bd22e87ed50e6e1988db71", [] @@ -325069,6 +328614,14 @@ "8ebb00b9dcc10f43df0efea20991af653f5cb691", [] ], + "first-letter-with-quote-ref.html": [ + "0eebf0a51f10c90c64736e61a1403379fb9ed725", + [] + ], + "first-letter-with-span-ref.html": [ + "05ecbc169def741dc39b5f3d5d9dfb86fdd105fa", + [] + ], "first-line-and-marker-ref.html": [ "8095d5ca01527e4e1ccacd25887b499e198e80f0", [] @@ -325093,6 +328646,10 @@ "d020842a24b227d234f440732287ed6566954d89", [] ], + "first-line-replaced-001-ref.html": [ + "acd0530c89ac2d63833be38973835a431a89a80b", + [] + ], "first-line-with-before-after-ref.html": [ "fcee7995052717c0509c58a76fa1f420434ceb43", [] @@ -325110,15 +328667,19 @@ [] ], "highlight-painting-001-ref.html": [ - "7ca31dbcf99e3538b83954af1b3b8cebd507d68b", + "dea75771aabcf7ae0183c69824dc7667753383ae", [] ], "highlight-painting-002-ref.html": [ - "81bf812d95e76715349b621ad797c1f9abbe707e", + "7bd6c37dea110112f2a3c302ff236ae0e2ca0605", [] ], "highlight-painting-003-ref.html": [ - "2be2d97a3da2f62f083c3d38bff8a2b9bb79a64e", + "e3d1c5985187e856b46e6c4f1f7bfdcfd5c05e65", + [] + ], + "highlight-painting-005-ref.html": [ + "bc6086f7115a1c254c0b2858bfa1d7d224bf9304", [] ], "highlight-z-index-001-ref.html": [ @@ -325335,39 +328896,39 @@ ], "reference": { "active-selection-011-ref.html": [ - "5c5fb091b85bb4a8d7d7025aac4caeafd34ed65f", + "f655188892aad87b574bb76a127278da6ddb2dd1", [] ], "active-selection-012-ref.html": [ - "2faa69510d8bc4f867301955be306b53d2a4ed7b", + "5f45e50952ea590930b33b0e72c6bb5d88095a14", [] ], "active-selection-014-ref.html": [ - "4a9dd309a0141d6b3950e73ff17ffdd468e14955", + "d4761bb9a0a7d6be10bdfd1c83a0fc9f64208d0e", [] ], "active-selection-016-ref.html": [ - "cd80adb3c3be45234bb3e89f42086dd30432cdb9", + "7e650c2338d9c78af665d4fd8bf51f054ad779d2", [] ], "active-selection-018-ref.html": [ - "9644602179b034f0a362218244289113b90781b6", + "a8f4fc1a05362504a22c2f0f5b196fc1f9dfdddd", [] ], "active-selection-021-ref.html": [ - "a5d0e4e32a3545318320c734cb77bcd334078773", + "1a178ddae50e9a0e414934173c6c1fb8e378059c", [] ], "active-selection-025-ref.html": [ - "b09a570059c315c632748f448a59294db73b239e", + "f2cf946041c8053a592381cd92b745c283e3bede", [] ], "active-selection-027-ref.html": [ - "cf5a35bed6ff4714bdaadf829c62bcdfa5066b29", + "565e2cac802fc066c2195f9f4d753a77d049243b", [] ], "active-selection-031-ref.html": [ - "4a65dfdd160a488a38e8ac6a5c5d58fae279a63b", + "3bb7c329d46e0573a8d58e35d039fdb7826b9e45", [] ], "active-selection-041-notref.html": [ @@ -325403,19 +328964,19 @@ [] ], "selection-intercharacter-011-ref.html": [ - "b3fa3531b3ed9c1bbb83f7ed5349d3ba792cebcf", + "21a88ebb025617f8dae50cb500a1a30eeaef22be", [] ], "selection-intercharacter-012-ref.html": [ - "3ead305bfb8eaf08424b789f40efa73c26d8dfe3", + "86165ac064c2bd0058d05ae63412ef5242615557", [] ], "selection-overlay-and-grammar-001-ref.html": [ - "f5a416ecef3547a3eca8749cdfc530a4fca5ced0", + "5aa91d67056b6004646ac2295dbcc62bf9089e2e", [] ], "selection-overlay-and-spelling-001-ref.html": [ - "5dffca9f358026645bc6f8fdd0cf145250fd05bd", + "d30ce035c5f431e1f0aead2f0b749376f7c83b43", [] ], "selection-textarea-011-ref.html": [ @@ -325440,8 +329001,12 @@ "823f125b8e4a60f780f00443c9c9a10b9fa1f447", [] ], + "highlights.css": [ + "311b971092735b9c86b66cdf1a6b9553384d8b99", + [] + ], "selections.js": [ - "022528e6aaa7c0cf708b6b922e7d15b4d0cbf1a8", + "d0cd3409a7333ba6f22616767564f0327ab9db07", [] ] }, @@ -325601,6 +329166,10 @@ "d71de26a259d7bc8784c207980676ac6eb0d5b8e", [] ], + "ruby-intrinsic-isize-003-ref.html": [ + "01523b4a8570a785d371fd62d4e9d4b5d13175a1", + [] + ], "ruby-justification-001-ref.html": [ "eaec8897133ee0527aec706a7a9e1dccc4dcf914", [] @@ -325809,6 +329378,14 @@ "f7c0439e202113c9611405ae967b33c2b12cfcee", [] ], + "scrollbar-width-paint-001-ref.html": [ + "2e7d40d9a35f804ff6a183d72a3ac35d7ec57589", + [] + ], + "scrollbar-width-paint-002-ref.html": [ + "2d00629e6129935b77c22871b82523696938c91d", + [] + ], "scrollbars-chrome-bug-001-ref.html": [ "1bf59f90e740ae119b87d96855ea0277a6f8afc9", [] @@ -326883,11 +330460,11 @@ [] ], "contain-intrinsic-size-025-ref.html": [ - "f760a49cbf012db48cf1ea2bbdfbb78595769500", + "fbb1ce8868cc5df36248c922bfd954c569b7e580", [] ], "contain-intrinsic-size-026-ref.html": [ - "8389ef701b2da0f81fc04d592057278a7323b281", + "3bf3a288f1f44932571f4c9eafd7e17a9601596d", [] ], "resources": { @@ -327421,6 +330998,10 @@ "6ace02b432ab503a0275e1a04d205df3eeefe63a", [] ], + "border-collapse-empty-cell-ref.html": [ + "f6b25134f443c4625228b4901097b883a990d2a8", + [] + ], "border-collapse-rowspan-cell-ref.html": [ "53774da48a30f60eae0750e989c2e19db8bd97cc", [] @@ -327487,6 +331068,10 @@ [] ] }, + "html-display-table-ref.html": [ + "7437732cb0504fe4180d0c050eef5130ba197fbf", + [] + ], "max-height-table-ref.html": [ "ab1036ebb8dffa550b499f8a334c5b6455ba072b", [] @@ -327537,10 +331122,18 @@ [] ] }, + "table-cell-child-overflow-measure-ref.html": [ + "d4e3ec6a91c4124fa4f465b8912f720a8fec4c57", + [] + ], "table-cell-overflow-auto-ref.html": [ "18163de30320bd1f0f1a7248cd4c2f2d2897d0c5", [] ], + "table_grid_size_col_colspan-ref.html": [ + "160b9975ef0f23632a856c8f1c7e849bc2a63c50", + [] + ], "tentative": { "paint": { "background-image-column-collapsed-ref.html": [ @@ -327574,7 +331167,7 @@ [] ], "table-tentative.css": [ - "255ec02587a42535445fa05956da3c6dde692411", + "08d65b2b87d67c1f4766555cc3a73e3b83eff7ef", [] ] } @@ -328894,6 +332487,10 @@ "9b0a6eb442f8061a20121d43f2678bd770938da8", [] ], + "overflow-wrap-anywhere-011-ref.html": [ + "25d7fc7958bc6222d44c810e189b8fccbb679d43", + [] + ], "reference": { "overflow-wrap-break-word-001-ref.html": [ "0e0300a72dc920a5ffb54cda6fbe84a2f517d010", @@ -328935,6 +332532,10 @@ "93e22ba71ed08199fb01858e8db9950c41d4b35b", [] ], + "overflow-wrap-min-content-size-009-ref.html": [ + "2517e708ad61dd4902faf68d3310520152d902b4", + [] + ], "overflow-wrap-normal-keep-all-001-ref.html": [ "f0b41134fa0b84e6fce29ed5596598a358b2c2a9", [] @@ -329330,27 +332931,11 @@ [] ], "text-align-justifyall-ref-001.html": [ - "bf55ad2252e4ef360927e29e326884418fc2044c", + "80ddf567adcdbf6574c4d9c2cefb92a3fbc322fd", [] ], "text-align-justifyall-ref-002.html": [ - "f595effb0eff071435b1b8e531c9b41e86aaf45f", - [] - ], - "text-align-justifyall-ref-003.html": [ - "527ed23117bc7da806cc2890688e2485493315df", - [] - ], - "text-align-justifyall-ref-004.html": [ - "e9cdec5f8c41444cb52b39c985784ac0067b9210", - [] - ], - "text-align-justifyall-ref-005.html": [ - "1bdef57e0482dd5d05ea4193d7dc3e2f49375338", - [] - ], - "text-align-justifyall-ref-006.html": [ - "4496c3866ee10cee2da3b716203ec46d6730a6c0", + "93e0cf3aab4420765d194f9771e3d1fc7e824381", [] ], "text-align-last-wins-001-ref.html": [ @@ -329469,6 +333054,30 @@ "595485c5f4ea346b011f07128649da3f2c020902", [] ], + "text-justify-and-trailing-spaces-001-ref.html": [ + "de1aa16466bb3f23fadb7acd78ea3c10a501cff0", + [] + ], + "text-justify-and-trailing-spaces-003-ref.html": [ + "6dc81769a087d428bc785c180851f23513b8aa31", + [] + ], + "text-justify-and-trailing-spaces-005-ref.html": [ + "593ed2befd8db426c1827335ac1617b8dd22ff4d", + [] + ], + "text-justify-and-trailing-spaces-alt-001-ref.html": [ + "b05af606a392646e6c569f50ce4d8c4dc48c0839", + [] + ], + "text-justify-and-trailing-spaces-alt-003-ref.html": [ + "d4dbf95417d7c56d7c9abb436374d868fb6c164e", + [] + ], + "text-justify-and-trailing-spaces-alt-005-ref.html": [ + "e3131010d3f635df557f8c001f6d1095e8b57a44", + [] + ], "text-justify-ref-001.html": [ "976df7f4dcee2efbb4e232cbd3a86ec4d7ac8943", [] @@ -330068,7 +333677,7 @@ [] ], "trailing-ideographic-space-break-spaces-001-ref.html": [ - "ad629e94eec037153e8e2be3efba09571134a270", + "293f752174fbdc53e39566da3ab0ab95bc0b5088", [] ], "trailing-ogham-001-ref.html": [ @@ -330164,7 +333773,7 @@ [] ], "white-space-pre-wrap-trailing-spaces-004-ref.html": [ - "6f79dfbeb3fd63a3b49d6c3831886b76ab1b5240", + "de92f22e627bf844ac02aa9366f4e1dbcf0ca35b", [] ], "white-space-pre-wrap-trailing-spaces-012-ref.html": [ @@ -330184,7 +333793,7 @@ [] ], "white-space-pre-wrap-trailing-spaces-alt-004-ref.html": [ - "de92f22e627bf844ac02aa9366f4e1dbcf0ca35b", + "0cbc7b231f0e3c7dd524ed94562663baf04667ed", [] ], "white-space-pre-wrap-trailing-spaces-alt-012-ref.html": [ @@ -330808,6 +334417,10 @@ "1b02fda550c8ec62e439dc9135571fe1b72ca10d", [] ], + "text-decoration-thickness-percent-001-ref.html": [ + "c37c0facdc1210ed5a5e086adf2267f9f0c1aabf", + [] + ], "text-decoration-thickness-scroll-001-ref.html": [ "394811468fea2d4e7daaffad19742cd8e206a8bd", [] @@ -331001,10 +334614,22 @@ } }, "css-transforms": { + "3dtransform-and-filter-no-perspective-001-ref.html": [ + "bb7ae235fef0c4216de99c9c0ab3bec26db33fd4", + [] + ], + "3dtransform-and-position-sticky-ref.html": [ + "a12ce72329b55767460930c5e88f767dc27576c2", + [] + ], "META.yml": [ "a6d5672c9dfe95c990c538f5596094eb2a9615bc", [] ], + "add-child-in-empty-layer-ref.html": [ + "38ab96aaf35f60fcb1a36e4da7f78cca8d5036bc", + [] + ], "animation": { "rotate-transform-equivalent-ref.html": [ "e95e62be888216d9bcd2487c54c1da602973de75", @@ -331213,6 +334838,10 @@ ] } }, + "perspective-split-by-zero-w-ref.html": [ + "4021be83dcd97fd1169304e75245f1aaf96f15e2", + [] + ], "perspective-transforms-equivalence-ref.html": [ "a4fc022382c957fe130905f5935cd33736117b03", [] @@ -331222,7 +334851,15 @@ [] ], "perspective-zero-2-ref.html": [ - "64969c4b7a196cc585bd4ef99e6372d3c73c9610", + "bea389ab47fc6b9eecde572a252149dc294f63e1", + [] + ], + "preserve3d-and-filter-no-perspective-ref.html": [ + "d84ea9a19cb31d28010876009e984083e8493a7c", + [] + ], + "preserve3d-and-filter-with-perspective-ref.html": [ + "93fb41a70cb11462a293ddff1d837276f2e59c97", [] ], "preserve3d-button-ref.html": [ @@ -331347,7 +334984,7 @@ [] ], "transform-origin-01-ref.html": [ - "0e85f3c698f6ce83f016a0a3c82d8796d406b274", + "e6bac9379096476f887131ed9204d2903b13a499", [] ], "transform-origin-ref.html": [ @@ -331476,7 +335113,7 @@ [] ], "scaley-ref.html": [ - "56fa3074a153df96d8d586592c7b66de45bf4155", + "bbee44c13c1952785a52accb20f7f19b33d9641e", [] ], "scrolalble-hidden-3d-transform-z-ref.html": [ @@ -331672,6 +335309,10 @@ "59843ae54b64f6ce4f7e616d4be491c911ea84cf", [] ], + "tile-bg.png": [ + "2b5b591971a060aa6898bd3ea051a9b2adeb5299", + [] + ], "transform-iframe-001-contents.html": [ "d92c3705b6b9dd270d17c64fce9010a5ab1fe4f3", [] @@ -331705,6 +335346,10 @@ [] ] }, + "transform-3d-scales-different-x-y-dynamic-ref.html": [ + "3c72ff05f6fcfd5220a41f77d23ed0509d238029", + [] + ], "transform-abspos-ref.html": [ "f4aa147c981cec6085231281bd2fa732c0b3a60c", [] @@ -331802,11 +335447,11 @@ [] ], "transform-inline-notref.html": [ - "2088cf020f9721d2e173a16c27e4a30b14f87a07", + "e8e9ce855753c827fbc6a8e3055974977ebc1c0d", [] ], "transform-inline-ref.html": [ - "4034253189c11bd1290c015d9d675c524471798b", + "e64ce6837d221eaa39098eb081bc4fbb5dfedfad", [] ], "transform-input-001-ref.html": [ @@ -332573,7 +336218,7 @@ ], "resources": { "testhelper.js": [ - "e1c1f0dc74ab42a73131bdecaa2f5ea7c0856cbe", + "e4b0ddb8b42c2fb00c74681ec37b7219fbd3eb60", [] ] }, @@ -332607,6 +336252,14 @@ "7ce4b54a22c78576dc2318ebd651dfd1cce374ad", [] ], + "accent-color-checkbox-checked-001-notref.html": [ + "9f9d73177a9044b4562d0fceebe09152fd6ca7ed", + [] + ], + "accent-color-visited-ref.html": [ + "3954a3193ea3644eb666c37af619de303a5a4d27", + [] + ], "appearance-auto-input-non-widget-001-ref.html": [ "ffbf612615516e72befbd5b84b848e1e93de46aa", [] @@ -332765,7 +336418,7 @@ [] ], "text-overflow-022-ref.html": [ - "2986631ff0c72a433a9d3de629daa77aac8a09c6", + "db7d08f4504588824827984ed531655eea8bfb75", [] ], "text-overflow-027-ref.html": [ @@ -334313,6 +337966,14 @@ "8d265f24986c7af2b08a26741bbfa56f321bfbb3", [] ], + "green-square-100-by-100-offset-ref.html": [ + "fee7030b6d047ff5ca9be9b6d0d69cd33e95af5c", + [] + ], + "green-square-100-by-100-ref.html": [ + "c49bf5a21db575fe8f8ca7f29bcb70a22b884031", + [] + ], "will-change-abspos-cb-001-ref.html": [ "f81b9d2a2947bdaa5fd2d33dd9dd5f59dc730a11", [] @@ -334349,22 +338010,22 @@ "05957327c331a953cc907eeb5ffd2ba117f6f227", [] ], - "will-change-stacking-context-001-ref.html": [ - "38138ebcac3d73796e00173f6a84ba7edaa17cd2", - [] - ], - "will-change-stacking-context-002-ref.html": [ - "38138ebcac3d73796e00173f6a84ba7edaa17cd2", + "will-change-transform-add-content-ref.html": [ + "edbeaa7b69290ea2514dc85e0e3f47bd8247735e", [] ], - "will-change-stacking-context-003-ref.html": [ - "38138ebcac3d73796e00173f6a84ba7edaa17cd2", + "will-change-transform-huge-offset-scrolled-ref.html": [ + "c2af258e11161654a109d030596cfcca1f96a4d9", [] ], "will-change-transform-image-ref.html": [ "d42d5b7fea22d3d2bc2abf782b1efc78f261f69e", [] ], + "will-change-transform-inline-ref.html": [ + "b05c3c95acb99f063ad65d9feadbe9a186538716", + [] + ], "will-change-transform-zero-size-child-overflow-visible-ref.html": [ "6eaf422d2f2a3990d2268601f4fe78c9cff3881d", [] @@ -334567,6 +338228,10 @@ "9ba9a041f4ce57438fb0adf85ea156b211513ce2", [] ], + "direction-propagation-body-contain-root-ref.html": [ + "4371a0d87628093e23d794b33b868042d93b50a0", + [] + ], "direction-vlr-003-ref.xht": [ "f01f983898249c97ced81cff69f54e4d9042eef5", [] @@ -335064,6 +338729,10 @@ "91115a5aa9446a45f13261d49fe53a8dc09f3cc1", [] ], + "bidi-plaintext-br-001-ref.html": [ + "23bb3e9933458edd19f0378e4acbb39f6f5d04f9", + [] + ], "bidi-table-001.html": [ "076e17e2e52ac9e014df708d40f0fc25cdf6862e", [] @@ -335734,7 +339403,7 @@ [] ], "sizing-orthog-vrl-in-htb-013-ref.xht": [ - "f274aafa5920feddd0a201845c988adf73809ce7", + "597cac927f3a022c2cb504fd161734eda23f6d78", [] ], "sizing-orthog-vrl-in-htb-015-ref.xht": [ @@ -336671,10 +340340,18 @@ "1e6f6343b3c59e3654ef96037c92a89233cf3798", [] ], + "wm-propagation-body-contain-root-ref.html": [ + "150eba8bc932dfa079509cb422a4212a7a141238", + [] + ], "wm-propagation-body-dynamic-change-002-ref.html": [ "d7ddfd553d60bbb98243eb32090b76f24fe38113", [] ], + "wm-propagation-body-dynamic-change-003-ref.html": [ + "30e72f0df706a62c8e0ad97327ff1a625af731d6", + [] + ], "writing-mode-initial-ref.html": [ "6f7b84fa72ad042924dedba39503ed6ea40bbd20", [] @@ -336928,7 +340605,7 @@ [] ], "cssom-getBoundingClientRect-vertical-rl-ref.html": [ - "1ee4fe2652ff56655c20963f90810de6a979462f", + "0b68c4f210c95dde58ffac2442472321ef6480a0", [] ], "iframe.html": [ @@ -337367,6 +341044,10 @@ "8b000d96e3978b15bc08ba463ca9c139cdea7136", [] ], + "filter-cb-dynamic-1-ref.html": [ + "7b746b82b2e75d6b6026dab081e99248adc7c34d", + [] + ], "filter-contrast-001-ref.html": [ "1be00e8bba72ed3203819cb51586947535ac5096", [] @@ -338057,7 +341738,7 @@ ] }, "requirements.txt": [ - "28b20408eb011fbd2fad6665ed36b4bb8a4f5685", + "d437316311cd6c694da419dc6ae234dd2fa4d2f8", [] ], "selectors": { @@ -338380,7 +342061,7 @@ [] ], "computed-testcommon.js": [ - "1db50b0c10702f456fecc4cac8a52a40873fd8b8", + "42cc17652e169f07fe930196d00caf5501d3788f", [] ], "green.ico": [ @@ -338408,7 +342089,7 @@ [] ], "interpolation-testcommon.js": [ - "999a1e0542858689f66c2afac50f43fd742476f8", + "9a5e86d31acc77c7706efecf855cdbc62a5cacb0", [] ], "numeric-testcommon.js": [ @@ -338777,7 +342458,7 @@ [] ], "descriptor-pad-ref.html": [ - "8d47b10f7e53230553ff0298fc973e12bf60c062", + "444368a61a115fcef6d02f5407a85b9b9ffde8c1", [] ], "descriptor-prefix-invalid-ref.html": [ @@ -338821,7 +342502,7 @@ [] ], "redefine-attr-mapping-ref.html": [ - "744aa32855492b9b8cee9e170ca7de9cab7dc70e", + "57d4fd0a7e206e0c7d90cfd9c6b1a64b8173b376", [] ], "redefine-builtin-ref.html": [ @@ -338887,92 +342568,6 @@ [] ] }, - "filters": { - "filter-containing-block-dynamic-1-ref.html": [ - "7b746b82b2e75d6b6026dab081e99248adc7c34d", - [] - ] - }, - "fonts3": { - "font-size-zero-1-notref.html": [ - "9e95ca66ec75caeaa104b7f9eea14ace52f7f46b", - [] - ], - "font-size-zero-2-ref.html": [ - "2aea76d74d479de7497a0fbb53fd89527e87708e", - [] - ] - }, - "ib-split": { - "emptyspan-1-ref.html": [ - "a66a85e762d7d7186b8ddc190d9a2ae7ce19f7a3", - [] - ], - "emptyspan-2-ref.html": [ - "941044b92600db9a536436d3a65a7e7b59da1529", - [] - ], - "emptyspan-3-ref.html": [ - "629c3424ca5c0e17a1c60446aad3214b15dbc7d4", - [] - ], - "emptyspan-4-ref.html": [ - "af74e690e182ab018c66eb8223d84392e03bacfd", - [] - ], - "float-inside-inline-between-blocks-1-ref.html": [ - "d9146e2ae098396623628343ce1417866087d691", - [] - ], - "percent-height-1-ref.html": [ - "0f74e18a85a0539026e9c85c61cd773f2be9fa3c", - [] - ], - "remove-from-split-inline-1-noib-ref.html": [ - "7b8a141e7865fc1ae2541c94a64d398ba177535f", - [] - ], - "remove-from-split-inline-2-ref.html": [ - "9fd41e13849ec3e65c8216bf7d192c5ef93f4091", - [] - ], - "remove-from-split-inline-3-noib-ref.html": [ - "124b8fd8909352aec9c57951e960835d3b280df9", - [] - ], - "remove-from-split-inline-4-noib-ref.html": [ - "10c563ce5405ad01085249e96c30be807058bc0d", - [] - ], - "remove-from-split-inline-5-noib-ref.html": [ - "8bd8802f6652af6545cfdf0dfb7ddbc364600bbd", - [] - ], - "remove-from-split-inline-6-noib-ref.html": [ - "7678e811c0d6f568ea7ba4317cde2b03a4cfde84", - [] - ], - "remove-split-inline-1-ref.html": [ - "cf4cfffd50350f165a4ca85a4abe2a0c3a190c9f", - [] - ], - "split-inner-inline-1-ref.html": [ - "3f2a82f83c10707c5d000afba83805a8d1934f87", - [] - ], - "split-inner-inline-2-ref.html": [ - "1ace2f8fb64e500ab13fb88a44042063822244f2", - [] - ], - "table-pseudo-in-part3-1-ref.html": [ - "b21050370d4819ed10910bcfc4f2ff763cc4c8e6", - [] - ], - "whitespace-present-1-ref.html": [ - "46cac675c51137ccd1214a6971e3705c37c28877", - [] - ] - }, "masking": { "blank.html": [ "abb1b5472843b7bcf63c946897cd66da456033e7", @@ -339707,16 +343302,6 @@ [] ] }, - "will-change": { - "green-square-100-by-100-offset-ref.html": [ - "fee7030b6d047ff5ca9be9b6d0d69cd33e95af5c", - [] - ], - "green-square-100-by-100-ref.html": [ - "c49bf5a21db575fe8f8ca7f29bcb70a22b884031", - [] - ] - }, "writing-modes-3": { "dynamic-offset-rtl-001-ref.html": [ "4f7275901187d031aad88ca881a3687a11eec93f", @@ -339849,13 +343434,21 @@ [] ], "density-corrected-size-pseudo-elements-ref.html": [ - "b2c9de4114e1e69192c8436beecc7ae3d07ce061", + "d209253fa2a277e88276c8ee62e4607e705d92c6", [] ], "density-corrected-various-elements-ref.html": [ "a0be0ac8d80f541038d0cdd1132afa4a05220392", [] ], + "image-set-001-ref.html": [ + "69c3dc173196dc46e2ed604f4d662189597b6f8c", + [] + ], + "image-set-002-ref.html": [ + "3fc55e8aac45f39443307a46146c805e9ae6aaee", + [] + ], "resources": { "exif-resolution-no-change.jpg": [ "04f9202cfcc5ffcf5934b42c0fff9e7c4b0c541e", @@ -339894,6 +343487,10 @@ [] ] }, + "srcset-ref.html": [ + "630bf5ce146de3159bbd3a6e5dc302e96c4e321c", + [] + ], "third_party": { "piexif": { "LICENSE.txt": [ @@ -339946,7 +343543,7 @@ ], "admin": { "index.md": [ - "59569fd464c46c2010a48c8c62d8bfdd88b021c1", + "7acecdfd7c34a90e48a4ae19531f43ddf8654414", [] ], "pywebsocket3.rst": [ @@ -340029,7 +343626,7 @@ [] ], "index.md": [ - "419c99aca9d78c259235dbaa9e8ab662930ffb81", + "b0ba0340d621777cb50f63a0cb1407c5d4179a79", [] ], "intro-video-transcript.md": [ @@ -340041,7 +343638,7 @@ [] ], "requirements.txt": [ - "281c9229ef878e458076ac4ecaa344e8f67337e4", + "aa1484a7bb23a9e4b13d95960d9bf0cc62c23653", [] ], "reviewing-tests": { @@ -340072,7 +343669,7 @@ [] ], "chrome.md": [ - "c56d3c56f846f0318e452765192df27beb05e2b9", + "808639e927ab52d66c4e3c68c56457558e2d0694", [] ], "chrome_android.md": [ @@ -340092,11 +343689,11 @@ [] ], "from-local-system.md": [ - "53f6a1fb98d58f900e34895a9461332512e8c06c", + "1cc1e75eea396797e1818593a4ff9ff4dd9e96ba", [] ], "from-web.md": [ - "464febbfc0448d209deebd312c74dcb0a7304d3b", + "157598da36d2a0630f05943f734502e22c4188bb", [] ], "index.md": [ @@ -340117,7 +343714,7 @@ [] ], "wpt_lint_rules.py": [ - "b9997372520f3670a1047d3020ed2475f3f09098", + "01f965edfd370927cda0e110af05babda7aa30fa", [] ], "writing-tests": { @@ -340158,7 +343755,7 @@ [] ], "idlharness.md": [ - "4af4224e6448c75de3345325183e310407688657", + "e2abce0a48e910c154686617646f8adef900a417", [] ], "index.md": [ @@ -340220,7 +343817,7 @@ [] ], "testdriver.md": [ - "931499d7b2d25f040a5b71afea2d1eecfd9dbe9b", + "d8fa266424ac0f7bb98a035b460d9f06ac1a202e", [] ], "testharness-api.md": [ @@ -340232,7 +343829,7 @@ [] ], "testharness.md": [ - "49060bdd8e6cd7f29f851affdea83506cd6ca144", + "499b6436525ba5166690d81644de8a2236fd464d", [] ], "tools.md": [ @@ -340844,7 +344441,7 @@ [] ], "encoding.py": [ - "281aa0bce49162465f4a011fa50b8bbe831e213b", + "15edff7061f96b6f40fe42f6c4c09d3cdc07b643", [] ], "getElementsByClassNameFrame.htm": [ @@ -340947,6 +344544,16 @@ [] ] } + }, + "xslt": { + "README.md": [ + "ac713ce1798e3366a6aa8aaadf47348312592dcd", + [] + ], + "externalScript.js": [ + "7a2bf3622554937bf483a3b3afa9f16187fdabf6", + [] + ] } }, "domparsing": { @@ -341952,7 +345559,7 @@ [] ], "single-byte-raw.py": [ - "d1dbe45f7a8a666237fc03aa6bf0103cc23ba5a4", + "7e6bb4d408044c76d3c22a97fe0c9e720cea898f", [] ], "text-plain-charset.py": [ @@ -342004,6 +345611,10 @@ [] ] }, + "sharedarraybuffer.https.html.headers": [ + "4b06ac7cc63e8af6f7d6a882b960184c9a4ea281", + [] + ], "streams": { "resources": { "readable-stream-from-array.js": [ @@ -342083,6 +345694,10 @@ "c28380fe96211502d63c1dbe759805ec504833db", [] ], + "ja-half-width-late.sub.html": [ + "75be373315f1366c7900ffe3d619bc256cf2d6e1", + [] + ], "ko-EUC-KR-late.sub.html": [ "58b6f96e613e33abeac74cdb7b87b660ca2cea68", [] @@ -343254,6 +346869,10 @@ "76519fa8cc27abe9841b35f0f428207120f098e1", [] ], + "echo-content.h2.py": [ + "d3dcf596baeceb952e39b93a6e8b1ae60a3e97b3", + [] + ], "echo-content.py": [ "5e137e15d7d3b0f684b7a1a2aa0b27a719730eb4", [] @@ -343290,8 +346909,12 @@ "1a5f7feb2a4b329473d29d45c1b245c66258d8df", [] ], + "redirect.h2.py": [ + "69370145876958e1902a8a2eab3a94993849bc1b", + [] + ], "redirect.py": [ - "c8d481ebd3376d570b38802d2e55a2e8b5b09a33", + "2ff8b78f09539b35143b9b71cab565f3a7f08bd1", [] ], "sandboxed-iframe.html": [ @@ -343323,7 +346946,7 @@ [] ], "trickle.py": [ - "5091a2b3fddce7e9a44cf6ef94e922f79d913693", + "6423f7f36fe76f7ac37d68cb961ae216c9c4e40c", [] ], "utils.js": [ @@ -344109,6 +347732,30 @@ "f22fa98076fde127961c9b58fc5f76db55b21a42", [] ], + "focus-already-focused-iframe-deep-different-site-outer.sub.html": [ + "aeafd9b5b30c375c07d5e2e0c9e3017f5a3e3b63", + [] + ], + "focus-already-focused-iframe-deep-same-site-outer.html": [ + "69d47f44d7a39c9ba2524027eb0f80a444b7009a", + [] + ], + "focus-already-focused-iframe-different-site-outer.sub.html": [ + "54d16af68df1e0da3846ce9e2c6dee5b8e8ac322", + [] + ], + "focus-already-focused-iframe-inner.html": [ + "6b3b4db84398d81df939789d42a6cae0fdc87f12", + [] + ], + "focus-already-focused-iframe-middle.html": [ + "71d9b71c349acebdacc51ae64a2e20412bfc0b59", + [] + ], + "focus-already-focused-iframe-same-site-outer.html": [ + "cc4efe85412337995d8f0040afac3f868c4616bb", + [] + ], "focus-event-after-different-site-iframe-gets-focus-outer.sub.html": [ "c59b2ce72f8dcbab5528e9ea0d1c2f39062503fd", [] @@ -344169,6 +347816,22 @@ "4ccba143d3ac9e89e768e252d05abd4892b8e5cf", [] ], + "hasfocus-different-site-outer.sub.html": [ + "bf91adb59e585c2e96145a7088c18e6d3ba82045", + [] + ], + "hasfocus-inner.html": [ + "40d42bbc25c6791df705ea6ffa75d93de193bac9", + [] + ], + "hasfocus-other.html": [ + "910b6d7970f5e57ec975df33c6ed2243cbb36d5b", + [] + ], + "hasfocus-same-site-outer.html": [ + "d6f93d87a0b5a93313deafc5603b0166642f42fb", + [] + ], "iframe-activeelement-after-focusing-out-different-site-iframes-outer.sub.html": [ "3fcebfc8ba4c69307ab7e67430d3668d2620f6fb", [] @@ -344262,7 +347925,7 @@ ], "resources": { "test-expectations.js": [ - "844eb92f95eaf5f2406eb60a8cccb78a5c8484b3", + "ea3803c8c2185c921b2d64f0bdd382d8e0df331c", [] ], "window-tests-blob.js": [ @@ -344990,43 +348653,43 @@ ], "backplate": { "forced-colors-mode-backplate-01-ref.html": [ - "13930461dc4fd55250519ebd5d09132b6983b923", + "9365ff2c1eadd05cfbce356a045ea6b88ce6caff", [] ], "forced-colors-mode-backplate-02-ref.html": [ - "c193353dea40de1ec9b5ffd77bc6c23c92eb2bc0", + "992ced6893514aaed62d1d9a706e04a81bd26541", [] ], "forced-colors-mode-backplate-03-ref.html": [ - "b2ed549c40c9b4358fe6e2a13709695a4d8f33ae", + "9a4ccff7fee3af5153c4141e8e758cc97f38b307", [] ], "forced-colors-mode-backplate-04-ref.html": [ - "52a230ab48ae07b441244666189c89ebf3dd532b", + "ddf54c6b8f756d17db74dd264c56cca8dc8a866c", [] ], "forced-colors-mode-backplate-05-ref.html": [ - "d1ea443ab21e6e37026ee11429812e738d9e6302", + "28b6f1888dc86ca3e3979318d9cfa831b82384e1", [] ], "forced-colors-mode-backplate-06-ref.html": [ - "8d5c988f014a9dc5d0e668cd7ce832ca4cd6b0ac", + "642bd72da604ee97813a2b90d7313b6494287e98", [] ], "forced-colors-mode-backplate-08-ref.html": [ - "18df12eff8b842515177e3c41014462dfc8d4541", + "6cefe66be2c98d9544ef721d48c07c02c4fd97b6", [] ], "forced-colors-mode-backplate-09-ref.html": [ - "51aca00836fb859c8d80a1aab38c23f60150b00b", + "2bbe08a5d1c607825a527309b2207abc8fa980c2", [] ], "forced-colors-mode-backplate-10-ref.html": [ - "b5b58bd567aab224c4bc79fc07a044548c1b3421", + "35eb521b81dc0cba7a96f3afa3ce2773982e41a4", [] ], "forced-colors-mode-backplate-11-ref.html": [ - "29486d51ce0933c16893267b0401c8a7e75f237a", + "727afad6caf68f7f47c3d8399e141033315d79d6", [] ] }, @@ -345172,6 +348835,10 @@ "9885466ebb5540246b80fcf39dbd461ab6cd5721", [] ], + "echo-fullscreenEnabled.html": [ + "ad5edf79866273d0debb2dbc438e6dec6f305cd3", + [] + ], "recursive-iframe-fullscreen.html": [ "f28afddac72ecd5c33f6adcbeb374a93e82044df", [] @@ -345286,11 +348953,19 @@ "779d5b4af08428c45023fc9d519ab0830d866a87", [] ], + "clamped-time-origin-isolated.https.html.headers": [ + "5f8621ef83660c66f0d037ea28fafefb558140f1", + [] + ], "cross-origin-isolated-timing-attack.https.html.headers": [ "5f8621ef83660c66f0d037ea28fafefb558140f1", [] ], "resources": { + "clamped-time-origin.js": [ + "09967ed6d17ec0c302455d878d85034046db89a2", + [] + ], "now_frame.html": [ "5bec688af9cd3c02ef00055d5bf4642841c04951", [] @@ -345580,6 +349255,10 @@ "0b49e13d651d0fde96e112752f4c19f89b4398bc", [] ], + "message-parent.html": [ + "3656358f2db4c2e6c02f9d9964bf61cde282e694", + [] + ], "redirect.py": [ "3c78c256b02fd9be3bce4a4002b81ced999cf276", [] @@ -345965,6 +349644,20 @@ [] ] }, + "resources": { + "message-opener.sub.html": [ + "441c08c0eae84614346c8dd9a160b9ecb5463337", + [] + ], + "traverse-during-beforeunload.html": [ + "53a4a1886eff15e4356530403a5b3fa58ed79312", + [] + ], + "traverse-during-unload.html": [ + "d5ffb7abae819737aa9a72578a43d3113a3a12c6", + [] + ] + }, "traverse_the_history_1-1.html": [ "a11fcf2d2d2f9bd8abf2d01c49e030433fc61e2d", [] @@ -346874,26 +350567,6 @@ ] } }, - "document-access": { - "resources": { - "child.html": [ - "614b6a087ddb690eb6183287e90ba43a3967f3bc", - [] - ], - "cross_origin_intermediate_child.sub.html": [ - "9386a2f4233eac53674a6ea328a9e0747d26a1ad", - [] - ], - "cross_origin_intermediate_child_remote.sub.html": [ - "93f6da93612a530da6a00201f66caf35d53beea3", - [] - ], - "cross_origin_intermediate_grandchild.html": [ - "d91a23443a1d9d530151d757429a683d7f8f138e", - [] - ] - } - }, "iframe-nested-print-ref.html": [ "c36c459881cb0a6c3d85fa20a20d39b1c2d30b3c", [] @@ -347699,6 +351372,30 @@ [] ] }, + "fill-and-stroke-styles": { + "conic-gradient-expected.html": [ + "f347abc9d3939fb52c4fe08d949f8d96c4de3386", + [] + ], + "conic-gradient-rotation-expected.html": [ + "68d750f462c23ed84a38bbfc09485f9ccd01dbf0", + [] + ] + }, + "filters": { + "canvas-filter-object-blur-expected.html": [ + "ae8911b2de39e593c2ef262ed9cd5eaa70b5bf0c", + [] + ], + "canvas-filter-object-component-transfer-expected.html": [ + "a2351cbcf2aca7aa49e1e61b0dda78d991df8764", + [] + ], + "canvas-filter-object-convolve-matrix-expected.html": [ + "896a93542ec507f1873866f47c77051e7d08a0e3", + [] + ] + }, "imagebitmap": { "common.sub.js": [ "aa1e382a2088fee541a1020a03a4299a3b18d6cd", @@ -347708,6 +351405,10 @@ "67a0904e479323e4a159937f49919580109fbc61", [] ], + "imageBitmap-from-imageData-no-image-rotation-expected.html": [ + "64b1791afefaf96756aefc9b04e3d7e120e8a307", + [] + ], "transfer-worker.js": [ "55465a899ca27d5202dfa796ec5200bde845892b", [] @@ -348099,7 +351800,7 @@ [] ], "canvas-tests.js": [ - "7d09dcfde7540ea084eb3919f8f7bd8ba4485d12", + "0ca844403688cb6782f7d37e191b9ac37c1a66de", [] ], "canvas-tests.js.headers": [ @@ -348108,10 +351809,6 @@ ] }, "tools": { - "LICENSE.txt": [ - "b248aa87ee41a88a6153f956a73da1ab668848d5", - [] - ], "build.sh": [ "f69fa4ff17d9ffe18559c34546139872c6a8e2e2", [] @@ -348121,31 +351818,35 @@ [] ], "gentestutils.py": [ - "1ff2c77939695039601bb8d31e11d10b5962e3fe", + "0e70eaa7174b99770b44ef3bf3a1bf9a242c8dbd", [] ], "name2dir-offscreen.yaml": [ - "6c51e2b8d400c67373f332863e7cd8ac0b885497", + "4ac261fe325fddc6563f49423c400a15e4884563", [] ], "name2dir.yaml": [ - "485c070fb06d1f636a14867b06967fced9b86497", + "8f3c2c9d35eb6fed2d2031faf86b5f19883db4cc", [] ], "spec.yaml": [ - "34f013fcd713affb8e0cc7e8324de55535f6396d", + "9ccadf7b9293253f56a79f02149d2fe360a59677", [] ], "templates-offscreen.yaml": [ - "b9d78567cc20afb8ff45826b307412d8a1190dfd", + "acf7535ff3dab38b8750bad54c7286f1643f7488", [] ], "templates.yaml": [ - "6b02200362e3413fc5a2a0b5fbbbf3737347d345", + "af0e656dd6d27e920ebe96541c25053c652d20b7", [] ], "yaml": { "element": { + "color_space.yaml": [ + "e64d6fb9777dc0c59d66f4bbb60915957266c369", + [] + ], "compositing.yaml": [ "2ad2fc7586adec1522b0c9cd2128a0fb50b5e69d", [] @@ -348163,11 +351864,15 @@ [] ], "drawing-text-to-the-canvas.yaml": [ - "0d7bbfde91df96144a143c028927297e6a254648", + "99094c1410c7063e6437c95e0cb267f65f08f126", [] ], "fill-and-stroke-styles.yaml": [ - "b85d1afff47373e1123424579a31b3ff20a6178f", + "f52a3e24c61e527d620066720f75443e99406236", + [] + ], + "filters.yaml": [ + "3ba9bd6ec950f714831b13ef880938963db55a0c", [] ], "line-styles.yaml": [ @@ -348179,7 +351884,7 @@ [] ], "path-objects.yaml": [ - "6a08c885558eaa76f50674a3fd8352828247acab", + "36194b19ce3c68aa08b33bfbf55e36d0c7d6c5d2", [] ], "pixel-manipulation.yaml": [ @@ -348195,7 +351900,7 @@ [] ], "shadows.yaml": [ - "284047c0bb6a363500d8001538dfba4c782bd1cf", + "599c00804d7cf9746d95c16244c97455e68fbd8d", [] ], "text-styles.yaml": [ @@ -348211,7 +351916,7 @@ [] ], "transformations.yaml": [ - "65346ca1f800f36ad35afbc4510fad56b62a3bf6", + "bca161728bebd88ae6f281d3fd31f9eab09cba86", [] ], "video.yaml": [ @@ -348220,6 +351925,10 @@ ] }, "offscreen": { + "color_space.yaml": [ + "0a1c4474fb49a4d2e146ccaafd90bf2a5a643963", + [] + ], "compositing.yaml": [ "62f9ccb693c4532b64a40bed090e8f31f507d52c", [] @@ -348237,7 +351946,11 @@ [] ], "fill-and-stroke-styles.yaml": [ - "841e313a1346a8cd2fa63d88ff2ec0bc732c88f7", + "73089d0411f2b5f670995c3aa0935124c78c2d90", + [] + ], + "filters.yaml": [ + "d51b7f88fff398223badee1aab239b1fe867e138", [] ], "line-styles.yaml": [ @@ -348249,19 +351962,19 @@ [] ], "path-objects.yaml": [ - "d0e0672292c6fdcdf1c1757b0b4ddad0251baf2c", + "b8906eb650174e6a3625003e9cfa85aab71f7f94", [] ], "pixel-manipulation.yaml": [ - "b39bb073b43e5b0397f7e7814a45760ad6974721", + "b4ff2da712b74cf151154a1dc14dd256a30f5c87", [] ], "shadows.yaml": [ - "424510d742f3673e90e5e60581c13c45a2446c8d", + "28f5d4bfae7f89ab665f94b3d3cafb0c1aab11d0", [] ], "text.yaml": [ - "55fa889797867301c782fbff27f353e9f4329608", + "6a80ff2351f7bc2a51b4e433686bce75f496de27", [] ], "the-canvas-state.yaml": [ @@ -348269,11 +351982,11 @@ [] ], "the-offscreen-canvas.yaml": [ - "1a1ac7b4d3b38ab01c0243314548b4eff3113098", + "2ca8f9a9587ea0a4d35c6db122f0d2aad94ed986", [] ], "transformations.yaml": [ - "6c439ef9cf8ac0815be24a5b314f63085fe07534", + "5a784f4025c6a99edfdfe9356be03377b6b97a33", [] ] } @@ -348289,6 +352002,14 @@ "16179eb0133a9e14667e127da05f3dc796975875", [] ], + "anonymous-iframe": { + "resources": { + "common.js": [ + "9134d2063e606c0858592c69bd20fef8758523eb", + [] + ] + } + }, "blob.https.html.headers": [ "6604450991a122e3e241e40b1b9e0516c525389d", [] @@ -348302,21 +352023,13 @@ "57de8e535337523be10d3a2bfff132cd87865e41", [] ], - "cors-or-credentialless": { - "resources": { - "iframeTest.js": [ - "1e3038e0e26e40dfc24281584a3d9e8c2295e9e2", - [] - ] - } - }, "resources": { "common.js": [ - "f7fbf532d83030d338f1be9b64fdf106da3eeab1", + "0e7816d339010b4f4ec720c54c35dd5ca63d22d1", [] ], "dispatcher.js": [ - "ed0e1ce9fbca7ed6b7f347efaf1bed6027f1b700", + "122983e85e1d6b11f8f2fba5063af8d77d643d63", [] ], "dispatcher.py": [ @@ -348326,6 +352039,14 @@ "executor.html": [ "7a390a3d7e9916b6d6f9df6e6476e575515f8d72", [] + ], + "executor.js": [ + "ea065a6bf1195555dd080cd1abf2a63eb5fbde8d", + [] + ], + "iframeTest.js": [ + "501a864d4677e1c7e5ddc0b4c4868ac8712e4723", + [] ] } }, @@ -348341,6 +352062,44 @@ "6604450991a122e3e241e40b1b9e0516c525389d", [] ], + "multi-globals": { + "current": { + "current.html": [ + "e6261f83883fb20b2aaa542746fa45abed917742", + [] + ], + "current.html.headers": [ + "6604450991a122e3e241e40b1b9e0516c525389d", + [] + ], + "worker.js": [ + "44103842a40d44c39dd0081dd8ef736d04df3e12", + [] + ] + }, + "incumbent": { + "incumbent.html": [ + "d8bd1ae2c0f2c6d0eb6b09e4ca93997f5836443e", + [] + ], + "incumbent.html.headers": [ + "6604450991a122e3e241e40b1b9e0516c525389d", + [] + ], + "worker.js": [ + "03f02a8690867d88aadf2135e98db505cf6722fa", + [] + ] + }, + "worker.js": [ + "fcc521e3137046515ed877e1ce8d2b90069625bc", + [] + ], + "workers-coep-report.https.html.headers": [ + "6604450991a122e3e241e40b1b9e0516c525389d", + [] + ] + }, "no-secure-context.html.headers": [ "6604450991a122e3e241e40b1b9e0516c525389d", [] @@ -348470,12 +352229,12 @@ "2fe40526ea9523ab4a7de45ffcfdb6ba39f92ce7", [] ], - "reporting-empty-frame.html": [ - "b1579add2e033e9dfc6c8bb18f9e523b246326ac", + "reporting-empty-frame-multiple-headers.html.asis": [ + "c0b352f1c785e27c5ebcb1ac68e5309bdbb9f975", [] ], - "reporting-empty-frame.html.headers": [ - "b7c8b304178b4f4aa213703d6870e84267acba6c", + "reporting-empty-frame.html": [ + "b1579add2e033e9dfc6c8bb18f9e523b246326ac", [] ], "reporting-worker.js": [ @@ -348502,6 +352261,10 @@ "ac7a1fda06f6237973264abf6f2b1b62e746e6ab", [] ], + "shared-worker-fetch.js.py": [ + "112d7ecbebc21d1340baaba6db7a7daed22e79c4", + [] + ], "sw-store-to-cache-storage.js": [ "00b9e9395a7ec2171b3fee9d75f6ccb1d46ee60f", [] @@ -348513,6 +352276,14 @@ "universal-worker.js": [ "5d46edcde24c1854c19069d967038c493d7e24f0", [] + ], + "worker-owner-frame.html": [ + "509c904d2b1de5a7b284bb635b792ce4acc91d86", + [] + ], + "worker-owner.js": [ + "d1f172a0b87c73d3591345c9b232bf40b7656eed", + [] ] }, "sandbox.https.html.headers": [ @@ -348765,11 +352536,11 @@ [] ], "common.js": [ - "a9412c6bb802eb3742fe98e0b2a4f4cc419abf68", + "3286245efab363abdd438590865481af6a96f00a", [] ], "coop-coep.py": [ - "04b673bf2d97322b6558e966e1c3c646ba12c266", + "33c4ac22b222d0f1054d779ffedfcebf51f5c345", [] ], "coop-same-origin-repeated.asis": [ @@ -348793,7 +352564,7 @@ [] ], "iframe-popup.sub.html": [ - "748fd996cfbb5dceec670033308fa68502d70cb0", + "30692e4730c77f7cfd36f74538f7544628aba71d", [] ], "javascript-url-same-origin.https.html": [ @@ -349142,12 +352913,12 @@ ] } }, - "the-innertext-idl-attribute": { + "the-innertext-and-outertext-properties": { "getter-tests.js": [ "fd32e8d69a37e0c01adb642bcdf403b633428ed2", [] ], - "setter-tests.js": [ + "innertext-setter-tests.js": [ "99ae5ec18516ed7b25176da2da49478587ec084f", [] ] @@ -349160,7 +352931,7 @@ } }, "elements-embedded.js": [ - "c4b572cf309d17542746f3fcd98cf94baeb23817", + "c5b4520cc6e776cf49a15bc983dc1d5220134419", [] ], "elements-forms.js": [ @@ -353147,6 +356918,10 @@ } }, "form-controls": { + "input-placeholder-line-height-ref.html": [ + "856146dec40a9d9a21aca3ecf46fbaeae74a6e76", + [] + ], "select-sizing-001-ref.html": [ "c59a6e1d987eefea0e357745ce52d4d0892b07ff", [] @@ -353169,6 +356944,18 @@ "4fbc5aca974bffeade2e97e8fa4d0f183a847464", [] ], + "ol-display-contents-ref.html": [ + "f9fce33313801eeab34b092f26ec9504adfb0e0a", + [] + ], + "ol-start-display-contents.html": [ + "226570e935f0de151fb42281ee6ccf3d56ca4b51", + [] + ], + "ol-start-reversed-display-contents.html": [ + "dd6fff0fd8e52570e0a82d07adcb98505ac80c19", + [] + ], "ol-type-supported-ref.html": [ "fb61db3261cd5bc75a6a23382cad371fab31f8ae", [] @@ -353539,13 +357326,17 @@ "7768379e9153b02bb90859cfa0583296df78e9dd", [] ], + "number-placeholder-right-aligned-ref.html": [ + "61dff1e4607586c013de657c6c136aa6f83bf254", + [] + ], "object_border-ref.xhtml": [ "6eaaa0ba1412e3ba834f33226534685dcf177e17", [] ], "resources": { "aspect-ratio.js": [ - "53226c38f5c9ac661c31a73ae360a5940acdbb33", + "c6826f271a5ca9814c13a46675d6483c816ba6a9", [] ] } @@ -353559,6 +357350,16 @@ "9481e80ac81b14cc7c4a044b16cc3e8cf5d547e6", [] ], + "resources": { + "tall.html": [ + "3de84d0b3f73b92228c57f3ad0590205c360427b", + [] + ] + }, + "tall-cross-domain-iframe-in-scrolled.sub-ref.html": [ + "01c1e2f86f4dd4f610f9070101a83de6d7bdd045", + [] + ], "video-controls-vertical-writing-mode-ref.html": [ "9a2d1d064139b4f58dc06c1d588c50b89a97aaec", [] @@ -353649,6 +357450,12 @@ ] } }, + "support": { + "test-ua-stylesheet.js": [ + "46bd9618a66511bb62f97db454f5bb21d7ccea83", + [] + ] + }, "the-css-user-agent-style-sheet-and-presentational-hints": { "body-bgcolor-attribute-change-ref.html": [ "43f0c6dd200187fcb294e7691438c4a166e6469d", @@ -353668,6 +357475,22 @@ "1f09e7e75f9126982a07902ae0693f9ea2fd5823", [] ], + "summary-display-flex-ref.html": [ + "083dba87959215f1bd6d201a04cb60ecd962538d", + [] + ], + "summary-display-grid-ref.html": [ + "a7c4c4c014f068e21c045dee2661cae7276b4a05", + [] + ], + "summary-display-inline-flex-ref.html": [ + "25a9b315f4acd69e10d291189983d24a43dfe179", + [] + ], + "summary-display-inline-grid-ref.html": [ + "f6a8b04bec38e77b6ce95cf7b182ab0588242d42", + [] + ], "summary-display-list-item-ref.html": [ "31e98d3fdca8fff9fe88929c8075643fca3abb40", [] @@ -353722,7 +357545,7 @@ }, "resources": { "common.js": [ - "d23495ef8d18271e384c62f0076c4e4a2638e443", + "63c1cc8522b0ec2e1576b245dd27d169c7a4b7d0", [] ] }, @@ -354696,6 +358519,10 @@ "bb3dbd31182e91f43c3caa0cb8bb7ffbad485177", [] ], + "iframe-with-object.html": [ + "c983a9d36d10b62e245ccb9377370f7a73511916", + [] + ], "iframe_sandbox_001.htm": [ "051ca5ecd78a17f499d3df76b0bd8f1b6a9dbade", [] @@ -354836,7 +358663,7 @@ [] ], "404-response-with-actual-image-data.py": [ - "e98cf03cf530d1187cf41e71a940c93a42b3a248", + "083aa90b4152f5294ce641309a1afa4db0a48cc3", [] ], "available-images-ref.html": [ @@ -354881,6 +358708,10 @@ "f841dba31bd255b17afa8a1c7129b6998294c154", [] ], + "image-srcdoc-relative-uri-print-ref.html": [ + "160f9f50a14fea23ecab4cb5fda71ad824a96a92", + [] + ], "image.png": [ "d26878c9f22d53bb44be515fa9f0ffbb90a71cbd", [] @@ -354917,7 +358748,7 @@ [] ], "image-loading-lazy-in-viewport.html": [ - "e62fc9af4c2ef1b9f03b95ad71533bdc0fd41562", + "bafdacc883a7b1d1e72b208769d5d5af59083aa4", [] ], "image.png": [ @@ -355041,6 +358872,10 @@ } }, "form-submission-0": { + "enctypes-helper.js": [ + "53b76b019545a5fc84f011bd7c53910bec44272f", + [] + ], "form-data-set-usv-form.html": [ "ce87abd9570be5001caff24ee7fdec7d1bec3a5a", [] @@ -355051,7 +358886,7 @@ ], "resources": { "file-submission.py": [ - "23f8d3b6d184f002931b0f5b09a603530cbca49b", + "89cd182add99c5dcba96dda54e1b800e959518d3", [] ], "form-submission.py": [ @@ -355200,6 +359035,22 @@ [] ] }, + "the-selectmenu-element": { + "selectmenu-option-arbitrary-content-displayed-ref.tentative.html": [ + "e5b876cbb3a78a828004b7571d98ff94bd259265", + [] + ], + "selectmenu-option-arbitrary-content-not-displayed-ref.tentative.html": [ + "d12943105f8c47d32f47eec0aa773a9a98046bfa", + [] + ], + "support": { + "cat.png": [ + "85dd7324815b8f8ef1a1d0496224c1a0661db9d8", + [] + ] + } + }, "the-textarea-element": { "multiline-placeholder-ref.html": [ "0234ed64c9ad7155a42b254a5fe35a39535cbff8", @@ -355367,13 +359218,21 @@ "e7cb73c2b08ddcf80ca867f6ced9403436f649a7", [] ], + "popup-initiallyopen-display-ref.tentative.html": [ + "db1a3f2b044d174781a6c5ba961b7b43c21611ce", + [] + ], "popup-open-display-ref.tentative.html": [ - "660c4e0d79c07818cc0e98face8c7f3c4cd7a583", + "622a077c7c14286839a7d9b95656559e04cc6358", [] ], "popup-open-overflow-display-ref.tentative.html": [ "dcf59982d05bd6af0ef9b88651a5ed3416a9a70b", [] + ], + "popup-stacking-context-ref.tentative.html": [ + "a90890bb4e16d09e1e06a47ff25825425922154d", + [] ] } }, @@ -355480,7 +359339,7 @@ "css-module": { "resources": { "bad-import.css": [ - "796446b525ca03bf287e2abbdbbdae593b658bac", + "0ada27b6e83b209202f386ac964d600d337d733f", [] ], "basic-large.css": [ @@ -355488,11 +359347,31 @@ [] ], "basic.css": [ - "3ea2ef45339c41dc5a39b1f8494fe2d2d4eae0d1", + "e034ed9ac7c0a1cde5f0ef9857a639557e1e05fa", + [] + ], + "credentials-iframe.sub.html": [ + "38868dc95d00eafa6a0cd777483b9bba4b7f2974", + [] + ], + "cross-origin.py": [ + "d744fc9514d397af248c0b1b2d215f452d17ffd5", + [] + ], + "crossorigin-import-parse-error-with-cors.sub.html": [ + "1774ef36756834da4fa151e49a72f7a8e4cda090", + [] + ], + "crossorigin-import-with-cors.sub.html": [ + "f02a51d5569563c1dafecb1f488843d992dcc8b6", + [] + ], + "crossorigin-import-without-cors.sub.html": [ + "6236f79bc8f53925a993e28a83be9564d3f17c0d", [] ], "css-module-at-import-iframe.html": [ - "cce9e2163d76dc8af5081f80b6f06e51a54f647a", + "90f1223da074049e2ffe1bcff9642a64bd32db1f", [] ], "css-module-basic-iframe.html": [ @@ -355507,16 +359386,40 @@ "3d1be841cee24e90d10be47fb821f9f55937fbfe", [] ], + "integrity-matches.js": [ + "95be445311be7b3af57fdcc006b5dfc1ee1616cd", + [] + ], + "integrity-mismatches.js": [ + "af6fc24de4949e94d9d1bcb2471bb775c203a8b8", + [] + ], + "load-error-events.py": [ + "b61b1ca834e53dd4966115743278815565355fad", + [] + ], "malformed-iframe.html": [ - "f5c64f6b59e3e200c9d1015cf2e4e11efbd13388", + "cd049cb853283319a1502e068a847be57fa57234", [] ], "malformed.css": [ - "fb20336584e7745c495676c05e605e8d216037a0", + "592e5064d1678601ccd2e3556a7bf09e0f687a16", + [] + ], + "parse-error.css": [ + "2bee3ff9966cb5a84afba6e3f4fb843d5ad7394b", + [] + ], + "referrer-checker.py": [ + "c1eaed8e468b6e50a8a49d9e2a0cdccf4479c65d", + [] + ], + "utf-8.css": [ + "0a8b46656f1684410692862ae625202b1566cc7f", [] ], - "utf8.css": [ - "35d16cd1c5b0d6972ddfa888a2f81cc9a042eb9d", + "windows-1250.css": [ + "9beac4d618040083435e2a4077cc8c668f1bc00b", [] ], "worker-dynamic-import.js": [ @@ -355716,10 +359619,46 @@ "e77e32d3382e0a40e9682d11664a3c0d9f354523", [] ], + "credentials-iframe.sub.html": [ + "dbb9fe6d1a2679bdf716ae13b080dc45cb94c3ec", + [] + ], + "cross-origin.py": [ + "cd56c3628a087d9c8221720f3ceca385117f1c4a", + [] + ], + "crossorigin-import-parse-error-with-cors.sub.html": [ + "12c6a608832aabc2de231e094c9353b4c4a9a11a", + [] + ], + "crossorigin-import-with-cors.sub.html": [ + "01663d251693c93948b86f5502659ff1415a24b5", + [] + ], + "crossorigin-import-without-cors.sub.html": [ + "7849c6aeddf539759037165702b3eab3423709b4", + [] + ], + "data.json": [ + "14a0526ebb23f65992fa3558613e32df34421136", + [] + ], "false.json": [ "c508d5366f70bba37fcc09d128b6537c4adb2c79", [] ], + "integrity-matches.js": [ + "969c90c2907cc83abc2b828285b0badfd673723c", + [] + ], + "integrity-mismatches.js": [ + "3c88a98dbc5512f966cc937ac4c671da51e0b601", + [] + ], + "load-error-events.py": [ + "4018adcdf7cd8d6b1fbc9e25e2ff34bf0b495f26", + [] + ], "module.json": [ "f834b2a4e8fab045a4b224caa485e0ee666f04c6", [] @@ -355732,6 +359671,10 @@ "98232c64fce9360c79f119cf6de8f670f69f1c44", [] ], + "referrer-checker.py": [ + "e9f0f1789ba18a73e49bae06fcaa5b0f8447350f", + [] + ], "serviceworker-dynamic-import.js": [ "9466c6fbe409a790ee3eab5405b98b86b7842a40", [] @@ -355748,8 +359691,12 @@ "27ba77ddaf61532f217964734769a42cdabc17dc", [] ], - "utf8.json": [ - "7bb9edd2f79e820e08e28e13e0ad6998c7a4c826", + "utf-8.json": [ + "088d98235873d4dd5107ef2f00b10625773fe8db", + [] + ], + "windows-1250.json": [ + "490e752ce93c75afad150e65af9737b7f4d9b3c9", [] ] }, @@ -356954,6 +360901,390 @@ "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", [] ] + }, + "xmldecl": { + "support": { + "ENCODING-trail.htm": [ + "d01acf5c913c01bc305842e2b4c0dbb992a034c8", + [] + ], + "ENCODING.htm": [ + "8e9cf2c37320698410fa3ea4171050a23848efbf", + [] + ], + "VERSION-trail.htm": [ + "0859f3bd43fd27a2a5655d8f4413537401cb3ba5", + [] + ], + "VERSION.htm": [ + "a98f7b9533170d7df03937a752693055d2390544", + [] + ], + "WINDOWS-trail.htm": [ + "909b5ce368f5c4a92073b6b9b1aa6e8e003f6bc5", + [] + ], + "WINDOWS.htm": [ + "25f068fbb46640533f79b00fc40e096913821798", + [] + ], + "XML-trail.htm": [ + "f9bb3d5d9b5173e5529a951a771253a30de682a8", + [] + ], + "XML.htm": [ + "c77b4225904c459ec4094fef3ca5ceb015ea4c24", + [] + ], + "ascii-decl-for-utf-16.htm": [ + "0c5e20b33e475940e0926acaa31d7f30e0d97aae", + [] + ], + "baseline-trail.htm": [ + "e9c0352bf73231af798dc24001fdd118e28d2084", + [] + ], + "baseline.htm": [ + "ff720a2da27092df922bc7c3c50e03de252e076f", + [] + ], + "cp1251-trail.htm": [ + "16687e7507f316514c7082fb15e43b837de28334", + [] + ], + "cp1251.htm": [ + "d9280840979c6b34a80abed198adbe773fdeaff5", + [] + ], + "encoding-equals-encoding-trail.htm": [ + "5d0885260156851e2594ab341bc34da63f0b8e89", + [] + ], + "encoding-equals-encoding.htm": [ + "fd12c188dcf94470912a05f6918fb1b6c7750c2b", + [] + ], + "encodingencoding-trail.htm": [ + "fee1949a10fa90ffe7c640eb201362a12eb7c1ff", + [] + ], + "encodingencoding.htm": [ + "67a3900d688f533adac72430c3db451e1f60616b", + [] + ], + "gt-between-xml-and-encoding-trail.htm": [ + "f5078bf6be805c61397df1a4feb60f193160e22e", + [] + ], + "gt-between-xml-and-encoding.htm": [ + "6427b6afd83fc8cf79d7b20ca0ff691cd2043f77", + [] + ], + "incomplete-utf-16be-and-meta-trail.htm": [ + "afee7ba0eb222fae4cc0a92dacafcba7c2b78bb3", + [] + ], + "incomplete-utf-16be-and-meta.htm": [ + "231c6551ab1c97c78a824dd2fe7335cfc512bbc1", + [] + ], + "incomplete-utf-16le-and-meta-trail.htm": [ + "a81fcb8f1512d07969438bd09dda90ce01e09181", + [] + ], + "incomplete-utf-16le-and-meta.htm": [ + "77f511f48d274cb20ad711b9b6880458f67182a0", + [] + ], + "kilobyte-after-trail.htm": [ + "71c61d11f7b86ed3198ee1fae9e187d27fbeec81", + [] + ], + "kilobyte-after.htm": [ + "76119c69a3d187c0720c9e7389fbd81deedd4372", + [] + ], + "kilobyte-before-trail.htm": [ + "f9ecc9f0819526b4b15d2ebde2c3f63d04b5c3c1", + [] + ], + "kilobyte-before.htm": [ + "8e209886a1a909a05029a5909fc11c1b1d950591", + [] + ], + "kilobyte-plus-one-after-trail.htm": [ + "2f9513bc183dda3f58109ccdf437ce030fa99a91", + [] + ], + "kilobyte-plus-one-after.htm": [ + "8a837b5e972768315d2afb698c3fd4082da556d8", + [] + ], + "kilobyte-plus-one-before-trail.htm": [ + "1f3fa5ad9e30263d1aa73052e29725100deb34c7", + [] + ], + "kilobyte-plus-one-before.htm": [ + "f0ddd21aa20200f830e535cb283350c3094ae8a3", + [] + ], + "letter-between-xml-and-encoding-trail.htm": [ + "bafb01454dfab3164427e6fb208cc59c57c8b63f", + [] + ], + "letter-between-xml-and-encoding.htm": [ + "93d012c85ec913b5e0b2ddedc6e15b1eb66aa315", + [] + ], + "lt-between-xml-and-encoding-trail.htm": [ + "65b6900357f2c64d0d8a148d57bfbf2e562e47d3", + [] + ], + "lt-between-xml-and-encoding.htm": [ + "240b44820fafbf84144351511d6b8610d1e998ab", + [] + ], + "meta-inside-xml-charset-before-encoding-trail.htm": [ + "39b048c23897955c57667b6fa7c972bf65f5d8fd", + [] + ], + "meta-inside-xml-charset-before-encoding.htm": [ + "4e548ad83c59bb2c645d6dee3c68caa7c8df37c5", + [] + ], + "meta-inside-xml-encoding-before-charset-trail.htm": [ + "e594801c099e263186606344af718304041acc11", + [] + ], + "meta-inside-xml-encoding-before-charset.htm": [ + "77725ed963c7b7177f2bc1bddc783bc60030ad04", + [] + ], + "no-quotes-space-trail.htm": [ + "79a3edf4926fed9f626138f46576d004b6287980", + [] + ], + "no-quotes-space.htm": [ + "354bbdcdd2bbb0947dba51eccf75ea11b7297a93", + [] + ], + "no-quotes-trail.htm": [ + "e0f5346728cfa6eb6c5f25f6f270972a9fe3abc4", + [] + ], + "no-quotes.htm": [ + "813ba1cdfe72f0a1f293935813ebec5538e2d5df", + [] + ], + "no-version-or-space-or-trailing-question-trail.htm": [ + "d7db8d1a7f24ae071e0cc115b4737cfcc2f7b488", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes-spaces-and-line-breaks-around-equals-trail.htm": [ + "861d873572147af4c5d0828bd4ab4eaa22f767ea", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes-spaces-and-line-breaks-around-equals.htm": [ + "677b440e041427ce6cf7dd9f436ae17e23ace55a", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes-spaces-around-equals-trail.htm": [ + "c7d2e31371bb60eedba4ce6ac4db3a87225ccd9d", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes-spaces-around-equals.htm": [ + "ae3b580bca7ba994b6d302888ec70a4e03403ec2", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes-trail.htm": [ + "75963c8648dbafbe4d85bc28a886165ef7aea6e0", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-single-quotes.htm": [ + "ba56539d6b13aa07d7d67b8d65a5f000d3b72bfb", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body-trail.htm": [ + "c873c4cd45dd08b459d87d99660c8f7c42633e24", + [] + ], + "no-version-or-space-or-trailing-question-trailing-body.htm": [ + "199471e8aba8ad3db70c0f88f7d45221d5b1cd17", + [] + ], + "no-version-or-space-or-trailing-question-trailing-lt-trail.htm": [ + "d5a51adca98054d1d17aaa90f9b5a407b1ffc39c", + [] + ], + "no-version-or-space-or-trailing-question-trailing-lt.htm": [ + "a6c04781f723bd34fad573d3ada81547dfc91ac2", + [] + ], + "no-version-or-space-or-trailing-question.htm": [ + "282f6842e87d8e294cf943f7dcba7211aff3875a", + [] + ], + "no-version-or-space-trail.htm": [ + "1d5ed249997d49cd14e10d0c12c4e045d6ccf8e7", + [] + ], + "no-version-or-space.htm": [ + "bcf5cdcf199ea9e18c67a502374b188b6a12e2e7", + [] + ], + "no-version-trail.htm": [ + "e25ca2e12f9b67e3f8e4b308ddad3f0da98b79d1", + [] + ], + "no-version.htm": [ + "a04995501d46ca63deb0ab9740297cdc0bc5928a", + [] + ], + "one-around-equals-trail.htm": [ + "32c67a03116bc09f8a6c1510eb989e36e6c12b81", + [] + ], + "one-around-equals.htm": [ + "fb5413dad8eb4cef7183885bee0a9454fd5f89db", + [] + ], + "one-around-label-trail.htm": [ + "372c8993b92cd9273e6521e8841238f36f91eeb5", + [] + ], + "one-around-label.htm": [ + "0a867feb83755bfa7f3a16f5f2177f7f302de57e", + [] + ], + "replacement-trail.htm": [ + "2179613d83afd0cae0ca787079a580ef09c1e5a1", + [] + ], + "replacement.htm": [ + "dc7d2d4ef560931cf314f42e26416e616bdbe621", + [] + ], + "space-around-label-trail.htm": [ + "4795ddf7d1088706ac9e38279c3ceb6d1e9640b6", + [] + ], + "space-around-label.htm": [ + "9e5a2eb817ae9af5fb604ee4afa8c367591a22b9", + [] + ], + "space-before-trail.htm": [ + "998efe5438a34b53eab8fa0cd44446d9e2966d5d", + [] + ], + "space-before.htm": [ + "e5c303abd87f3cf0190dc122a0a4d8fa4a0c6df7", + [] + ], + "test_support.js": [ + "ec3668d1bf699c15bd65a7413e887e0188e78aba", + [] + ], + "trickle.py": [ + "f1ef785c94621a0c41d1e352cd8441bb30d59ab6", + [] + ], + "unmatched-quotes-trail.htm": [ + "afc015cab2f3d49447110df0e236810a26372ce1", + [] + ], + "unmatched-quotes.htm": [ + "f4d05b390c628f5ba60385ab91174072b34a8bad", + [] + ], + "utf-16be-and-meta-trail.htm": [ + "5117f6002cfd3725b6f06a2e8fc5b6cac7ab5a6c", + [] + ], + "utf-16be-and-meta.htm": [ + "4b90b91c674880866940fb63868178de00540b3c", + [] + ], + "utf-16be-vs-http-trail.html": [ + "212095d0ee0b173055834521ff0f1f677f594eac", + [] + ], + "utf-16be-vs-http-trail.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "utf-16be-vs-http.html": [ + "18f24fbe501bbd67901d02a11ef437c73c40d11f", + [] + ], + "utf-16be-vs-http.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "utf-16le-and-meta-trail.htm": [ + "8f7adac8de2fb4383d0d3a91b84fb46d1670391f", + [] + ], + "utf-16le-and-meta.htm": [ + "e530d1e49d714f393f48a11fbe5882c76efbe434", + [] + ], + "utf-16le-vs-http-trail.html": [ + "f9d06553867bc1eed212d86adf7bd126e6f3c1a0", + [] + ], + "utf-16le-vs-http-trail.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "utf-16le-vs-http.html": [ + "466ac26e29cf8114f00fbff9f883fa1638ae27b5", + [] + ], + "utf-16le-vs-http.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "xml-and-meta-trail.htm": [ + "ddee02383dc9b920cad3debfd6f2968b1ca9c92f", + [] + ], + "xml-and-meta.htm": [ + "3e8f64be0fb127d22ea80556103e8f69f05d1b38", + [] + ], + "xml-vs-http-trail.html": [ + "e9c0352bf73231af798dc24001fdd118e28d2084", + [] + ], + "xml-vs-http-trail.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "xml-vs-http.html": [ + "ff720a2da27092df922bc7c3c50e03de252e076f", + [] + ], + "xml-vs-http.html.headers": [ + "e853d6cee5e0cb25824545284a7233497159a70c", + [] + ], + "zero-around-equals-trail.htm": [ + "60179cbbf34130fdbbcfe9b3c647ea7de4d34170", + [] + ], + "zero-around-equals.htm": [ + "7fecbca8303f62e91c5424fa6155cac58869c840", + [] + ], + "zero-around-label-trail.htm": [ + "761c76cfb396beb864e0b168fdaf9731c87656ad", + [] + ], + "zero-around-label.htm": [ + "dfc05b0b3f6f5e91ab6c0ae96cf142b60839a127", + [] + ] + } } }, "the-xhtml-syntax": { @@ -356984,7 +361315,7 @@ }, "tools": { "build.sh": [ - "968755121626a4a69866214cebcac56e39057bc8", + "b7e0f5f4b9651d89951c1403d95edc5ad8899a81", [] ], "html5lib_test.xml": [ @@ -357265,7 +361596,7 @@ [] ], "slow-png.py": [ - "7869856ed0c8e1b7d8538d015800c2ac76b45d35", + "fced22aa26d2593078965a4e4cb06677acbcabc8", [] ], "url-entry-document-timer-frame.html": [ @@ -358224,7 +362555,7 @@ }, "server": { "context.any.js.ini": [ - "ca095a18785a6d31070c02492a868c3b8d6e6606", + "80abbf836e311736450385c233fc80c755a6e680", [] ], "http2-context.sub.h2.any.js.ini": [ @@ -358232,7 +362563,7 @@ [] ], "http2-websocket.sub.h2.any.js.ini": [ - "6b7394fd13b4ae5c673cdd370756b6af0ccc688a", + "8b408fd0850a8cb3389ea877e0f87cbfaa3841d2", [] ], "order-of-metas.any.js.ini": [ @@ -358474,12 +362805,72 @@ } }, "interfaces": { + "ANGLE_instanced_arrays.idl": [ + "c7d1959502979490717e60d7f662b66a597d75a2", + [] + ], "CSP.idl": [ "fd08a33499b19ea7af2512e55ace7ee36eefa409", [] ], "DOM-Parsing.idl": [ - "9971262922083000b944e0de032163ce77812041", + "d0d84ab6972f02ae11f2e3a850749064d63fa299", + [] + ], + "EXT_blend_minmax.idl": [ + "9ce9e3aeebdd8d18d2dcb0fa3b68d37dafcc3dc9", + [] + ], + "EXT_clip_cull_distance.idl": [ + "61bbfab27e889a5c42914d4cd368f40cc9e5c287", + [] + ], + "EXT_color_buffer_float.idl": [ + "6d99af6282e39228539b4b8cbd36b1d3f17d4c7c", + [] + ], + "EXT_color_buffer_half_float.idl": [ + "f16a0514d9b739c3e968f6519e18c72e85fd87dc", + [] + ], + "EXT_disjoint_timer_query.idl": [ + "e42e591f7e8b375565c91296cec6debd6169f836", + [] + ], + "EXT_disjoint_timer_query_webgl2.idl": [ + "336c42b82ba12b8311c272065e8224782a493466", + [] + ], + "EXT_float_blend.idl": [ + "acdbfb54e104c52254be20efaddb58b62d4c64dc", + [] + ], + "EXT_frag_depth.idl": [ + "2011752f36b672ac35ccfdff0080c30fc30f3fc0", + [] + ], + "EXT_sRGB.idl": [ + "76e7f878c1cd0aeff307ddc4c010974ab524b87e", + [] + ], + "EXT_shader_texture_lod.idl": [ + "955002e6c18d5481ad92df0a234fdf61fbbb77d3", + [] + ], + "EXT_texture_compression_bptc.idl": [ + "58756f2402c089c2ef111b4546b69e94b0775979", + [] + ], + "EXT_texture_compression_rgtc.idl": [ + "c8bed9945b1b5ed5504e86c2a1d92a3b3bbe801c", + [] + ], + "EXT_texture_filter_anisotropic.idl": [ + "6a42fc017bd4765ee6545af435d755e3222166d0", + [] + ], + "EXT_texture_norm16.idl": [ + "bb1525cc225db8a52ed894b8f9bfb2958a8f2341", [] ], "FileAPI.idl": [ @@ -358490,16 +362881,124 @@ "d82391da7e65ddd02ced4af0daa9a83c364a46dd", [] ], + "KHR_parallel_shader_compile.idl": [ + "4001f16e978152afa74db9ad171a4bc404b7a1c0", + [] + ], "META.yml": [ - "e624c12d5b7ee4335b5d355d6ea2e43993b7fdd5", + "c1dd8dddf9eec3ab3fb58df01c549c251f3a3fdf", + [] + ], + "OES_draw_buffers_indexed.idl": [ + "25696f12fca77799ddd803483de22c251c75eb82", + [] + ], + "OES_element_index_uint.idl": [ + "f2d8c6ad13a3456bfdc6ec16f333d55199ea824e", + [] + ], + "OES_fbo_render_mipmap.idl": [ + "9a7d78a0a0f6747f983ccf2779735afbf0118c11", + [] + ], + "OES_standard_derivatives.idl": [ + "46da3d21aec42dacbb2941a29318aa4ad71e5217", + [] + ], + "OES_texture_float.idl": [ + "913886e93cf4d919d43528217e1a8860b02719c5", + [] + ], + "OES_texture_float_linear.idl": [ + "aa62590103feb8572fe387716492831e7841fe2b", + [] + ], + "OES_texture_half_float.idl": [ + "cefd643c4d0e94fe4fcc4e3293427c7aadaa2a35", + [] + ], + "OES_texture_half_float_linear.idl": [ + "dde3efbac63c1ab0628b7797170ffcc2462aac3a", + [] + ], + "OES_vertex_array_object.idl": [ + "c366b03b0a023ce04f23fd4b016b6e5b27d6e3fc", + [] + ], + "OVR_multiview2.idl": [ + "96a71ebd0fb69352717f9edf8559e62c0c8ea949", [] ], "README.md": [ - "e0cdf0bc8fb16e32e3ea5465247756957ec1b73e", + "7e1ce50a37d50cfa5f47bf6352be66295810baa9", [] ], "SVG.idl": [ - "e0b013bfa0bbe1dfb868518354e2d10cfe475606", + "11a5c7c299cd3b8c418bbb5dcad67b12923828ce", + [] + ], + "WEBGL_blend_equation_advanced_coherent.idl": [ + "647a6f844cbf5dc11ec14a57b64cb23eb02e977f", + [] + ], + "WEBGL_color_buffer_float.idl": [ + "ac66261d35f8bde288cbfeb2caa9723e91208186", + [] + ], + "WEBGL_compressed_texture_astc.idl": [ + "968e508474a05cd2fe5e72849c56490cf2c7713c", + [] + ], + "WEBGL_compressed_texture_etc.idl": [ + "45b7229494246b957cc0bdd4b16047c4d0a6adc7", + [] + ], + "WEBGL_compressed_texture_etc1.idl": [ + "bd2c5293ce7a05a17a034a5785d5084f02126465", + [] + ], + "WEBGL_compressed_texture_pvrtc.idl": [ + "7803c2986e43e7f8703a15e5f17a4102d99745db", + [] + ], + "WEBGL_compressed_texture_s3tc.idl": [ + "5aa9b42fb4b8a478bd12a0d2761bcca5ea44f7b1", + [] + ], + "WEBGL_compressed_texture_s3tc_srgb.idl": [ + "a6fcd24c717db6c521c436bfd8cc5c6db647decc", + [] + ], + "WEBGL_debug_renderer_info.idl": [ + "5fd1a127ac63d52229216a5e616352a0db213f0b", + [] + ], + "WEBGL_debug_shaders.idl": [ + "1f50c3ec9ab0d99dc8480103802b83a183aed1ba", + [] + ], + "WEBGL_depth_texture.idl": [ + "5502b9d51c2d7715eb945aaead57dd2d0379886e", + [] + ], + "WEBGL_draw_buffers.idl": [ + "c9ca092c3c7bf5801f0bb74d698c0d5208651c4d", + [] + ], + "WEBGL_draw_instanced_base_vertex_base_instance.idl": [ + "028a32042928eb954f3ca7cca19d64ac8a95c333", + [] + ], + "WEBGL_lose_context.idl": [ + "b4ced345a0677f0f0e49fda3d1b7235307e3ad0a", + [] + ], + "WEBGL_multi_draw.idl": [ + "d5ab6cf4f4606665294717161c58d5ae9afc341c", + [] + ], + "WEBGL_multi_draw_instanced_base_vertex_base_instance.idl": [ + "8dd3253a24cffa3b24ae145a378912d2ada260fb", [] ], "WebCryptoAPI.idl": [ @@ -358519,7 +363018,7 @@ [] ], "anchors.idl": [ - "6c07b434bf235e933586e4600232b9baede6579f", + "e92e7d10cdd146f08d276284ed616c896d9f2e3f", [] ], "audio-output.idl": [ @@ -358527,7 +363026,7 @@ [] ], "background-fetch.idl": [ - "1a0ed0e43cfafa23e9e7e9574d449659d2762048", + "993bd8bc2fd8db2a52fcc4b703e6b0801ab76ff8", [] ], "background-sync.idl": [ @@ -358563,19 +363062,27 @@ [] ], "construct-stylesheets.idl": [ - "7b65cb98bddc5a7fff9d3ced40ed395003337f72", + "249af039302648d0458b8c1543637e629948b68f", + [] + ], + "contact-api.idl": [ + "88142a77fb5cd0ea0f0815b5581c9f907e1054d4", [] ], "content-index.idl": [ - "436f6d90e75577dcb150ec93dd18c399880ac6c4", + "177c5b9f11d4e1dd48ebb407529a4e567d030f1a", [] ], "cookie-store.idl": [ "993b327fe70aa3e369e0bd7c7ea6dcdb227c60cc", [] ], + "crash-reporting.idl": [ + "7c8a0ff71f2ab026b48d7d36c2bf366ce2a7ecd9", + [] + ], "credential-management.idl": [ - "a2b062a7ffd864c32e43f161a40fdcfb058e9bda", + "a07aa0b4447cd3119dc5bd22c5c3d16679e3afe5", [] ], "csp-embedded-enforcement.idl": [ @@ -358586,6 +363093,10 @@ "82d34a3ea2a2dafb82abc7d1adfdea4641e826de", [] ], + "css-animations-2.idl": [ + "84f138e8abbfdd4ffaec367b82a00ffaa6ad3167", + [] + ], "css-animations.idl": [ "8185170943281bd1ceb8bb8fd3cd701a60fa290c", [] @@ -358603,21 +363114,37 @@ [] ], "css-font-loading.idl": [ - "c047b855b1fe1f6db6248d669c3b3dd96d35f40c", + "94e800030fe3be44c10872d8df25252b66a9ff72", [] ], "css-fonts.idl": [ "7282bffee8b3e01f29cfabb49f1eadc31801feed", [] ], - "css-images.idl": [ + "css-highlight-api.idl": [ + "56db8c35ac099bbfc79fb40b88a3ba14ab700f43", + [] + ], + "css-images-4.idl": [ "8866b008ccbf7dbca9d8e631da3f26013915bf00", [] ], + "css-layout-api.idl": [ + "2b772d5b84a4f23991704d1115edffea93646037", + [] + ], "css-masking.idl": [ "72fbd9aa1ffb576802102a82bf97259e3bf60078", [] ], + "css-nav.idl": [ + "03f039e4cb54f5f714bc252e7bfbd609ec769ed2", + [] + ], + "css-nesting.idl": [ + "25afacbcc36f45f8414e11a96618da1aa8089d54", + [] + ], "css-paint-api.idl": [ "0924c535566779e4f20ee89360df3c334943022f", [] @@ -358634,44 +363161,64 @@ "2c90ff2b3174eea5d1245214b79ac79ac2479ee5", [] ], + "css-regions.idl": [ + "7d615fcead2c60123a4e2880ce6cd7ebb6190fa9", + [] + ], "css-shadow-parts.idl": [ "b7ad99671ad9031571e772bf5fcd307012e6ad94", [] ], + "css-transitions-2.idl": [ + "9d06f3cf260ae5c23eebfd38c68d8c1f865fec5c", + [] + ], "css-transitions.idl": [ "174bf209f131ec9cb706e3d2d2d2ea4c1b70bcc7", [] ], "css-typed-om.idl": [ - "899ea97f0ddbc94207338492aa341af2f7eca016", + "262d2884e8379aacecc5958b85040c1f39184918", [] ], "cssom-view.idl": [ - "f998758dd32c6a48edb42b918f4ca830d4093f14", + "74736152702aa3c34c819f43ac85ecd307dfe1d8", [] ], "cssom.idl": [ - "9a48740de450e54f8370225103d701f747104dce", + "c8e0bbb5aab94958a8be347f58419c393eb0f98c", [] ], "custom-state-pseudo-class.idl": [ "342f1ede0b030a85271a5db71b3773d1531aee48", [] ], + "datacue.idl": [ + "f84d6e9b5f1dd4a13dbe406c7cec1ce86e160ba9", + [] + ], "deprecation-reporting.idl": [ "4cf76ba8114723a7ee030a81c86e1549c76b6760", [] ], + "depth-sensing.idl": [ + "c44f029436f11afe8fe91023c3eda20af3f5755b", + [] + ], "device-memory.idl": [ "3be709e8a206247404798d7ac8ce1bea027ba015", [] ], + "device-posture.idl": [ + "5f3574db98fa09dd5cd5ab72c15f9f01941ce865", + [] + ], "dom-overlays.idl": [ "5e358c233c3a6d3029721e29a4d719e0748bd53b", [] ], "dom.idl": [ - "bd8a17a379311b14236159cc67b4ac9958231d21", + "4a57b2e1eb4bce95ac6ffe5e477f2d63e6b10bc0", [] ], "element-timing.idl": [ @@ -358683,7 +363230,7 @@ [] ], "encrypted-media.idl": [ - "851232b8bf7c68559295dd211766f8c0f34124f2", + "ba8c32d05c467ec647fe4d3f6273c99763ab0f69", [] ], "entries-api.idl": [ @@ -358699,11 +363246,23 @@ [] ], "file-system-access.idl": [ - "3eda19c9d84af81a8eecc5ef3f0ea06753290301", + "252e9cdc5987843894d8e27a3cdfb7a346290280", [] ], "filter-effects.idl": [ - "b17ebf67890981804f7a0fc657fb77a9f0fee748", + "ecbb6a94be815f4bb0d81f2cd788d4d9159c6852", + [] + ], + "floc.idl": [ + "714024365d4b057936b522e732fc14fc1cd5432c", + [] + ], + "font-metrics-api.idl": [ + "9bb94bc3a6a370ae099a817afc687813eebacc61", + [] + ], + "frame-timing.idl": [ + "00bf8ab142c2beb6aafd0567d84c168a6274d096", [] ], "fullscreen.idl": [ @@ -358715,7 +363274,7 @@ [] ], "gamepad.idl": [ - "e8252e2a85b3867fe0390706449ea3269762b7d7", + "bbc62da3c445708fdc3ec8ae193d28b92e2cd405", [] ], "generic-sensor.idl": [ @@ -358723,7 +363282,7 @@ [] ], "geolocation-API.idl": [ - "15bb7349dd373592eb9388d30477162f2a2ce720", + "f0300cfa05eec5f78bc2b522bd1b284b7f5d7862", [] ], "geolocation-sensor.idl": [ @@ -358743,7 +363302,7 @@ [] ], "hit-test.idl": [ - "14f1ea7c91cd5fd09ee30e7ffaa79ef886c56ded", + "fa4fb71c9decd64054669249353a16b3476aae56", [] ], "hr-time.idl": [ @@ -358755,7 +363314,7 @@ [] ], "html.idl": [ - "f6789644339b4c2ecdb6bde54e4cf3cbffd1b267", + "d878cba3367cc627d2b36d388cf4c31115afde0a", [] ], "idle-detection.idl": [ @@ -358766,6 +363325,10 @@ "f98912cb6a169e734d6fc01030f213fa9a6eaba2", [] ], + "image-resource.idl": [ + "d7f653e6816e0dcb05e8e47f03bd0a003690d62f", + [] + ], "input-device-capabilities.idl": [ "72d91de2fcd86f8c244329141598eba31535e9be", [] @@ -358783,19 +363346,19 @@ [] ], "is-input-pending.idl": [ - "76e47cc06cfd66887b2ffbe60550a522ccfcf7f8", + "735bdf02a1b5eea0f5b71d5e819eb538fcda77a9", [] ], "js-self-profiling.idl": [ - "a2199999eada84ff43f1a237380685c5833c4791", + "b5cb290e18aa1bb2e25a36d14710cccb308d090a", [] ], "keyboard-lock.idl": [ - "1eb2e97e2707626392dc895de4cd1499653c3dfe", + "3aaf9f3755b7c8a811ea4cd3ad7610779c1e66bf", [] ], "keyboard-map.idl": [ - "ea7fd5c76a3bfbaed621209f4973e7f7f30dca39", + "881a33c17b7d12750ea5b3f92b3144a9c065c302", [] ], "largest-contentful-paint.idl": [ @@ -358806,6 +363369,14 @@ "4fb1b70398e7486a0596574b3ef76d361806e0f3", [] ], + "lighting-estimation.idl": [ + "35aa1d746a7466e80a9de9d366935b831da8cc7f", + [] + ], + "local-font-access.idl": [ + "d7fb3c91f3d9a618e02d12a4703cb42a1ddb2b25", + [] + ], "longtasks.idl": [ "6ceb0e5d8f050f231211aae4056efd2762852971", [] @@ -358814,6 +363385,10 @@ "45ba9edcfe570c5d1828d089409e8220788c7e94", [] ], + "mathml-core.idl": [ + "7ea134625ff431bb71d6db0fc460c0fb9422541b", + [] + ], "media-capabilities.idl": [ "128d01020a1f4c222146ada2aaf831981fa16ec9", [] @@ -358823,7 +363398,11 @@ [] ], "media-source.idl": [ - "f32df3aaedc0b4722f62379273aa489fd5ea0ab7", + "ba57b131082f09bdd0374c42eb9bce60a684709a", + [] + ], + "mediacapture-automation.idl": [ + "9fe2623d6466b5cfda7fb0b2390b0a3e5a3e4243", [] ], "mediacapture-depth.idl": [ @@ -358839,7 +363418,7 @@ [] ], "mediasession.idl": [ - "3dd0cd75270bddebf310fc027c5ef1d31c417a13", + "4cec354c9d1ec80d20b1f506baa94447330c8bbc", [] ], "mediastream-recording.idl": [ @@ -358863,7 +363442,7 @@ [] ], "orientation-event.idl": [ - "4cd4356d2bbf74af5c943069917c3836d270be9d", + "f6ff96f0e013fe34104a9b6714104454c722cffa", [] ], "orientation-sensor.idl": [ @@ -358887,7 +363466,7 @@ [] ], "payment-handler.idl": [ - "259549a503d477cc4a099f105014faaa1f1de11c", + "7636e8a3b49b3b85d4a68471455002f0c6f3a5ec", [] ], "payment-method-basic-card.idl": [ @@ -358895,19 +363474,19 @@ [] ], "payment-request.idl": [ - "dc0511b0c4b091066a9dcbc94ece9cac28088bde", + "cd16e2aabef9d0c06bef99c60ac06898b6f333b5", [] ], "performance-measure-memory.idl": [ - "5983a6ab8dccadb83dd6f1b644231a84e7bb7fc6", + "b60f2b688cc4dafbea0bd9af84e1b0ce13feb2fc", [] ], "performance-timeline.idl": [ - "34f62a37823f30360ca94b9d8f695668f3ac0969", + "d3a5a278055eba415342f9958b6e228715dd9eb4", [] ], "periodic-background-sync.idl": [ - "37a58ba1495805e08724cdcb7f37527cbf224821", + "d61ebe9b8c47ee2c76da2fd388c60003a1ddced1", [] ], "permissions-policy.idl": [ @@ -358923,7 +363502,7 @@ [] ], "permissions.idl": [ - "2f7fc1ed83d680908e9854ba15b6e42d1f167c4f", + "0ad42ff0b24601a21540c71b1b272a52bb57ea71", [] ], "picture-in-picture.idl": [ @@ -358938,12 +363517,16 @@ "873a965ce824816cdb3e551b52096cde1ca99f9c", [] ], + "portals.idl": [ + "a88e6ac2df7efbeb00afccb8f50ce8e30bac604e", + [] + ], "presentation-api.idl": [ "4f1e4bee835a23c5b7bcf54b5b05f4ded2b08023", [] ], - "private-network-access.idl": [ - "b470f3f5a153f37ecf3607ee85e6ea2c511a237c", + "private-click-measurement.idl": [ + "9a7c8dd55ad3cc9fbea3c6e20c182a51c10889b5", [] ], "proximity.idl": [ @@ -358978,6 +363561,10 @@ "112266865bb8c5c2dda4a3b76ea4c0be9b7c7749", [] ], + "sanitizer-api.idl": [ + "9db926c478cae7e733d6bffad3ffb1b5bdbae5de", + [] + ], "sanitizer-api.tentative.idl": [ "e130e4ecb05c46bc0c7c8519d3f10fb66d6e5af2", [] @@ -358986,8 +363573,12 @@ "f1274b8ef74c35804a72237b579c5e28dc9d3c1f", [] ], + "scheduling-apis.idl": [ + "82162b568e1a3f78b4418a00df86a26673e2489c", + [] + ], "screen-capture.idl": [ - "7786b7fb4d7c9affd615bef5c7c51c22a8f9d8e9", + "38f077d6082bd0cd73842737a578c313b2bc4b5a", [] ], "screen-orientation.idl": [ @@ -359019,7 +363610,7 @@ [] ], "service-workers.idl": [ - "d15ccdf3023a0dabfc9f1e08fe0ad1538cabb129", + "6af2c3e590ee626a7703cb21619967f5ddf06f76", [] ], "shape-detection-api.idl": [ @@ -359046,6 +363637,10 @@ "99c3a5dee91f693d834b6dfc89cefec387d1078d", [] ], + "svg-animations.idl": [ + "b57e1b9eb512919b501b7f96e260751aa5f108d3", + [] + ], "text-detection-api.idl": [ "95b642749f73a63d62d5aa5320815aeb7091be4b", [] @@ -359054,16 +363649,16 @@ "653414fcaaa4039b21589fec5c26bf90e0ffd5a0", [] ], - "trusted-types.tentative.idl": [ - "df7bebae7bb6f5c1b62b908ede3ac3cdf112d520", + "trusted-types.idl": [ + "3736a9142339bb8c764eb3b2de949efee85a0aef", [] ], "ua-client-hints.idl": [ - "09df2968aaaf925b0c1bb4c7d5df304ce8e1bf50", + "d9d487df2b9c45b89edc6cc34429591fd41ec3f7", [] ], "uievents.idl": [ - "d5506ef7781fe0b7b735991116e53c8119b55b91", + "5fdc812e700ccd0f99175b99ca4fe80d7748b13b", [] ], "url.idl": [ @@ -359083,27 +363678,31 @@ [] ], "visual-viewport.idl": [ - "c66e85bdcc1f9fc394bd859a572efdc3ecad0266", + "516f8bd97e5c97d7332a37ff0de490f4d3bcd5eb", [] ], "wai-aria.idl": [ - "f077afe8f6aae64415d0cdaaafef4ce8de827647", + "662c20f7c1b319dcbf0110e5ba2f302855ce3c12", [] ], "wasm-js-api.idl": [ - "71d7207a712161d34e5dbe676991dd8c01aa7c06", + "b56c8cf0c7943e746c64b0acab5ea8a2bbbdd75e", [] ], "wasm-web-api.idl": [ "088c8ee3a3994eb2b39cb708792b5936ce331b16", [] ], + "web-animations-2.idl": [ + "bf4f9aa1846e5b8e400304d5776b0c050cef8142", + [] + ], "web-animations.idl": [ "6e973d195e382d12b40f831146b9cb7edda06b97", [] ], "web-bluetooth.idl": [ - "83071f368f005c0482c9e0d04071894c793826a3", + "fbd029770943eea2324b9ff4a41ac472699c5edd", [] ], "web-locks.idl": [ @@ -359115,7 +363714,7 @@ [] ], "web-otp.idl": [ - "77627dad138ccabd4fc520b4c6a479ca9f38da91", + "591979e8bebc60ccd9cdba57dc8df086c97ba023", [] ], "web-share.idl": [ @@ -359127,7 +363726,11 @@ [] ], "webauthn.idl": [ - "9da49220c40a85e7bb33932ca9832f067fd9e5d9", + "07c8c5da4d71720fbb0a8e21ed2745a47acd6663", + [] + ], + "webcodecs.idl": [ + "16d6bd5ed5c3543f57d1ae69fe0967227aeb98d5", [] ], "webdriver.idl": [ @@ -359135,13 +363738,17 @@ [] ], "webgl1.idl": [ - "46d629193c9139de5a570734c6ecaf249e3e9600", + "cd9eaa19bc49bfba6996f32ab61fff744ad17f3f", [] ], "webgl2.idl": [ "518637fcc72d3e02924f00d269bf1c56794806dd", [] ], + "webgpu.idl": [ + "9141df05c9cc2e2c215fba74084f6786cdc72e33", + [] + ], "webhid.idl": [ "ffc960938c9221c9bb8cca295997271e2ec394fe", [] @@ -359150,16 +363757,24 @@ "89847c3d4597b06c59924f64d71a2555b68359a8", [] ], + "webrtc-encoded-transform.idl": [ + "2ceb9355b02af12f66c6b19366ba4708fbeb2175", + [] + ], + "webrtc-ice.idl": [ + "58f88bade42862d4be93dd3b9146f821891f9a30", + [] + ], "webrtc-identity.idl": [ - "2af476f4d77b06c50857aec57e91a680e71da129", + "d7a40b0956632f22499158f0abba172ee2298ce9", [] ], - "webrtc-insertable-streams.idl": [ - "9216987f2796b1626a3c0b1dc1ac3ac2286f35b9", + "webrtc-priority.idl": [ + "a76952b9b0a92e635684746b6642b04a24895f79", [] ], "webrtc-stats.idl": [ - "2316201088548b9349a67736e270a03eb15a54fb", + "657cbe93e94d396c6e21978dc9c46fd04cd21993", [] ], "webrtc-svc.idl": [ @@ -359170,12 +363785,20 @@ "cd34d3f3782e9d48695296df274a80a3a3d668ce", [] ], + "webtransport.idl": [ + "4862befd5b86e363c727be701851d719b4292979", + [] + ], "webusb.idl": [ "44a8bdd04d5616b3ba77db8011c93db97ef925e0", [] ], + "webvr.tentative.idl": [ + "2fc5f4e52bdff354a80231a4327d0c3423a9f722", + [] + ], "webvtt.idl": [ - "0ba67c7fbb46f5cfc499aa5cea018efbb0077084", + "730e893e980f354a61a4fd87bacb0c50829ee843", [] ], "webxr-ar-module.idl": [ @@ -359183,7 +363806,7 @@ [] ], "webxr-gamepads-module.idl": [ - "f623c632bcef236a4d5872914778d6f25375ba14", + "f63921c015066d11355c897afc30084b17e32757", [] ], "webxr-hand-input.idl": [ @@ -359191,15 +363814,15 @@ [] ], "webxr.idl": [ - "c1b7175765d788b9981d5bd0a6640b46cafb7cb2", + "3e5b432468648606c04d113ccb29ddb642872b5f", [] ], - "xhr.idl": [ - "3abd09ce5ed7fa651466f7a242b573c3bc2d109f", + "webxrlayers.idl": [ + "22804c6122157cf98eab114ddfc54fd1fbcdc637", [] ], - "xslt.tentative.idl": [ - "e97d8b000441bf7c700d377f20f74b44831cffa3", + "xhr.idl": [ + "3abd09ce5ed7fa651466f7a242b573c3bc2d109f", [] ] }, @@ -359310,7 +363933,7 @@ "weakrefs": { "resources": { "maybe-garbage-collect.js": [ - "b7a3431f7bf02e9f2a07668dec7c50430842df8f", + "248633d2bcc7de053dc38c4abc7afc0010e48966", [] ] } @@ -359432,7 +364055,7 @@ ] }, "lint.ignore": [ - "67c842ed8952fa14d418c3ce19252f0abb45026f", + "2efb1fc1cd3be4eb8e0a7c6e30dbe9f5ad3a64b2", [] ], "loading": { @@ -359501,6 +364124,18 @@ [] ] }, + "managed": { + "META.yml": [ + "2971ec82a9b93c7d5b52ea7b1e98ac8cc0a97036", + [] + ], + "resources": { + "managed-configuration-helper.js": [ + "c3213a4dad8b93bb5057c6d8cc70c7eb3db004a9", + [] + ] + } + }, "mathml": { "META.yml": [ "5aea9088d744bfa835ca91217c9a6d9f60253e3e", @@ -359607,27 +364242,27 @@ [] ], "frac-parameters-gap-001-ref.html": [ - "9c7db8a3cdcdd001909e84da770a8f1550a365a5", + "06fe8d8d35e95be4c48bcbbf5c7f18b96db8f4ca", [] ], "frac-parameters-gap-002-ref.html": [ - "b4e9a25f00b92a53654e2891dbb95f4ce985dc55", + "30958a6a5fad794d5bd8915ec167d5f0c169dbcb", [] ], "frac-parameters-gap-003-ref.html": [ - "91b85450e3e86f5b53a8800ed3cc3ddd6b4a4c3a", + "70e2ec5a8883d5a89a08277237f0702418dc108b", [] ], "frac-parameters-gap-004-ref.html": [ - "9578254610b7221d8afa5938c97b4d9aa7b67b72", + "675d33fbcc1c921ff2061eedc116c761dbe535cd", [] ], "frac-parameters-gap-005-ref.html": [ - "270a8ac2d9290c27953d57aa387b520dfed7f3f0", + "c794a50047c21418a446b7f16068c23759048732", [] ], "frac-parameters-gap-006-ref.html": [ - "02cd8477d5bcb3bbe22a99bd87f2b68f388433e3", + "02faaad19f43188d57321f7c8696dcf78c9aa0fb", [] ], "frac-rendering-from-in-flow-ref.html": [ @@ -360108,13 +364743,17 @@ [] ], "feature-detection-operators.js": [ - "5c6ffef06b9ea58bd9a5bc7c842cba42fea22959", + "25dae40258fcd25204cdc874741c3604fe443eeb", [] ], "feature-detection.js": [ "7ad4d953d0822c306882524952738b894521325d", [] ], + "fonts.js": [ + "f05d7278adbcd6cf34cc229e67aef6c74c880958", + [] + ], "layout-comparison.js": [ "452b45006e4d032709d10b3232b8d73e4dc50e33", [] @@ -360259,8 +364898,12 @@ [] ], "resources": { + "checker.js": [ + "25487b7b0568d57fa2aa72ffe6acdb5659e5f2b3", + [] + ], "common.js": [ - "41f7c94d55e37016cca0506b87480e842c53a615", + "4332c6e79c10f4ccd166a77771c159ce7c1e9d7e", [] ], "iframe.redirect.sub.html": [ @@ -360324,6 +364967,14 @@ [] ] }, + "service-worker.https.any.js.headers": [ + "4fff9d9fba4c81f953826ffea010a75be626b95d", + [] + ], + "shared-worker.https.any.js.headers": [ + "4fff9d9fba4c81f953826ffea010a75be626b95d", + [] + ], "window-open.cross-origin.https.window.js.headers": [ "4fff9d9fba4c81f953826ffea010a75be626b95d", [] @@ -360497,12 +365148,6 @@ [] ] }, - "media-feeds": { - "META.yml": [ - "47656c53b02f97fbf14468ba9b5f26343fb152fb", - [] - ] - }, "media-playback-quality": { "META.yml": [ "51b1b4e07ed2654d67d6e42083ed936e9d78848e", @@ -360515,6 +365160,14 @@ [] ], "dedicated-worker": { + "mediasource-message-util.js": [ + "f2682e30bcf2632550f0f77fcf58c69f861815d1", + [] + ], + "mediasource-worker-detach-element.js": [ + "a4df32e532ec131593323476bd113b7e0ae1d153", + [] + ], "mediasource-worker-must-fail-if-unsupported.js": [ "69c65f6aa24b449cdf056faf42fb3ccc827889a9", [] @@ -360523,8 +365176,16 @@ "9a7195fc5bda04e4de95ba43bd2123a79685449a", [] ], + "mediasource-worker-play-terminate-worker.js": [ + "b45381819106faf51a0d359d15cb1bf2dfda4042", + [] + ], + "mediasource-worker-play.js": [ + "f11c1fd8d0d7e2db176d0c37153ac4f35aae4646", + [] + ], "mediasource-worker-util.js": [ - "7688a40fa6cf2e6bf9698601feab71cc439b2b98", + "695d1179d39b18130012bcac2f0aeb34ab029547", [] ] }, @@ -360541,7 +365202,7 @@ [] ], "mediasource-changetype-util.js": [ - "28e92893657b956d84bff1cf0c87c000f272063d", + "024af027ed69c5f239c826781571eab0797c8398", [] ], "mediasource-config-changes.js": [ @@ -360869,7 +365530,7 @@ [] ], "generated-mime-types.py": [ - "91921149011a5d25422961c3e13a3316963760a3", + "5d0e26c8b8d6c86ed9fca055eeeff8f0cb97264b", [] ], "mime-charset.py": [ @@ -361212,7 +365873,7 @@ ], "concurrent_io": { "operation_helpers.js": [ - "769d283bd24e0f9be74b45f20002da1b2919b957", + "8ff1ce236afd6994aff50f615b2c7e287763cb7f", [] ] }, @@ -361222,7 +365883,7 @@ [] ], "support.js": [ - "5229644bb66e3bdddf33ec82e11cc88465035e5d", + "f7821067fbfb92566fd774f609d35412146d88a2", [] ] } @@ -361278,7 +365939,7 @@ [] ], "webperftestharness.js": [ - "0c27c2ee307f4b8099a6b4c5b0497baf50b61104", + "afe09530d75866dbfd84ad4c346b0d8d6f27e5d3", [] ] } @@ -361636,7 +366297,7 @@ [] ], "pagevistestharness.js": [ - "1dfe03d740c05c5db2f1e92e5e0bc90ad5d73399", + "d164d4603bfe858924145399179ac514d7476f89", [] ], "unload-bubbles.html": [ @@ -361747,7 +366408,7 @@ }, "payment-method-basic-card": { "META.yml": [ - "30994b67caf6ba8b0486876333352ba655f5f768", + "ca2a57e7524bb6ce8bfbcca4c5178b1d2f4b101c", [] ] }, @@ -361763,7 +366424,7 @@ }, "payment-request": { "META.yml": [ - "2440720138d34d5cc7eaab9a4648f078296330b0", + "1dbe3e5d7edbe4b27d1f7cfbae55bcfd6499a71e", [] ], "allowpayment": { @@ -361782,7 +366443,7 @@ ], "payment-response": { "helpers.js": [ - "3e4f5cfd36f898c116717c1151806f966511a945", + "1242ecb743c9a710e4597e2524a11bc24c2a3c6a", [] ] }, @@ -362587,7 +367248,7 @@ [] ], "link-header-preload.html.headers": [ - "7ab20ab8d7fd029045193277896610e921b4201d", + "338da6b5f856f243107a37eecb73336c4866d69c", [] ], "preload-in-data-doc-ref.html": [ @@ -362656,7 +367317,11 @@ [] ], "module1.js": [ - "9c3b675de7081969ba40aa7353c7ad30e0d19508", + "ebaeae7ac7bfaf92f559a14eb1dc497b66122300", + [] + ], + "module1.mjs": [ + "ebaeae7ac7bfaf92f559a14eb1dc497b66122300", [] ], "module2.js": [ @@ -362923,6 +367588,18 @@ "README.md": [ "bcebe03c8f8ed9f758dca37debb3dc43a0057679", [] + ], + "open-consume-activation.https.html.headers": [ + "63b60e490f47f4db77d33d7a4ca2f5b9a4181de8", + [] + ], + "open-without-user-gesture.https.html.headers": [ + "63b60e490f47f4db77d33d7a4ca2f5b9a4181de8", + [] + ], + "remotePort-required.https.html.headers": [ + "63b60e490f47f4db77d33d7a4ca2f5b9a4181de8", + [] ] }, "referrer-policy": { @@ -364252,7 +368929,7 @@ "inheritance": { "resources": { "make-html-script.js": [ - "a013fa64b305b3ceca8a1014afd7e59ff7be7d10", + "6c2c145c4ee0a9f40a8c435655c362578c7a90ac", [] ] } @@ -364385,7 +369062,7 @@ [] ], "SyntheticResponse.py": [ - "0cce1df3cf6b5377fb4cbe9ed40d0a023c75336b", + "6f888f37896e12401301e187ebd517e942a7ece8", [] ], "__init__.py": [ @@ -364402,11 +369079,11 @@ [] ], "TAOResponse.py": [ - "c25ccc03cb36a3d24409a4b3e6364d38f3a49305", + "60392b8e10ada4fd70a03a6258849306e9714ec4", [] ], - "all_resource_types.htm": [ - "bc7101c219230376ffec008dce73bc42f06cbe3f", + "all_resource_types.html": [ + "5252a4872ab4e28e6650c45c779b3805254fa90f", [] ], "blank-with-tao.html": [ @@ -364417,14 +369094,6 @@ "7296361df3d1c5755acdb825661dbd9a1807b64f", [] ], - "blank_page_green.htm": [ - "b8a1947b77e25ac6b0d100c75932e8c0a67d846f", - [] - ], - "blank_page_green.htm.headers": [ - "cb762eff806849df46dc758ef7b98b63f27f54c9", - [] - ], "blue-with-tao.png": [ "820f8cace2143bfc45c0c301e84b6c29b8630068", [] @@ -364438,7 +369107,15 @@ [] ], "buffer-full-utilities.js": [ - "e0a4f0b108094658be0aef453bf826bf01c28f93", + "6cb1753b2e9fb84ec6fac40e835e9bac83f3e648", + [] + ], + "cacheable-and-validated.py": [ + "31f0e3ab417a69079f20748751b2d6be9a7d5552", + [] + ], + "connection-reuse-test.js": [ + "453fbd34051067480139058d40541368bce2207c", [] ], "cors-ahem.py": [ @@ -364453,8 +369130,8 @@ "d66f886dd23d44bb33750cb5723f3edb6b7930ab", [] ], - "document-domain-no-impact.sub.html": [ - "fbd7bc3b6e21ee39478c8a63780bb673dafe96a4", + "document-domain-no-impact.html": [ + "64cdd8a8701eb4d749f112ad4015d4e5779b77b1", [] ], "document-navigated.html": [ @@ -364498,7 +369175,7 @@ [] ], "entry-invariants.js": [ - "209349d6b9518755fbaa493cc3aa37c47b604d89", + "88014efc89128646bb9f77d673bf5da0b163422c", [] ], "eventsource.py": [ @@ -364510,7 +369187,7 @@ [] ], "fake_responses.py": [ - "828748acdd8e85040a21593b92f543252c64d49d", + "e33adbfe44efc734a2ee6f98c6b0115327ee2f58", [] ], "fake_responses_https.sub.html": [ @@ -364521,12 +369198,20 @@ "2ee92b2a5511c0d43359e0db7ee3b64ae5f9115c", [] ], - "green_frame.htm": [ - "f3f03245dcc8bde7e969d7682d03c9b89bcb4a1c", + "green-frame.html": [ + "9613240ae38789a104d77d56f890ff62420934b0", + [] + ], + "green.html": [ + "b8a1947b77e25ac6b0d100c75932e8c0a67d846f", + [] + ], + "green.html.headers": [ + "cb762eff806849df46dc758ef7b98b63f27f54c9", [] ], "gzip_xml.py": [ - "2293605ac33a4d357a426cde139bb7d44e4e0cb3", + "7debc9ce3f6cb061be8ca37b73fcf9f2a5396389", [] ], "iframe-TAO-crossorigin-port.sub.html": [ @@ -364557,48 +369242,12 @@ "cf68aade7954e609087d34f21e437c285eb73a58", [] ], - "iframe_TAO_match_wildcard.html": [ - "a6a03e0680e95b33c14b5c622ce99d37f8582375", - [] - ], - "iframe_TAO_multi.html": [ - "0696dbe3e502def905cece7cdd5599decb3ad9dc", - [] - ], - "iframe_TAO_multi_wildcard.html": [ - "977df01007d56d85d4c4726c4c501d7e2c21387c", - [] - ], - "iframe_TAO_null.html": [ - "7d47a2076f87dfa5e787e3d4072b3a513330e524", - [] - ], - "iframe_TAO_origin.html": [ - "c75b0752406d959a3157a2bc4d75d3e646143682", - [] - ], - "iframe_TAO_origin_uppercase.html": [ - "7404035d1ab238358770c31d40265fb4ef3ed881", - [] - ], - "iframe_TAO_space.html": [ - "2a484ed5140bf052b8426a81ec5b842d2f6a44be", - [] - ], - "iframe_TAO_wildcard.html": [ - "3b5be4cdab98bfc51fffbd3646bcdd75fc87f23c", - [] - ], - "iframe_TAO_zero.html": [ - "76c5938689a4ae08d6d4d4c911993e8deebd5de6", - [] - ], "inject_resource_test.html": [ "44d09675d38e26a9c69de4ed9133667d8dc5c5ef", [] ], "multi_redirect.py": [ - "56f5d6c77153a5598aee0c6795fb909c3fdcddbf", + "a5fc5db4ac9015914908ba2cceec189f9d3274d0", [] ], "navigate_back.html": [ @@ -364633,8 +369282,12 @@ "168850e2a88dbdc74d07c4813b2ef4e5fd812d7d", [] ], + "redirect-cors.py": [ + "ea67cb8e7ac4e61045d05af51f066db48bfdf101", + [] + ], "resource-loaders.js": [ - "c5754d1df53bbfdc801f03c6cf8fac517e577443", + "3df07ccb5496cf211b5435f336fac568e0f76afc", [] ], "resource-timing-content-length.py": [ @@ -364665,8 +369318,12 @@ "beb12f5da551780fcb4378bef4661b9699a5d009", [] ], + "sizes-helper.js": [ + "86336686b32902ec1c123b0f55ff67e9aba43062", + [] + ], "status-code.py": [ - "9bc02bd34679edd63f00dc4610c485b8d10ca6d3", + "72222b39e48574c666052b2bb4d7029fd6ba526a", [] ], "sw-install.html": [ @@ -364682,7 +369339,7 @@ [] ], "webperftestharnessextension.js": [ - "f131d4d1622473d192af37871be44d07ac46a51a", + "dc02c075b3d07f7c57164f0ec24c32adb76c0de2", [] ], "worker_with_images.js": [ @@ -364713,7 +369370,7 @@ [] ], "check-layout-th.js": [ - "5d4236d1cedb0e20dbc1bb30722cb0e9e160f110", + "a507a8dfd7f197cbf3ff3072e7f7291847cd6aa2", [] ], "chromium": { @@ -364725,6 +369382,10 @@ "2ace6d49ffa321a4b249a6971f1bb362cfb0de15", [] ], + "content-index-helpers.js": [ + "936fe84c9b10a234af4c831dba29b6789c267141", + [] + ], "enable-hyperlink-auditing.js": [ "263f6512f09a90220940975b9474fecabf2837c7", [] @@ -364765,6 +369426,10 @@ "97d45d453bdda968b2356acf0b129d2eb0347f64", [] ], + "mock-managed-config.js": [ + "c9980e1285b7e14a85cba19f2c870f480e303946", + [] + ], "mock-screenenumeration.js": [ "fc89b11ea106c8bda9f9deec300915e51fd26dd0", [] @@ -364786,7 +369451,7 @@ [] ], "web-bluetooth-test.js": [ - "ee835c224b489068ad6a9f9fe8ffe1b56ab08daa", + "ecea5e760c6b4d4f867adf5741a929cccf5447b9", [] ], "web-bluetooth-test.js.headers": [ @@ -364818,7 +369483,7 @@ [] ], "webxr-test.js": [ - "f7e9cbd25028f18d7f0a693009e2322147af9738", + "ff1b5ceed0e01f9f3888d121e1f62a85b6500dfa", [] ], "webxr-test.js.headers": [ @@ -364827,7 +369492,7 @@ ] }, "idlharness.js": [ - "76131e7c9602b94f9543d1f49658b304535691d3", + "6aec02e3abe06b20d11bb46bfd5b742326851c86", [] ], "idlharness.js.headers": [ @@ -364848,7 +369513,7 @@ [] ], "conftest.py": [ - "860784d2409929d73e9372cd9dc6da82ccd7df45", + "3b27ee24b419cb85ef85ffacf69bc2dfd123692b", [] ], "harness.html": [ @@ -364863,6 +369528,10 @@ "d97c1568c75948485188c4168133ba8cb0815c73", [] ], + "requirements.txt": [ + "95d87c38756c5a6c2494b98a3d815e103e9cc4e1", + [] + ], "tests": { "functional": { "add_cleanup.html": [ @@ -364936,25 +369605,25 @@ "idlharness": { "IdlDictionary": { "test_partial_interface_of.html": [ - "5ee3fe7e893f19ef328c3b5c996bf7b4751b2b7a", + "05e6e0b1e06c634ec2900ca4302b611dda72ea14", [] ] }, "IdlInterface": { "test_immutable_prototype.html": [ - "40f5dbfcc71a6267544aec5a74beecdf9ff20ed6", + "5625c7f55303f73a5b231a48aaba86d339cf9c93", [] ], "test_interface_mixin.html": [ - "a9a9094fe30ab5085742247078ec79acae1a0711", + "1e22c4f85a5a04c72bb49c1e2fd5759077e277af", [] ], "test_partial_interface_of.html": [ - "d0e83af966410c0a6d41511948e5262c84a47c46", + "671196cc5dfedc2140aaaccebcc6ff0d7127e35e", [] ], "test_primary_interface_of.html": [ - "a02f40fd7851209d917bdeed268a331d0991507c", + "ac4c0b000eb69fcba65c7a8a970cb7ca9a47bffc", [] ], "test_to_json_operation.html": [ @@ -364968,11 +369637,11 @@ [] ], "test_operation.html": [ - "814e8428c36245142bed162103f4b90644e24bcc", + "6798fe8cfc6773d121c9cbdc1e559fca434ac757", [] ], "test_partial_namespace.html": [ - "c327a8b001d27e542b6b5a858a0400a042b3d3f7", + "c68adfa941773dd0c47ed3a75812513e8c874828", [] ] } @@ -365109,13 +369778,13 @@ "unit": { "IdlArray": { "is_json_type.html": [ - "ab068b29cac0d7083471d5d525fb4c27124d9f77", + "bd89c91110d87fecfbe56f639f36d83a53bdbff5", [] ] }, "IdlDictionary": { - "get_inheritance_stack.html": [ - "052592dd4607dbda6cc17603249a38ad53b40c9c", + "get_reverse_inheritance_stack.html": [ + "418bcdec92ac22822ef73b9c4249e80cc6ace6b7", [] ], "test_partial_dictionary.html": [ @@ -365125,21 +369794,17 @@ }, "IdlInterface": { "constructors.html": [ - "93cc7f42cc5588f7f8f0cb4cfcdb45731ddcf8a9", + "e9ee3f8680ac1b7214a34b2814522432b554d485", [] ], "default_to_json_operation.html": [ - "e03ea8b03874ce7acffdc78463ab7cf33ad226d0", + "5ade7d0d282a346de6b1f054457f431374843778", [] ], "do_member_unscopable_asserts.html": [ "90142efe6b6a11faa6985736ae51d26a25d02774", [] ], - "get_inheritance_stack.html": [ - "7e9188c7318920f44935e418a50aa35a58bf5725", - [] - ], "get_interface_object.html": [ "a3d901a752de52c20286c84d5500b78948aa4417", [] @@ -365156,6 +369821,10 @@ "677a31b5e708741fec21b049c25d01b7e8d5c5c0", [] ], + "get_reverse_inheritance_stack.html": [ + "0c066baabbcf0267b151a4e21d6befef17e36f41", + [] + ], "has_default_to_json_regular_operation.html": [ "b47262b72b91c692211727042f782e88064f9b40", [] @@ -365165,25 +369834,21 @@ [] ], "should_have_interface_object.html": [ - "f5bb7bf35a58c23cbaf76f1519ac2dfec5f3ad62", + "3ce945751d8502dd6d35d19f52c71f1701313d47", [] ], "test_primary_interface_of_undefined.html": [ "0031558ad42ce55e0cd6ee92ea9973788a9a8017", [] - ], - "traverse_inherited_and_consequential_interfaces.html": [ - "94b956db6eed1e19d7dd37ca62a804c4fe36ea2a", - [] ] }, "IdlInterfaceMember": { "is_to_json_regular_operation.html": [ - "abfa4ab800b3c8e6b5f6fd3b42a982cc2e4fe99e", + "b3f402dd08857cfe41cdc8573ff8c3c407d25e8a", [] ], "toString.html": [ - "779c7a15e6d7b9ec20c38ba24900f752096df3e2", + "054dbb1ccbd6ea273998629433c15ceb52ab4bba", [] ] }, @@ -365254,7 +369919,7 @@ } }, "tox.ini": [ - "fc26aa6cc0efb67437314fbfa6fd012006fbb09c", + "a9c07c3d22a8a3e26535a0b1ef6eab28af04c21f", [] ], "variants.js": [ @@ -365262,7 +369927,7 @@ [] ], "wptserver.py": [ - "a504a76a46e00db8f9bb4a19dc9dca58ec1c8314", + "1957797c454514e43d9007655d9628192c45e0c0", [] ] }, @@ -365295,7 +369960,7 @@ [] ], "testdriver.js": [ - "f3cee9821e13f9fd75fe37b45794a1318b6f8df0", + "f2df26cda1ccdf6d6b5c17adf664b07f2b6cd7ea", [] ], "testdriver.js.headers": [ @@ -365303,7 +369968,7 @@ [] ], "testharness.js": [ - "0cce01e0e1b85cf55f1f54eeed7a36817ad2c494", + "f85b19fd9bd90c3476dedcbe5825b82fb40de82c", [] ], "testharness.js.headers": [ @@ -365321,11 +369986,11 @@ "webidl2": { "lib": { "README.md": [ - "1bd583269d2929a16b1c7ad0c58fab6e99b72a10", + "af0af3a902f2f3a01aba4cfd494f1443440888c7", [] ], "webidl2.js": [ - "d707905fa63e16886e4b89e6a403cdac62d7dadd", + "322f0e11a6ae56eb65a1e57482ff520b0657dcd6", [] ], "webidl2.js.headers": [ @@ -365342,7 +370007,7 @@ ], "support": { "testcases.sub.js": [ - "029d30bcf54779dae702e85ee36fe5ef3cdb5a06", + "4b49c4951cb96d8716c07c513906545bce7b350a", [] ] } @@ -365425,7 +370090,7 @@ }, "scroll-animations": { "META.yml": [ - "77e1d50542bbefed5498024dd6ae8edc7e70de33", + "c7f0e4903b5ad46b411f0f0741112af80661cfc7", [] ], "animation-ref.html": [ @@ -365476,6 +370141,10 @@ "691168859ff2bb9e56af4f84036d7ff7be9026c5", [] ], + "iframe-target.html": [ + "92dff39162252111807fe2b99c62509d6480c2e7", + [] + ], "navigate-back.html": [ "4b4117fcc573b21f6bf6f8cb016bcef4c024d703", [] @@ -365570,6 +370239,12 @@ "7c443f7dade9c236f146d09f274eb9113a5ff90d", [] ], + "caret": { + "collapse-pre-linestart-ref.html": [ + "2b25941ded7e51d4a62cfc536f42de0aea58a50c", + [] + ] + }, "collapse.js": [ "4a816f49564fd877f06eb2a30df27b83ae7294d2", [] @@ -366401,7 +371076,7 @@ [] ], "vary.py": [ - "e7a914eca827631a8bc7878112c6b6de87e7ce91", + "7fde1b1094ed4ce4018f17688e55d3be06fff993", [] ] }, @@ -366703,7 +371378,7 @@ [] ], "bytecheck-worker-imported-script.py": [ - "6b38370c62ee47dca00340faf5d1d4181cc76fe2", + "1931c77b6780b35c510d77a760ad4f1a9a87b28c", [] ], "bytecheck-worker.py": [ @@ -366943,7 +371618,7 @@ [] ], "fetch-access-control.py": [ - "8822f32b270d4cb3d11f83576ee0a72f25e97b4d", + "a5f558d3d5901120e8c8110a2d4e022f76cb1288", [] ], "fetch-canvas-tainting-double-write-worker.js": [ @@ -367375,7 +372050,7 @@ [] ], "malformed-worker.py": [ - "b8bc842d2caf8f493b62e364f7dc6bd6a27037f8", + "319b6e277baa04a9b61c1f5f764219d32028f91a", [] ], "message-vs-microtask.html": [ @@ -367475,7 +372150,7 @@ [] ], "notification_icon.py": [ - "da479fcd9b8352e21f95695b990d4efdac3b055b", + "71f5a9d488d7a1b1f76ce77607fe8bee232940d9", [] ], "object-image-is-not-intercepted-iframe.html": [ @@ -367679,7 +372354,7 @@ [] ], "registration-tests-script.js": [ - "30c03d9ef041817c9429a2640d8c6edf72242678", + "e5bdaf4291a4205fb5205eab0c76ec0bc02bdd7b", [] ], "registration-tests-security-error.js": [ @@ -367880,12 +372555,20 @@ "78a93356b75f56e43818abafa344f21ec4201aa5", [] ], + "test-request-mode-worker.js": [ + "566e2e9984b5d6b5d3a79738542f1b2b24d1f6b2", + [] + ], + "test-request-mode-worker.py": [ + "8449841a9930796fdcff0307c1e2b043b2a6b7f1", + [] + ], "testharness-helpers.js": [ "b1a5b960e0656ac36e553c70965aebf7b8344c97", [] ], "trickle.py": [ - "5a3f2eb23590a37b415cfe8c2d647ad57878064c", + "6423f7f36fe76f7ac37d68cb961ae216c9c4e40c", [] ], "type-check-worker.js": [ @@ -367963,7 +372646,7 @@ [] ], "update-worker.py": [ - "0bf331cb2aae6b9d4d5b9e91e2a00b7a7873f1ee", + "5638a8849cb749471ef01413bb95386aa4857712", [] ], "update_shell.py": [ @@ -368094,7 +372777,7 @@ [] ], "shadow-dom-utils.js": [ - "37c9a9a23cd16ff587cae11b76ff44f97633fa46", + "46cffd3141195c89bb36cc39cc15aa676107bde2", [] ], "shadow-dom.js": [ @@ -368126,22 +372809,22 @@ }, "reprojection": { "reprojection-001-ref.html": [ - "98c7a609c4fe0b92c6fac7fa2864b11535c2bb0c", + "c74cf99e70df829fd628367bfb2106e184fa2d71", [] ] }, "shadow-root-001-ref.html": [ - "d80fcccbf395d9f4d2a283bdd1fffcf5633445f1", + "619f337853838f82dcda75018859444ca4607f30", [] ], "shadow-root-002-ref.html": [ - "77b472d7825e7c1112da611b8a2969427ab14498", + "eda41b9c04bc9ba99810e8537d519e05f2d75da6", [] ] }, "styles": { "not-apply-in-shadow-root-001-ref.html": [ - "fdcc6e5ba2129af5e8c24280b1b9173f3987e844", + "947c01a8f5d03c22785da3a282b6abfe996f2409", [] ] } @@ -368554,7 +373237,7 @@ [] ], "rs-utils.js": [ - "a62012c6f1cae8732e0f14c9b225f74a46c7c7d8", + "f1a014275a2fbc16b241a692b7fa758e6d0a8df8", [] ], "test-utils.js": [ @@ -368762,6 +373445,10 @@ "668eb9b8c7e469540219b5ea9010db28239ae432", [] ], + "scroll-transform-nested-stacked-children-ref.html": [ + "4847be91e0cbcc8d5d20959aa1e1dad28152c27b", + [] + ], "stacking-context-ref.html": [ "28e7e310c07b4443693cc6150b5690b16b95d829", [] @@ -368927,6 +373614,10 @@ } }, "layout": { + "svg-use-symbol-width-print-ref.html": [ + "6c94e34c04546eb4488d7927c93c46838ab1c817", + [] + ], "svg-with-precent-dimensions-relayout-ref.html": [ "1a15a9f2b890dfcfe4a8a59530a75de8a69b9179", [] @@ -369135,6 +373826,10 @@ [] ] }, + "subpixel-clip-path-transform-ref.html": [ + "381b781dc870efc89286d38bd53e81a769d8a3bb", + [] + ], "support": { "white-rect-100x100.svg": [ "6ee3841974a82aa60187570b3f18fc239bf44534", @@ -369144,6 +373839,10 @@ "svg-child-will-change-transform-invalidation-ref.html": [ "0d760d18dce03df5917086ccb0253a8ced421e36", [] + ], + "text-clip-path-transform-ref.html": [ + "83ab09d4984aa4a76a022b2c3263fcedb7d03cdb", + [] ] }, "path": { @@ -369214,6 +373913,14 @@ ] }, "property": { + "marker-path-ref.svg": [ + "8cd5c8ea486d09f743d5ee24e99a3e9dccc8e012", + [] + ], + "mpath-ref.svg": [ + "db281c33da6416f879a5f8978509c4c80a0c98f4", + [] + ], "priority-ref.svg": [ "cbc7c385f6d78d492a7d43e45cd03da6b78433f3", [] @@ -369617,7 +374324,7 @@ [] ], "META.yml": [ - "bb8ed039dc39ed4105de306302398be25e037f07", + "a1aeb84d4a6fe126371d1b8f899a967ee0e5aa83", [] ], "__init__.py": [ @@ -369630,11 +374337,11 @@ [] ], "cacert.key": [ - "7b9bd970e950473df4f21fca73bbc9063446325a", + "d59a66a603816c2f6cad18dbe3bc61c54f2183df", [] ], "cacert.pem": [ - "f7de3a304ee0cbba24d9124f5da5a8b6bf7c3d04", + "fd769edabc54967293cc640bd1c5871419c3023d", [] ], "config.json": [ @@ -369642,11 +374349,11 @@ [] ], "web-platform.test.key": [ - "7b5d9ff1c5028c6113c4a0cdaa6617b3be6679d1", + "9e384f7c12090a601c231cd307edb5732fa252f1", [] ], "web-platform.test.pem": [ - "9f0929ade5ca91ef0dd24215102d5fe88e9efbd7", + "49bed12bddab8d950abdf45f005623e681135ccf", [] ] }, @@ -369677,7 +374384,7 @@ [] ], "fyi_hook.yml": [ - "f02f3cd8224e0b3eb4f478318f0437f5a475f4e5", + "1788502eb4f0ece7d295c21b28f77a09dde6f298", [] ], "install_certs.yml": [ @@ -369701,7 +374408,7 @@ [] ], "install_python.yml": [ - "6257172021d5a8a043469f93800d9ed8f79efc78", + "4fcdd20502402f65ea14fcb905d7611ebcaf833a", [] ], "install_safari.yml": [ @@ -369717,7 +374424,7 @@ [] ], "safari-technology-preview.rb": [ - "ea41beb67370e7d8b6909903a675e40f17ebdbb6", + "58675bdadd01b315d8ebf4e824c3e47a8ca3d00d", [] ], "system_info.yml": [ @@ -369746,15 +374453,15 @@ [] ], "ci_tools_integration_test.sh": [ - "6929fb8ee0f1b7a4b5ba8c3327830f3d73f2bc39", + "76f682e254d313490c96ce1b9ee62acc93c0cfb1", [] ], "ci_tools_unittest.sh": [ - "a4d5cbb7de1aea0e9321e65f2fc1a3d6c6e37533", + "8e16ee18decf024dae9e1e728d775ff99e8ae35f", [] ], "ci_wptrunner_infrastructure.sh": [ - "97ac17cdf2e142cb35826d9b6a4083c9e4f372ad", + "ef61601bdccfb6b04af06cdc512fc86e151a60f8", [] ], "commands.json": [ @@ -369765,8 +374472,12 @@ "1c7edf15aaf8c47638393291de1724e41bab8a2d", [] ], + "interfaces_update.sh": [ + "6bf7c7c7128574d50c3f250911ed3042b5516058", + [] + ], "jobs.py": [ - "430c32ec6d4ff2e97c8336feb06322df7d9bba62", + "cf448c10108ce434320d7fab78a4ebc116b38c81", [] ], "make_hosts_file.py": [ @@ -369774,7 +374485,7 @@ [] ], "manifest_build.py": [ - "0ea13627538974b6a27fe0f364edb39275b334ce", + "72e73f93293bf21c00fdb6284c2ef08ba3128299", [] ], "regen_certs.py": [ @@ -369782,11 +374493,11 @@ [] ], "run_tc.py": [ - "b7e5d72146ac8a816792761f218c1e70fd162697", + "c8213b031fc21861638f329cf13159e80c0210ce", [] ], "taskcluster-run.py": [ - "356022034b1448e07dbfb6af71a70c6cdf86bc43", + "658c0717e3c2d3ca92345ad6e955d615eaca6d57", [] ], "tc": { @@ -369803,15 +374514,15 @@ [] ], "download.py": [ - "359ec33405048c134ddcfac7a564ea9a17ac1b14", + "1a21ef773fb86d03edaeaea559dde0d883e1895a", [] ], "github_checks_output.py": [ - "fcc6f8ce5911a24ee761889b184da42a03485071", + "0df01ea044598e3f4bd2d042ae09974f7015a9c3", [] ], "sink_task.py": [ - "1efcd4225cd2fb6352fe02c5f7197eb522f29292", + "5e5875d949bf4d748f783a93e6bb2407b91f6c6c", [] ], "taskgraph.py": [ @@ -369820,7 +374531,7 @@ ], "tasks": { "test.yml": [ - "95212e97bf7961804ce01281c3023badcc7cd330", + "88ebddcb63d35b7b22ce16a02fd5c7572f628b97", [] ] }, @@ -369843,6 +374554,10 @@ ] }, "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "test_decision.py": [ "2f9018a4e0be732e7f49c21cb029f6ec685f689b", [] @@ -369852,12 +374567,16 @@ [] ], "test_valid.py": [ - "d489205b26f4e99f294303cf4dbeb023bfd95dc8", + "6db20a4228b8adce4ddc664afc89db745c539d8a", [] ] } }, "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "test_jobs.py": [ "aa12738204f3652e2df96444469368e0e6261923", [] @@ -369882,7 +374601,7 @@ [] ], "README.md": [ - "2203727ef96f313cd7c5e6afb766a07b70969cec", + "bc98d198612c9afdcbba991b120ba9dc473d29c7", [] ], "__init__.py": [ @@ -369893,18 +374612,12 @@ "421b0a636c2593bb3aa133b133373b54be6796ea", [] ], - "documentation": { - "Dockerfile": [ - "01ea0bd95bf6d1468d4a38afa121f9fca01f3e95", - [] - ] - }, "frontend.py": [ "c05937b73dcda75b80ebf3cc2ca2f8dccdb0dfda", [] ], "retry.py": [ - "5c8e6d79c3038ddff49688d4f1fc7e7f294ad072", + "8ecf5874fed877235941086736772a3b39083c6b", [] ], "seccomp.json": [ @@ -369916,13 +374629,17 @@ [] ] }, + "flake8.ini": [ + "e943b40e134fa41cc3c09b5e05624d6133f76a73", + [] + ], "gitignore": { "__init__.py": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], "gitignore.py": [ - "500fe7835bda6901b3b57229f7caab4f3bc489f6", + "1fd99e0c3025aa21d275f769f8c065f434733a1e", [] ], "tests": { @@ -369946,15 +374663,15 @@ [] ], "fnmatch.py": [ - "0c45029b23915f0f94db411d201b16a2a1e38f90", + "143cb436f2cb5e87807f3b8d6fe2e2a9493ed97f", [] ], "lint.py": [ - "d8fb9fc35ef38d73686f669a005f475a565961f6", + "f8f1e88b1b31e1811ccb910dc9286b1a41045488", [] ], "rules.py": [ - "e9bb30b59cff07ecd9ec0bad5ab40f765a4efd8e", + "d2aa20f598f40f522d34cc06ad819298d3fc182f", [] ], "tests": { @@ -369963,7 +374680,7 @@ [] ], "base.py": [ - "36c16676d52980077903be31296f2087c0855c8a", + "ea7c331b8e6e6603f60c4c5cec587e69daf5535d", [] ], "dummy": { @@ -370159,18 +374876,18 @@ [] ], "test_path_lints.py": [ - "9fefb7a1d7e0615044ae00acb0b8e64481e41b97", + "d9da56de47353093ec544c93492bd716ebb47048", [] ] } }, "localpaths.py": [ - "1cb6f5b37242aea4a59314dbabf7ae09114c4def", + "1d40cebb52f01fba210a009c4a64d9a5f1529d42", [] ], "manifest": { "XMLParser.py": [ - "45a8a54029cb6bd5bcbc098daac4ca7a0d6a1b4d", + "d1c028969e154c4181ef69e4dffbb23949b2196e", [] ], "__init__.py": [ @@ -370188,11 +374905,11 @@ [] ], "download.py": [ - "88d478fe0ef2cc43482486582e7b57949dac4a87", + "c45cc787251b2955e60bbf05a4e7ba43ecaf6ca2", [] ], "item.py": [ - "4b973d5399a24cd3c01ecb15e9e26aca6f7ddfba", + "9da142a651944313f0ef20b861d0102626b18433", [] ], "jsonlib.py": [ @@ -370204,7 +374921,7 @@ [] ], "manifest.py": [ - "9f1e902d31a189c2d4429ff172a18914f80ac166", + "4936b9c4e33df3768a272c51ab3627612e6f8711", [] ], "sourcefile.py": [ @@ -370242,7 +374959,7 @@ ] }, "typedata.py": [ - "174008eae812dc7665fdba4290a821a1d22ba5a9", + "bd382a7d73749daee0b9798ff63f5ee72f4012c0", [] ], "update.py": [ @@ -370259,11 +374976,7 @@ ] }, "mypy.ini": [ - "4d352302d80e3207d2a33d3130a359de3e53df09", - [] - ], - "py3-flake8.ini": [ - "f8d4776ef66b01fac0bfa2d27320b1ea3f8a497f", + "8afb8eb2982b954b6f74e972a7bc0847ad709aa0", [] ], "pytest.ini": [ @@ -370302,24 +375015,32 @@ [] ], "quic_transport_server.py": [ - "deef46fb8a74c8ff41c0b5e8d229ab7a34d19c10", + "006260e794bdfce17707a69e4ce6233b1f971274", [] ], "requirements.txt": [ - "c66414cb7512860211049fc85feae6dac458e517", + "b5b64cb909db3b3d196d2b63f0a4f1e39fe0b5ea", [] ], "serve.py": [ - "517b4c34b93ed4293c43f30a2baec8b920197d27", + "f9ae75bc4e82c50475aefd81d41781163117dcbd", [] ] }, "requirements_flake8.txt": [ - "e3eb8913e7e4ab96e79660c106f2d67dc09364b3", + "adf3e4713aa46f7d6f1a3a7ec0c3a8728c47f7f3", [] ], "requirements_mypy.txt": [ - "1c850658579c333fa509678d096b826b60de1373", + "cadabf92cd3b56acb6cda7a52e69b2739fa7abac", + [] + ], + "requirements_pytest.txt": [ + "9f7680f7e1e83432655972e114a2c0024ea5d254", + [] + ], + "requirements_tests.txt": [ + "b525046f40af2619b644bd70c5c5a85fb233dec6", [] ], "runner": { @@ -370360,7 +375081,7 @@ [] ], "report.py": [ - "c22994ced00eff70c22b8fe012ad1296fe74c0bc", + "db4c9888ff701257e6a81a81f2e07d02a549d5d7", [] ], "runner.css": [ @@ -370412,19 +375133,19 @@ [] ], "serve.py": [ - "8e1aaa8dc73c1a7447a6e63d0b9603a9a0b97097", + "2c57b72a9f8d97a7d7c9985b518e3ccfaebf3d80", [] ], "test_functional.py": [ - "894479d111c90dad925c683cb0e93ac13fc68619", + "0acc653816c508edb031d55760602cf26d19ceab", [] ], "test_serve.py": [ - "d9024793cafda1bb363b5d3a399aa93a4d69110a", + "715be78192b127c3069a20258478f5fcd3ab4d35", [] ], "wave.py": [ - "b13c6ef34de2ab0f9073a6cdc0962807da19bb00", + "d34a9bfda5306570703562cc26d85a437c30ffeb", [] ] }, @@ -376801,15 +381522,15 @@ ], "handshake": { "__init__.py": [ - "82be5ae9fdfd46d18970bf992cc1adea25acc5f7", + "4bc1c67c578db3d0bda0e833370b0bd13fd1603f", [] ], - "_base.py": [ - "358dd8d497d9d89dd9c10432bcdba3e903e1b616", + "base.py": [ + "ffad0614d6bc42fdf75c2ee4885212304dcbcb90", [] ], "hybi.py": [ - "7fd63eb63edd1f4acf887df35d4bdc3b6e139915", + "cf931db5a506efe3957bbff6bc3c3c99a56a1233", [] ] }, @@ -376846,7 +381567,7 @@ [] ], "websocket_server.py": [ - "df8cd393c7ee8069675713665d85be7d97657b70", + "fa24bb9651d4e3fefa43fdbad1f01e056074e667", [] ] }, @@ -376906,11 +381627,11 @@ [] ], "test_handshake.py": [ - "e0e2278dfe65019d7659489b538fcc85ad57d455", + "7f4acf56ff0642dc73e58a99c98f761f9c06e876", [] ], "test_handshake_hybi.py": [ - "04841f1f79fa89f03f0e0219e06b213c34f5f0fc", + "8c658221703460fd418236dfde2feea25ca9e742", [] ], "test_http_header_util.py": [ @@ -377687,7 +382408,7 @@ } }, "tox.ini": [ - "f3b0c4dd3ef6648026e3abd5fa1acc95ede43edc", + "a6e0e7a137f26b4caafdb8719a9172ae8cf399b6", [] ], "wave": { @@ -377700,7 +382421,7 @@ [] ], "configuration_loader.py": [ - "a94ebcd60a1a168bcc3a4663b8fe625e67ab0006", + "819b414cfaac487add57913a0835a0235f0aa4a0", [] ], "data": { @@ -377739,7 +382460,7 @@ [] ], "session.py": [ - "df162fcb082e7fdf06618145f917a6b70e17b48b", + "a4477f66decc42b3b881757c92fb56d747615adf", [] ] }, @@ -377972,33 +382693,33 @@ [] ], "api_handler.py": [ - "2b6d35cc54e87d7a5f18b401019db5871ca7e5aa", + "9857a7ab73a1a5aa5715df0aeae1f1769094e6a8", [] ], "results_api_handler.py": [ - "c52eee56ada3fe748644330578d692c7ee7596ae", + "7e23238a8c272f4c38adb68918a1fbb5cb0bbaee", [] ], "sessions_api_handler.py": [ - "b6484566730209836be48d8bdd8cd304f0be850b", + "c5040addf70d873e09ab57a5c495daad39b366f5", [] ], "tests_api_handler.py": [ - "6c9357a32c50966dd4fdad623b9955674c0f867c", + "cf62f706358b6b5de24d0232e999480a903a5ccf", [] ] }, "http_handler.py": [ - "324524679a09367b8efc5b83770dfc7722031ebf", + "184c2f302c43e29544b00d7f6911899a21044538", [] ], "static_handler.py": [ - "0b666eef5a37e733da0e25eb81690453eb3b77a1", + "6f8af430604c45e4e7bf1cb2092445b4aea0e07a", [] ] }, "requirements.txt": [ - "0383e084087f75725ea8c9d31206200b68f6e0cb", + "070837242fadf80361f805bfd561e0ea8913c989", [] ], "resources": { @@ -378013,27 +382734,27 @@ [] ], "event_dispatcher.py": [ - "9540df02036ad088499faed548f34f54e09ad142", + "bb578d1c6838d223bbc1d2548a6e5cef0a9bfe62", [] ], "results_manager.py": [ - "aae1900d34a6fc0ae50d804e509f59934b99662f", + "e37304168f81ac3772a52ba829a13b5a5bcc1c0e", [] ], "sessions_manager.py": [ - "a00623c928fcebb17cd796ffff1a6316d1c92cbd", + "b552ac6f2e0462850da467ffca71129e0a9dfba8", [] ], "test_loader.py": [ - "ce48639fc03d1c1b9f761658012765e6801ea31b", + "555f0012d379ecc7bddb543fa1843598d63b758b", [] ], "tests_manager.py": [ - "aa8b919a9fc3038ea4b4773ad69d7d11a7ca0ddc", + "973505159b56189567e6422da1fed57d2a6f6021", [] ], "wpt_report.py": [ - "e10de774458619dfa37431991999101513d3b16e", + "8568954e5b57d9625da8f978df2e86d69bac442c", [] ] }, @@ -378046,13 +382767,17 @@ "a0801bb77e3578273227090c5fe11eac59f90b33", [] ], + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "test_wave.py": [ - "d060fdd19f230e3fdc4563d94a174a2bd5c234b1", + "b05a9798ba617d69f537eb4dccc4a1896447d14c", [] ] }, "tox.ini": [ - "c70a46cc3c95d8e18b25d9518703e7fc0c3b59d9", + "b868686452f88a15e1e139e0fa8e7d24e4248318", [] ], "utils": { @@ -378061,20 +382786,20 @@ [] ], "deserializer.py": [ - "b8a3608356695ba8c615f385c8907893ad8aced3", + "36508bf36557ef960bbcec5fc22c8fe97b721c36", [] ], "serializer.py": [ - "66571738b48194d726c432b6ddff4968b2267e95", + "2adceb0b6de4ff9339dd7d42660ae58cfb04c179", [] ], "user_agent_parser.py": [ - "7c0727e1f3cd8447fd20b0a10aa3a057c46f2785", + "ac7e101958743c6742ae22e1ed5121c591f155a1", [] ] }, "wave_server.py": [ - "cdbb9c3a6756d1e73e8484573a45637675939711", + "bc33bfdc6313653b05da19c5f352e266f6fe0b12", [] ], "www": { @@ -378283,11 +383008,11 @@ [] ], "client.py": [ - "22533409ffd3f4a0e88f282f979d5e0b1b461d26", + "69ab749fa50310e5f7d55fd621ded300137f218e", [] ], "error.py": [ - "807c5925e14f53db8f32dd7b1be0b23305774b87", + "a413a950d48eaf32713db6dd6dc817900b7508a8", [] ], "protocol.py": [ @@ -378295,7 +383020,7 @@ [] ], "transport.py": [ - "15ba6b8fee20bfa716ed03c6649c16983d58421a", + "5a1ce289ec0908bc5125ca1698d26dca1c05e232", [] ] } @@ -378338,22 +383063,26 @@ [] ], "requirements.txt": [ - "a387544f3475cc88f93ca13ba13422cf1f208198", + "e821b1e3f8e281fe0a0f787f4dba8a6b653d754c", [] ], "revlist.py": [ - "bd85612e2c2a7cfafde1ec812baf0a95932d76b9", + "b3f1f3486f7df0b39085573ef725035cbe50b9bc", [] ], "run.py": [ - "1dcb1d462ee3de10b3f32a50a4d68592e7b100be", + "244b5e70185bb8e986ecf89f1a19dde8121b228c", [] ], "testfiles.py": [ - "5c398588174395fb1b2f629b917a19d8baed7e74", + "1d43de5726ca21e5577d19b4adafdc9c6eeefdb5", [] ], "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "latest_mozilla_central.txt": [ "7078a36b0c5bd5b4fe6f55f2ecf5fcbc2c535b4f", [] @@ -378379,16 +383108,16 @@ [] ], "test_testfiles.py": [ - "c4d40ff9fd0f00a4fa435ddff353234178542eb8", + "b62975ba9001a6bc8472e8d3c2e6df2b89206d64", [] ], "test_wpt.py": [ - "32e3e2a70b9f6a1f4d332f85f1c3a369813a233d", + "f081f5baba91181ec23f2af4813c6dc54519fac7", [] ] }, "tox.ini": [ - "c2f745b5704c21fa09dc032292d2f35bfa034193", + "a4eb0c6e801d502318ccd9d2254aadc08ca3e1b3", [] ], "update.py": [ @@ -378396,15 +383125,15 @@ [] ], "utils.py": [ - "30e9574ec0a0896198a021eff0fc14d042bb277d", + "98b424fd2ad3713eae3557f36a6d9d295f19d03c", [] ], "virtualenv.py": [ - "1cfb1506cfb4b9df981c776658d5570bbd8e4d99", + "b20a928880209ac03b0cf527be8774894212a74d", [] ], "wpt.py": [ - "1faf7d7af7357a369c508a800f562af284eacce4", + "71f9ee60c00ae49955b0d5e3d6fb41b22c6ef1b2", [] ] }, @@ -378418,7 +383147,7 @@ [] ], "README.rst": [ - "0adf0a94b15d224ab7970e81ae7f432df34bb3d7", + "4a079c725bd6472913281beb1c59385135e9069e", [] ], "docs": { @@ -378437,212 +383166,74 @@ "internals.rst": [ "780df872edc1728ce640de8834803cb28786d0a4", [] - ], - "usage.rst": [ - "85fd97bf6c12a1fc3a2dbbd24ec2c32659db9114", - [] ] }, "requirements.txt": [ - "440a88d0d28b0ea871be204a56279fc50b011c2e", + "a2f0011f86e7654eb935aaeb89f6d686c4e3d1bd", [] ], "requirements_android_webview.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_chrome.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_chrome_android.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_chrome_ios.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_edge.txt": [ - "0ef64c232bcba36fc863ec59168af56cf79824dc", + "7ad0180b85453853c8bcb615ecbeedbab9704f1a", [] ], "requirements_edge_chromium.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_epiphany.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_firefox.txt": [ - "43245f992d4a406ef158c0809fc4e742a738c7c4", + "6bf280c47c92ca6c3b5015485c245ce1c3c38ddd", [] ], "requirements_ie.txt": [ - "0ef64c232bcba36fc863ec59168af56cf79824dc", + "7ad0180b85453853c8bcb615ecbeedbab9704f1a", [] ], "requirements_opera.txt": [ - "0ef64c232bcba36fc863ec59168af56cf79824dc", + "7ad0180b85453853c8bcb615ecbeedbab9704f1a", [] ], "requirements_safari.txt": [ - "55b474ba914aeb3647fb2f15fb78ba7bd2c1e8bd", + "65b76aa85cc41f0a6cf9661381007aa6436b1ded", [] ], "requirements_sauce.txt": [ - "eae7ef3f004852071565e769edd87809194829b5", + "d1d0f7e2bee22b74833cebfce95b6921655b78b6", [] ], "requirements_servo.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "requirements_webkit.txt": [ - "874980b338a7e86c8227d76ff050b47af52661e0", + "79619558a5dc843f765d14f5fe6578b0a3d4c1ec", [] ], "setup.py": [ - "a459e2c4714104830d667c33c7814ef3c50f567c", + "c20955848dbffe3d81e1bdc3ae494ca70e7c51ad", [] ], - "test": { - "metadata": { - "testharness": { - "firefox": { - "__dir__.ini": [ - "c9d164cd418a2a77c793669c7cf6b09ffc618e67", - [] - ], - "subdir": { - "test_pref_reset.html.ini": [ - "6c9198d9bbf1c779be42f47bb52c6896f9ad624e", - [] - ] - }, - "test_pref_set.html.ini": [ - "bc9bfb9c41397dc17dcaff0a449df810ef49ca78", - [] - ] - }, - "subdir": { - "__dir__.ini": [ - "a9157fbc6a9f4a9a6bb3c894b3e095bfa51e314c", - [] - ], - "testharness_1.html.ini": [ - "db9393987b6c73e6910afcf0ca0b7538fcdb919b", - [] - ] - }, - "tags": { - "__dir__.ini": [ - "f599adda92b54df546619a6d55ef93ca04431e6d", - [] - ], - "testharness_0.html.ini": [ - "fe8ffa48dd0bbe9f16020b4d12bec61eb16d7e5f", - [] - ], - "testharness_1.html.ini": [ - "d6006a1551c6f4e3c746598afa5559ce61290fbc", - [] - ], - "testharness_2.html.ini": [ - "25fbf55362dea9b078c0ae54f422a42d93ab4f72", - [] - ] - }, - "testharness_0.html.ini": [ - "90b9a6e9f012b5e234c15d29805c61f6be8d5a54", - [] - ], - "testharness_error.html.ini": [ - "fa53e0733abcb173919b3d48a7767b5bbad8b0e8", - [] - ], - "testharness_timeout.html.ini": [ - "55eca5191ab1fa6c5d5531a1e05b992d09723def", - [] - ] - } - }, - "test.cfg.example": [ - "db48226216c30eb7d8b078189636964b7f7ce520", - [] - ], - "test.py": [ - "fd33c9ae2ea2bbce9a40e5ebbd276329a3309d0c", - [] - ], - "testdata": { - "testharness": { - "firefox": { - "subdir": { - "test_pref_inherit.html": [ - "10b285194b4ae010c699c7aecf77d771c22132d3", - [] - ], - "test_pref_reset.html": [ - "5c75c1160522ce81414eddee4b94ccae21785a22", - [] - ] - }, - "test_pref_dir.html": [ - "105d9070c9dceadcdb0cc6471389678c8d2719ab", - [] - ], - "test_pref_set.html": [ - "8e5e2989bf7299f422c9dc0c13f2c7298f0dff52", - [] - ] - }, - "subdir": { - "testharness_1.html": [ - "fd2fc431d39998d6bfa63bc0e3b7884791014c33", - [] - ] - }, - "tags": { - "testharness_0.html": [ - "5daf02a77d9e99562995282afbe2c6f1e3c1340c", - [] - ], - "testharness_1.html": [ - "5daf02a77d9e99562995282afbe2c6f1e3c1340c", - [] - ], - "testharness_2.html": [ - "5daf02a77d9e99562995282afbe2c6f1e3c1340c", - [] - ] - }, - "testharness.https.html": [ - "5871eac00148d44a8bebdc4394e1cb8b4d58dac8", - [] - ], - "testharness_0.html": [ - "ff0654cb9a09251ad0082e8d84918b2068c12e1e", - [] - ], - "testharness_error.html": [ - "0ac5ba46a3305f6fbc63dd8d1fc7496034da9afe", - [] - ], - "testharness_long_timeout.html": [ - "fc94e055be0c55454c12e08501cc981fdaf45837", - [] - ], - "testharness_timeout.html": [ - "b99915ac7453952aa199c7ac24e919459f665a42", - [] - ] - } - } - }, "tox.ini": [ - "2b9bca17fa4c55d825744931fc1c3c7fc59020c7", + "c49e759ead8c5c8fcbb1c089cf2e59d624961b1a", [] ], "wptrunner": { @@ -378656,71 +383247,71 @@ [] ], "android_weblayer.py": [ - "ec05c768ffccbab2e125a7da95e99db0e77c7408", + "4bd871d1fbd51d4ed547a9cd00d53e4f7156ff55", [] ], "android_webview.py": [ - "54dd1281fd8d4abc14d9dca30c0f21f19869a13d", + "9d620934ef287a3998250ae97e24b9109a6e0b18", [] ], "base.py": [ - "f7388ad7e6f554b4412b475060f4aa97cc9d185e", + "4d307b7e20ce4019e16e70223827c11343ddfe8c", [] ], "chrome.py": [ - "04ac3726fba16d3ea315cbf24310cb69c5db8a61", + "0d6f3deb5121a3c41e5ef10cb7f53e692f9f5bad", [] ], "chrome_android.py": [ - "7580bedddb000eb919a82554fba59cce24968177", + "3ba01588b2943b65826ef9f640a5f7f54f5c0465", [] ], "chrome_ios.py": [ - "f349b19419cd67a3551ba1796e1ae02d2776e46d", + "fe4ac5287f19ff6c8dd11ff80b796917b017c109", [] ], "chrome_spki_certs.py": [ - "87bbc9568d02145ffa23b6f0a1bf9c1ad17325fe", + "61f6fcceac61e7d18bb7df6acb9743539427a0ef", [] ], "edge.py": [ - "db4795ce5d4a773546b03782885d24a82337b031", + "3101e9c7bea38a4b60982220405abc6d22f2ee13", [] ], "edge_webdriver.py": [ - "c2545de46f0b5def00c273ecfb5a57f0d4029531", + "e5949fe3e57fb2a733ffe57e6fb58421daab088b", [] ], "edgechromium.py": [ - "c2275bd168797cc2486c138a8450a598c29891c9", + "4f2e0ddc4d02b7614a86091c308ea61ac1392d51", [] ], "epiphany.py": [ - "f378170f33d33cc0839bf599fc1ac33dff7f0fe2", + "d61f74e2268ae26ba2e44acda49082a082fe0613", [] ], "firefox.py": [ - "3a4229841f8607de794783b7629a684bf2dfa9a2", + "40810c802c3bc2b34d85fa4a11bffd2d93e24df4", [] ], "firefox_android.py": [ - "5e9de564963f63e013a3fb63fdede1a97a1f7386", + "4d7ebf5e1fd6bd07b2fb6315a27eca87d6f48b08", [] ], "ie.py": [ - "5fce29a477070479a82126d318a93763d12b1c9b", + "c851daf0b63cbfd94bdbbbe3e9a637ce884e30d4", [] ], "opera.py": [ - "80e5a314c83b9866b350ff75375a48d153061624", + "f3a2929ce8ebb69c534862e000134b46fa2356b4", [] ], "safari.py": [ - "9565f1c302f7bfc37578e10e0792f519fbf1bc01", + "20a5475acf0b61e63fcfffa533d0017693f3cfd4", [] ], "sauce.py": [ - "99ece89d4549bdf1256f6beee2f43239aa8970ea", + "491319917599373436c0e8e428c7fc818f45d583", [] ], "sauce_setup": { @@ -378734,28 +383325,28 @@ ] }, "servo.py": [ - "4f934aedfcd64153e77bb33efd9c6387832cfcec", + "1791c1da2706913748de7f311d9d9683f26d6b38", [] ], "servodriver.py": [ - "83b9423ba71a2d434b33156d624f64ffc6cc8515", + "9a6a1a402b36923bbb2b2e199a34da84b5873a4e", [] ], "webkit.py": [ - "f83de2996a98d75efcbaa66480b7cd210869a886", + "ad24771ac9ced65e117d894b44920e71b83b6ee8", [] ], "webkitgtk_minibrowser.py": [ - "6c1001e2d70dcf55088b341978c8b30658f52c41", + "7a02ad14902b80940f0a34a3ab98b8a5f461090f", [] ] }, "config.py": [ - "3f5e9341dcfe3a40f856fe2518a3c5245b6774a7", + "8a9bdbf730d65db649380713f4f787af21407be8", [] ], "environment.py": [ - "86dcb93def19af26243609d870be2011036f7eea", + "c0611b9fb32d4ccf0c6e329dbe64f40fb53b36ec", [] ], "executors": { @@ -378768,7 +383359,7 @@ [] ], "base.py": [ - "b47d0ad26f99f68031f36294b36adcf4fb22419c", + "2e268609e834f1f65de3b0d6d8b582398becbfaf", [] ], "executorchrome.py": [ @@ -378788,7 +383379,7 @@ [] ], "executormarionette.py": [ - "81be731b06d6e31ddf96f0ba0de4ff302e65cffa", + "e38bb93f07c815c01a298f070bb80c2537990dbf", [] ], "executoropera.py": [ @@ -378800,11 +383391,11 @@ [] ], "executorselenium.py": [ - "783903b9bbe4a4a632ceee9b99750e95d382d02e", + "9d675cb3ef872334ec94212e53f372f4fedfe59c", [] ], "executorservo.py": [ - "597c879cd1423fdd4c49678fe35ced85df2dc58f", + "f322421bd3fa894a9515c091278d890f77adc522", [] ], "executorservodriver.py": [ @@ -378812,7 +383403,7 @@ [] ], "executorwebdriver.py": [ - "a04a55a6f00c1865c8b26c32f9f938b9f43c4e56", + "d20f7dd2daf35e4485cc4aeece7bfebd8412a830", [] ], "executorwebkit.py": [ @@ -378824,7 +383415,7 @@ [] ], "protocol.py": [ - "ab16b0efd0aaa1790322c86f15e00d79bfd5f916", + "03eafb060b59edc04abed6bd9151d93c1c04267b", [] ], "pytestrunner": { @@ -378833,7 +383424,7 @@ [] ], "runner.py": [ - "113eff99fee8d4a126d9c741b36cbfb8e8a1eebd", + "50819a935899369df2419172d042617922616746", [] ] }, @@ -378871,7 +383462,7 @@ [] ], "font.py": [ - "97d74da4e4034193f87225483cfda797f81ae0bd", + "39e248b251b05f178108242b772560735a638373", [] ], "formatters": { @@ -378880,21 +383471,25 @@ [] ], "chromium.py": [ - "ae8d96a1170cf53d34b806d2fdee7a09b5669b43", + "e86f3330af9fe269950f4e3ef6db955bff6146a6", [] ], "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], "test_chromium.py": [ "53d64df70f0e0342a042c622c52c817384d5caca", [] ] }, "wptreport.py": [ - "6d4401ae5aacf9db028f94e88bbfcc2be33726c3", + "86d4c42f97b0140f142e12afcfbb75660fe6eabe", [] ], "wptscreenshot.py": [ - "f854d95b9d0479041304858456ca3eac1923255f", + "750548b28157dcee15c486d22582ab6131c477a1", [] ] }, @@ -378903,7 +383498,7 @@ [] ], "manifestexpected.py": [ - "2f7f5339b6d8915ae43d24379232953613793150", + "1cd035a3b2436d16eaeeac5d007f90a8f0edfc5e", [] ], "manifestinclude.py": [ @@ -378911,11 +383506,11 @@ [] ], "manifestupdate.py": [ - "5bccaa2d2a15e030c5c183f20e15e76a70ffd04b", + "ad59c0d3edd9c73ac61ab8906aac3e8e1daffdde", [] ], "metadata.py": [ - "ddc433d8aa9393a60233813c7903cab406224fe4", + "9c54e570c01bbdc6594800ca2132cd628799141c", [] ], "mpcontext.py": [ @@ -378926,16 +383521,12 @@ "3ce18d4dd823e042e986ce94f2f858977a0ddb19", [] ], - "process.py": [ - "d3ff380ad08f262af04c81aa6de51d00be1e5246", - [] - ], "products.py": [ - "7ba305379078463786c2fe0e1e361ff045b67622", + "e65df5ee8993034a4cb5a81129556bb8ed8e028c", [] ], "stability.py": [ - "2265523ecc84698dcd19d13db7fbd5c5d0149933", + "eeb5af23002993ee69d62aff4dacba522f7d8c9d", [] ], "testdriver-extra.js": [ @@ -378963,11 +383554,11 @@ [] ], "testloader.py": [ - "346fe2a272088bd8dc91771b0b4183ab4db2d77d", + "9492a8bc38e665245e4705fd76f422eb5682dcb9", [] ], "testrunner.py": [ - "04221cb263674bf1fcdb231380ed039c18c40fe1", + "4bc978e880e9d46713c124e996cfde1b526a7035", [] ], "tests": { @@ -378985,11 +383576,11 @@ [] ], "test_sauce.py": [ - "e1e18ec5e9cd21daa89f917690ad12852f9a2897", + "9d0ffd925a85312972fc60ebd3491b5a239bb7b1", [] ], "test_webkitgtk.py": [ - "98c2988deea068dbd47add17faa846a7cd04e114", + "b20d3576674ed107a814b0546d2f90f408abb37e", [] ] }, @@ -379002,7 +383593,7 @@ [] ], "test_formatters.py": [ - "9aa5502bb6bd6b660736ce4dd625aa2d0390f283", + "04526da702baa66695fb2a37606e661404167cb2", [] ], "test_manifestexpected.py": [ @@ -379010,7 +383601,7 @@ [] ], "test_products.py": [ - "75794d481313c4684d1094c7078af9edd2258cbd", + "1a38c00cd5793f440fc7273b825e31cfa7d4ac9d", [] ], "test_stability.py": [ @@ -379018,7 +383609,7 @@ [] ], "test_testloader.py": [ - "f68bb5fb33a82ca6ef8074f05ed14ff1d1195ea4", + "77cd85b820d72e45cb33a856f3bd46735292a654", [] ], "test_update.py": [ @@ -379036,7 +383627,7 @@ [] ], "base.py": [ - "547808e529330e3c10e61f50e7dcb80a838f2897", + "47ea7ffb41f0d203caa0a921ddce4cfd5bfc0461", [] ], "metadata.py": [ @@ -379048,7 +383639,7 @@ [] ], "sync.py": [ - "4ace28f443cd238c1a0fe0902c7b0db88fdaf6bb", + "2c9834c672d65cb1e9823e200a0bb49cee950c6f", [] ], "tree.py": [ @@ -379061,19 +383652,19 @@ ] }, "vcs.py": [ - "896d8a0d2c6ef1583b704f898d21ac957d99c793", + "3419a507dbaef036dd9606c45eb7a672b736ff5e", [] ], "webdriver_server.py": [ - "dfae057fd332f6bad606b40aa9a74152b13bef0a", + "f3bf56f40491bd24a5286be2711bd6380a4d91d5", [] ], "wptcommandline.py": [ - "90edd64f527d04176eacb82d7bc8bc31a3022c59", + "c7050eb80c2bed0766769952e1c0fa49b2b4517b", [] ], "wptlogging.py": [ - "444d1d962d25873109977b937d96c86cb293cd8f", + "b5cb58881fd01537174ed44ce0791f14a299487a", [] ], "wptmanifest": { @@ -379104,11 +383695,11 @@ [] ], "parser.py": [ - "f6ae1e2940ef86a58043d3aa8ae97b8dc4e8ee18", + "4c97c6914139cc8b7a354b25ed3da0c9789a60b7", [] ], "serializer.py": [ - "ec8d80ed6f7151b2913f975df0fc387a127de152", + "3fc39a43053a1ffd2074c62985c5b7a04a84507e", [] ], "tests": { @@ -379125,7 +383716,7 @@ [] ], "test_serializer.py": [ - "b247855801eac6589aebd4555c6d9e8653e12e4f", + "02e52815dbdc442fb9f7b58034b996d8c42d25c3", [] ], "test_static.py": [ @@ -379139,11 +383730,11 @@ } }, "wptrunner.py": [ - "bb1e570e85ff96da7f65bf3207912f5f2eb6ff27", + "25a2515ef6f8d3181f3a414ea992b61209cf61a0", [] ], "wpttest.py": [ - "b7a7cec1977f813227ee655c3d8367e940c8cde2", + "0cd72e285b00660a5684507b2f38b1bf10f5ac05", [] ] }, @@ -379216,7 +383807,7 @@ ] }, "setup.py": [ - "fdd8566435a1c8269487b01aab24c123534144b7", + "36081619b66ad25799593c908113e6a4b394d0d1", [] ], "tests": { @@ -379226,7 +383817,7 @@ [] ], "base.py": [ - "2e7fa443c36ecd4351b49f0739d0e1b8d18e0769", + "e5b4b4b9dcba570f0b4b14ac7ad07c313bed08f7", [] ], "docroot": { @@ -379415,11 +384006,11 @@ ] }, "test_config.py": [ - "85271c3a4b324705688f505b53499bab83e133b4", + "9f84577c7fa956030214562952d289ab985baff9", [] ], "test_replacement_tokenizer.py": [ - "8d0f25058d49205155b84d1619f06a3a7d14cf5a", + "6a3c563c8ce4e4ca734f4e5aa81860d84222b3a3", [] ], "test_request.py": [ @@ -379441,7 +384032,7 @@ [] ], "config.py": [ - "843f6e664e345c16a2633d6f8eef30c2ddcafccf", + "82b1b59f0fc82e4b95c16fec96c9ea1bd2a3bb76", [] ], "constants.py": [ @@ -379449,15 +384040,15 @@ [] ], "handlers.py": [ - "9eb4a44c199867ec3ff7275b9a3028dbfbe175fa", + "880086de775673672acab8883d0df16075d197ac", [] ], "logger.py": [ - "6c91492c7e9a9d752be40c474d51245975f6b1ff", + "07429d68a919ac500760ee0db25b77eb02246db9", [] ], "pipes.py": [ - "6845c33e9855ebda8d277ab05098a5f119a104e3", + "740a2268fdd98c0e08846b7fc2a36e36ff79d94d", [] ], "ranges.py": [ @@ -379465,11 +384056,11 @@ [] ], "request.py": [ - "76644cc4969741bda6f38a4acf574a31c8f1130f", + "86f8c436c2af7bb307b217d69591e1ef2cf2c7b7", [] ], "response.py": [ - "8763cca9036f268197fce38d45a5cf613d5b2a49", + "0b0ea2cb4a85746c30ad97319980db20cdc4433a", [] ], "router.py": [ @@ -379481,7 +384072,7 @@ [] ], "server.py": [ - "cfa86f993aaf665b81ab1c35f74d92e8cc67d89a", + "e413dc237b1de222ef6a73a08b8996b4e634a4ee", [] ], "sslutils": { @@ -379494,7 +384085,7 @@ [] ], "openssl.py": [ - "87a8cc9cc783cd5471ce996b96dfe8737b6d03f9", + "365055bc45fc32f8fe1618d427a11ea3f523c194", [] ], "pregenerated.py": [ @@ -379503,11 +384094,11 @@ ] }, "stash.py": [ - "66c2713191307049537641e1d48cf9ba3bb4a3ee", + "493144132e230e6ad943a9b77e09790ccbb6cfa5", [] ], "utils.py": [ - "ed74b73fb2a8711f1736f5d4c59333110714e85f", + "da4a4c1d596a695231ec156eb7d7a5497b3e4084", [] ], "wptserve.py": [ @@ -379515,7 +384106,7 @@ [] ], "ws_h2_handshake.py": [ - "c813ecb5a0b3d1a92ef95846115109ca02f1e633", + "5a9ff58dd5fa22780c5a0361acb286458f9f245d", [] ] } @@ -379722,13 +384313,13 @@ }, "resources": { "eventrecorder.js": [ - "649930b42cbaaedbfab8341df90da90fff7b2ff1", + "1e306c0d0a042feb2b85ae3aa4244bf7e39a9e44", [] ] } }, "update-built-tests.sh": [ - "3bc5e367948d9dc26c91e75c2bfd37cd5e3b781e", + "bb23a2e52ced38fb8b5e1281bdc40781fb094573", [] ], "upgrade-insecure-requests": { @@ -380054,7 +384645,7 @@ [] ], "setters_tests.json": [ - "8aa74d6b8a28d9021050f4e52e7ee7f8f411912f", + "69c36d01536bdc6ac2d711d0c96eb51d6e1045e8", [] ], "toascii.json": [ @@ -380062,7 +384653,7 @@ [] ], "urltestdata.json": [ - "dfb226deacde13cdb9dca3d506a92e91feb1f6ee", + "d20e8482c193d09d9a77aab3600a5f65425e3be2", [] ] } @@ -380070,7 +384661,7 @@ "urlpattern": { "resources": { "urlpatterntestdata.json": [ - "a9e74c4800f473693e1d543da0df33405468a638", + "be78ec211fc6ff39112515f33b2bdb2b571e7736", [] ] } @@ -380086,11 +384677,11 @@ [] ], "webperftestharness.js": [ - "0433dfcc6dfef5f299dd4ddcd085df299b4f3a9f", + "2fbd0210de906dc530598b23fd0cb9594cb38372", [] ], "webperftestharnessextension.js": [ - "07699efafb552c16afdd7701ab0c192aaf2218e6", + "8640918d4f255eb55554736a2ce8dcce1799e881", [] ] } @@ -380381,7 +384972,7 @@ }, "web-animations": { "META.yml": [ - "bf92f7a7516302641aabcefe3c482ba6889c2c23", + "9ba1245bde50cb10f7a41631b98d3eba6863d829", [] ], "README.md": [ @@ -380395,7 +384986,7 @@ [] ], "property-types.js": [ - "dba946d38869f925a990c8889a2eb06d0e2aeb21", + "6f39020b5c860b8af1326f66fd99d52583a5fd8e", [] ], "property-utils.js": [ @@ -380439,7 +385030,7 @@ ] }, "testcommon.js": [ - "933ee95af2bfa7bf44b204d8a9350655d3a2924c", + "609fa9384d518f27ae5074c683f38daeec865915", [] ], "timing-model": { @@ -380654,7 +385245,7 @@ ] }, "test-helpers.js": [ - "d4f420ecf49981b14ea88b9af98fe483c852e209", + "32215bbcdd05d88f372cf0520052876828c6ec03", [] ], "urn-uuid.har": [ @@ -380667,8 +385258,8 @@ [] ], "cors": { - "__dir__.headers": [ - "9d1d0b0ef2fd5415782c8407ec154b1f47ce5c07", + "__dir__.sub.headers": [ + "767da13cb2f6ef30d854bad9bb49d1d3445f5bfd", [] ], "cross-origin.wbn": [ @@ -380798,6 +385389,10 @@ "check-cookie-and-return-bundle.py": [ "32765e85c93d3bd57cd83f1cf0d7299cf4e7975d", [] + ], + "csp-blocked.https.tentative.html.sub.headers": [ + "ac826f8c485d107806e841d6ffb463bf5d20c0a8", + [] ] } }, @@ -381097,6 +385692,10 @@ "e447830c5ffb442842bc1c6c6227dd8531d085e0", [] ], + "dummy-processor-globalthis.js": [ + "d1b16cc9aaac4a21f8c428d2a1d583fc07914c67", + [] + ], "dummy-processor.js": [ "11155d508c51956ee07dcf4cf7c68829920c2af6", [] @@ -381291,17 +385890,49 @@ }, "webcodecs": { "META.yml": [ - "2c510e2a7cad389be9b70df7f24f59f4928d0d88", + "b5b838a4cf9767d555df2b08f057636e1e7b86ee", [] ], "README.md": [ - "d9055dc3dbd09ae59846c5ea32b16236740bfa98", + "093c92751fefb92e98737d3b6b810d8233e1820c", + [] + ], + "av1.mp4": [ + "8d2a7acdb860d76bbf9bf217de26d351c0db4f7e", + [] + ], + "four-colors-flip.avif": [ + "2927e3a5f2edcfb9208d2850f9f2a2c88becb9a6", [] ], "four-colors-flip.gif": [ "ff7b69a0e4ac1d5cd1a2e0bc44ed72467034a12b", [] ], + "four-colors-full-range-bt2020-pq-444-10bpc.avif": [ + "512a2b855e8c92d9c3e51f7cfa6c2e74b2014928", + [] + ], + "four-colors-limited-range-420-8bpc.avif": [ + "925477b04ca4a847f47bc78293c9f842cdc25cbe", + [] + ], + "four-colors-limited-range-420-8bpc.jpg": [ + "d3893b06dd5bc4c707b2ac6e6e6cd10e2a7cd3ba", + [] + ], + "four-colors-limited-range-420-8bpc.webp": [ + "8086d0140aeda218b93c5a77333240ccef586dd2", + [] + ], + "four-colors-limited-range-422-8bpc.avif": [ + "e348bade311f5c0776b890679a76eddc6b65ca2c", + [] + ], + "four-colors-limited-range-444-8bpc.avif": [ + "300cd1ca975156f0432c948c7132dbe1253c92bd", + [] + ], "four-colors.avif": [ "38ed02e69d14daa53a63f8120c2a6ff31fe368ce", [] @@ -381326,20 +385957,32 @@ "f7dd40bee9a6d4bbfcb3712c5524b264713dfba4", [] ], + "h264.annexb": [ + "60c3b8cdec43b3c7038a98705abb8cb763b79342", + [] + ], "h264.mp4": [ - "e21fcba32c125fba820ffa2269013c612d2b78fc", + "e0d6a6bedcf12dad5ec45a768f638bf1cb1ec1e7", [] ], "image-decoder-utils.js": [ - "c2341c57728b3245bb599a439b3c4d6c58dc1858", + "93bcb1f932e69e0c12c7e67ba2438c728d619892", [] ], "pattern.png": [ "85676f29ff5806a32ac6713e601fdcb71dd03777", [] ], + "sfx-opus.ogg": [ + "01a9b862cea835d43c29a4d741eb721f9bcf7038", + [] + ], "utils.js": [ - "12cb715f768dd6308d422b6c2e27ef2360f450a9", + "2e7d8b3501cd7d471bfafab20d2788bb0705d723", + [] + ], + "vp8.webm": [ + "14d970e30106ed9c6faa75d948788aa311ddfc7d", [] ], "vp9.mp4": [ @@ -381710,7 +386353,7 @@ [] ], "keys.py": [ - "2d38e1dff8760ff6d29b6e06d0ba3ac510471e1e", + "9e87ebfac1d7b631c752e099c7be57f156577585", [] ], "mouse.py": [ @@ -381805,11 +386448,11 @@ [] ], "asserts.py": [ - "7afa22fd3fb81a3f915fe5edb4aa2a57a8b2e108", + "e60d53b6c6f0c5baf8694b82332df517a782e671", [] ], "authentication.py": [ - "e61eef0696ca2145cffdfa87a02b7aa0e8817867", + "9da4bb7be5ffb76835cd33860bf74aa1981695b6", [] ], "defaults.py": [ @@ -381817,11 +386460,11 @@ [] ], "fixtures.py": [ - "0ecfcdbb2427a997d652e88bb00d7ce8733ffd28", + "6f166a9b1f6a1c333c90eccfe274a7d89f92ae0c", [] ], "helpers.py": [ - "13607e30481876a7777edfad57f48fcafbf8e40f", + "1d25d3832aea7c4ec139704e74ae1c90dfc1c2e6", [] ], "html": { @@ -381847,23 +386490,23 @@ ] }, "http_request.py": [ - "895d1319ac0ac8b9a63defcb73f303c4a31e80bd", + "242dc9c9188708eaceccd32c9379e5c9d14fbbd4", [] ], "image.py": [ - "705f2668ea1fd2dff062dfdf3e3f6ae138f1581a", + "2e7ad8c1309b2b4a1e02b424cbd74a610535a4ed", [] ], "inline.py": [ - "39e926dd09a37ace65636d9fab6652ccbf1e94d4", + "494ca74f92653d8d898e5922d0b0f1add0c4ab04", [] ], "merge_dictionaries.py": [ - "c13ab904e40e82faad1b9c4905003b1d5185baa7", + "72f1cab352dec4f333aa9f5498d6115276a3f836", [] ], "sync.py": [ - "fa5d18550ccefd74a7980be1c13e3f2b0b147cd7", + "30ff872b6e15c88981805ed97d0899de3f29a355", [] ] }, @@ -382057,7 +386700,7 @@ [] ], "RTCStats-helper.js": [ - "81abe2456e94bb84e4d56c9781dc302a502490e5", + "33cbf4a933bd37553a8595e0692f9717e145ecc9", [] ], "coverage": { @@ -382136,11 +386779,63 @@ [] ], "package.json": [ - "e0c1cfda3e818aeed539878d8ef67ec2dd991637", + "f26cfcc1421bf8f9eceeb9f7c1746ff26fb7932e", [] ] } }, + "webrtc-encoded-transform": { + "META.yml": [ + "6365c8d16af94db42f2948a50c41c43bd296ca5f", + [] + ], + "RTCPeerConnection-insertable-streams.js": [ + "87f4394b0b5e42be0ef00f78506eded669010b9f", + [] + ], + "RTCPeerConnection-sender-worker-single-frame.js": [ + "c943dafe5b154314132124e1d563df2a00b2aaf7", + [] + ], + "resources": { + "blank.html": [ + "a3c3a4689a62b45b1e429f6b7a94690e556a1259", + [] + ], + "serviceworker-failure.js": [ + "e7aa8e11be396cc32eda592ae9618391ad6fee40", + [] + ] + }, + "routines.js": [ + "4db7f39621cc891288fe7fb5b107eb9dbf21fc2a", + [] + ], + "script-audio-transform-worker.js": [ + "7cb43713d3aa4dfa7910460500267f664c2b03f6", + [] + ], + "script-change-transform-worker.js": [ + "84a7aaac181db4ce2abdac295faa1555196e9b9a", + [] + ], + "script-metadata-transform-worker.js": [ + "03ba1f4ee6e0976a68d607de9824d2fd23daacd0", + [] + ], + "script-transform-worker.js": [ + "5ea99cd2bf732cf0582a2aef1199a149738269ec", + [] + ], + "script-write-twice-transform-worker.js": [ + "5d428c81b3aa5434319e10fbec6a0075a7d40b98", + [] + ], + "sframe-transform-worker.js": [ + "617cf0a38aa0859fa6ee8af01fdab5f94b5beb18", + [] + ] + }, "webrtc-extensions": { "META.yml": [ "be8cb028f08842589d6c2f06391bc5c8469048d2", @@ -382171,30 +386866,6 @@ [] ] }, - "webrtc-insertable-streams": { - "META.yml": [ - "63fc4fc6954e144be205817b3169d277bf88a763", - [] - ], - "RTCPeerConnection-insertable-streams.js": [ - "87f4394b0b5e42be0ef00f78506eded669010b9f", - [] - ], - "RTCPeerConnection-sender-worker-single-frame.js": [ - "c943dafe5b154314132124e1d563df2a00b2aaf7", - [] - ], - "resources": { - "blank.html": [ - "a3c3a4689a62b45b1e429f6b7a94690e556a1259", - [] - ], - "serviceworker-failure.js": [ - "e7aa8e11be396cc32eda592ae9618391ad6fee40", - [] - ] - } - }, "webrtc-priority": { "META.yml": [ "a422e814479f03528f90953e574b5017578879d1", @@ -382226,14 +386897,14 @@ "b4f173a036104ad17b96ceddcf6f6d38eaf0af09", [] ], - "constants.js": [ - "535cd0e199993d2e8352ef301bdbfbadc25d37da", + "constants.sub.js": [ + "65ea4f66f29d333145d548df41472d34e42f01d9", [] ], "cookies": { "support": { "set-cookie.py": [ - "f373d1341a3ad1c71e0d3bfcfc28f4cf7cb71f5c", + "71cd8bca607c5114b9ffb8cb1bb716b9ccd2ac07", [] ], "websocket-cookies-helper.sub.js": [ @@ -382244,7 +386915,7 @@ }, "handlers": { "basic_auth_wsh.py": [ - "1bfa45b48f5112efeac30b742df2549ef04e8028", + "72e920a1d82c7ef78907d17810912128598b6ca2", [] ], "delayed-passive-close_wsh.py": [ @@ -382256,19 +386927,19 @@ [] ], "echo-query_v13_wsh.py": [ - "4083c49bc7e6c72785c1bd0e3d16082f9174d95b", + "d670e6e66053f155e8fd6153bf91ddddee076d68", [] ], "echo-query_wsh.py": [ - "8fd7ac36b2ad17c1e8a595bcf0a29de336da9e24", + "39219134952272f34518a2458a0bb5c902c7cd4a", [] ], "echo_close_data_wsh.py": [ - "e8205682a00cd935ac2ff076a8f3a4e0230b01c9", + "31ffcbb8495dac82bce144748192613c493ee89c", [] ], "echo_exit_wsh.py": [ - "44969186b124695c20f13e7183ce46f0fcba63c0", + "8f6f7f854e074b2c810b2e57e7ac6eec6324ea46", [] ], "echo_raw_wsh.py": [ @@ -382276,7 +386947,7 @@ [] ], "echo_wsh.py": [ - "df1fdfa4fcf147aa18a2c9c0042624fe01df15d9", + "7367b70af16769e8b2a9c070d628ea29bc5ecaa7", [] ], "empty-message_wsh.py": [ @@ -382296,11 +386967,11 @@ [] ], "handshake_sleep_2_wsh.py": [ - "3367ed8f80fd6810fa5a29d8fa01da81bf5bee65", + "78de7c7659ac712be51df960198691e544c52988", [] ], "invalid_wsh.py": [ - "109504743bf4b2e1fafcaf549fbc97629e43e5ad", + "4bfc3ce4e7752747c7e37bfacf6c21048a915b35", [] ], "origin_wsh.py": [ @@ -382308,11 +386979,11 @@ [] ], "protocol_array_wsh.py": [ - "098b46a6eabadbce5a0be7bb4bccde080b6d55b7", + "be24ee01fd9aabd0722b7a498289a26eeb532037", [] ], "protocol_wsh.py": [ - "6a945dd514acd1ca1f7ad8b3fd2d5fc80859c572", + "10bdf33205b5b759264f038d8b3c7dcf25f47453", [] ], "receive-backpressure_wsh.py": [ @@ -382324,23 +386995,23 @@ [] ], "send-backpressure_wsh.py": [ - "e59070c3002e06f2566a53f091709eaa5f498e58", + "d3288d0e858d811ed9e5b80197e7883c1cb8ff65", [] ], "set-cookie-secure_wsh.py": [ - "4db321fc9dc21258acfbe5488623409cf080faba", + "052a88208443174d4faa80b5f0deb48db07e9bd0", [] ], "set-cookie_http_wsh.py": [ - "2fa0ded65d804bb6422e32deea3899489e112c06", + "533109196427deb7029505e325db15ba6a7c8356", [] ], "set-cookie_wsh.py": [ - "3cec1c041cf11ebfa72503d93ecd557d12459526", + "5fe3ad9c57343ac797c384afb3a9659e5a6e0f70", [] ], "set-cookies-samesite_wsh.py": [ - "6f4a1b46c2cc7c9c05f73431c5e0b2513be690b2", + "59f0a4a598ebaf67c6583e196fba2c40b89dc01b", [] ], "simple_handshake_wsh.py": [ @@ -382348,7 +387019,7 @@ [] ], "sleep_10_v13_wsh.py": [ - "f0819101c83603635e7bfc8495d8fafbed2eab36", + "b0f1ddeb9ad2e7a12a6c09ea68458983d766c03b", [] ], "stash_responder_blocking_wsh.py": [ @@ -382356,11 +387027,11 @@ [] ], "stash_responder_wsh.py": [ - "fd6eabc7023f435b440a4310d8bcd67f0ab40414", + "d18ad3bc967e7d8fb19cecc916408b5d303594c1", [] ], "wrong_accept_key_wsh.py": [ - "77f703ab25fa9dd66f49e8481260078732ceb21b", + "43240e1afb6126ed9e6cdacd50d7f8b95fcc9358", [] ] }, @@ -382390,7 +387061,7 @@ ], "resources": { "url-constants.js": [ - "9bc77aa3264a157f3da9e37504febfe8563d40bb", + "fe681af5c42a446944ce130d6cb2fcd2d11bde95", [] ] } @@ -382398,7 +387069,7 @@ }, "unload-a-document": { "001-1.html": [ - "c6ef23018b1058eb9de29e9bd35ecbeabf90c77d", + "7cf4ab6ff8fb713a17ec879798028e678575f1dd", [] ], "001-2.html": [ @@ -382406,7 +387077,7 @@ [] ], "002-1.html": [ - "04623ffc473fadaaf48f097994d60751400900b6", + "1922bb4caed29ec014b9c89aa4df7aeda56e2fd9", [] ], "002-2.html": [ @@ -382414,14 +387085,10 @@ [] ], "005-1.html": [ - "1dbcef22bb368e60ba0a1b05b5ee9d46c56892ba", + "e084ade7e5230f5684aa7a22c9cc511788a3f2dc", [] ] - }, - "websocket.sub.js": [ - "85da0b6ab72547c010940d52a0d3e126a56da14a", - [] - ] + } }, "webstorage": { "META.yml": [ @@ -382679,6 +387346,10 @@ "72207a241704de2244f88f3de4e2fa72e17ee8d0", [] ], + "comment-in-cue-text.test": [ + "38e4b9f16e47227b825c9d7535784459b4ec7a1d", + [] + ], "empty.vtt": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] @@ -382878,6 +387549,10 @@ "30d17b9de1afdbdf1a3616d133ead56d54440ae0", [] ], + "comment-in-cue-text.vtt": [ + "47081905a7a4f97aff851c4cb5624013617fd598", + [] + ], "header-garbage.vtt": [ "0504e796bedfdfc2d37c023f5bf64d9c77386ea7", [] @@ -384624,7 +389299,7 @@ [] ], "webxr_util.js": [ - "cf9c6ff880a16baceb8feb09a5d3aa1ed237f802", + "75d73968ccaaca1411391f25b2726f6bda57e27d", [] ] }, @@ -385314,6 +389989,32 @@ [] ] }, + "multi-globals": { + "current": { + "current.html": [ + "e6261f83883fb20b2aaa542746fa45abed917742", + [] + ], + "worker.js": [ + "44103842a40d44c39dd0081dd8ef736d04df3e12", + [] + ] + }, + "incumbent": { + "incumbent.html": [ + "d8bd1ae2c0f2c6d0eb6b09e4ca93997f5836443e", + [] + ], + "worker.js": [ + "03f02a8690867d88aadf2135e98db505cf6722fa", + [] + ] + }, + "worker.js": [ + "fcc521e3137046515ed877e1ce8d2b90069625bc", + [] + ] + }, "non-automated": { "application-cache-dedicated.html": [ "704ecbcd7ff5333affdf993592f9e3f420523c35", @@ -385750,7 +390451,7 @@ [] ], "credentials.py": [ - "e9fac0e6696eec8875e61c8f80d65a4f0ca8adb4", + "d5fb05aecab485c65aabcfaed529834217fc91a1", [] ], "csp-tests.js": [ @@ -385862,7 +390563,7 @@ [] ], "set-cookie.py": [ - "1b6eb6c1028c582ea32d4c06b318c89569579eed", + "a36a69cce6774a2b5f8caaae85a236e95ef3ec9c", [] ], "syntax-error-worklet-script.js": [ @@ -386111,6 +390812,10 @@ "50b5c801d615e73eafb27fd92ba993270478697c", [] ], + "bad-chunk-encoding.py": [ + "c34c5fa1de20f45cd78436a670c12dd56ac5585f", + [] + ], "base.xml": [ "ed01aeceb5a0adb58b15a75eca2c3345348c267a", [] @@ -386168,7 +390873,7 @@ [] ], "gzip.py": [ - "17f142c4405f8e121a2468ffc380a9d56ef0822e", + "fd1ca926fb7d6b5ffa292a4bce77a1116803f296", [] ], "header-content-length-twice.asis": [ @@ -386228,11 +390933,11 @@ [] ], "inspect-headers.py": [ - "72c1a7f1d7a4daae25a49a874cb9c311aa0ed344", + "123d637134dc624f0e9f0b3ddfe35d07e62920a3", [] ], "invalid-utf8-html.py": [ - "1c0cd84f42ffb2261d70dbad034cd99eb9ba1b90", + "825f2d835ad472ee5eaa31dc93655c949fded19c", [] ], "last-modified.py": [ @@ -386298,7 +391003,7 @@ [] ], "shift-jis-html.py": [ - "b3326c1ba7b3b2398fc1933ae4a49ad05a005b84", + "d8941e9b393e98a787106cc47ab9009b48da7356", [] ], "status.py": [ @@ -386310,7 +391015,7 @@ [] ], "trickle.py": [ - "4a6bbd7f4f275efaa8f3671f75db7874200b9402", + "eab5310387e37ad1d6963b5e2340b002198004d1", [] ], "upload.py": [ @@ -386334,7 +391039,7 @@ [] ], "win-1252-xml.py": [ - "50e9f04fb8dde0f20b07c5b0777caa005480be3a", + "e26c7f9ec0f488cb4b62d9eb83fba9d355b84a4f", [] ], "workerxhr-origin-referrer.js": [ @@ -386402,16 +391107,6 @@ "aeff2af97c8a3d415c95115c728d0464c4ca04c7", [] ] - }, - "xslt": { - "META.yml": [ - "9c059d2e9117d82f20b8dffc29026eb4e2305ef5", - [] - ], - "externalScript.js": [ - "7a2bf3622554937bf483a3b3afa9f16187fdabf6", - [] - ] } }, "testharness": { @@ -386724,11 +391419,29 @@ {} ] ], - "File-constructor.html": [ - "3477e4ada16e9297c2f2ee91da1d17f930a6a913", + "File-constructor.any.js": [ + "b5602886003f411e7fc9fa55b2649283852f9272", [ - null, - {} + "FileAPI/file/File-constructor.any.html", + { + "script_metadata": [ + [ + "title", + "File constructor" + ] + ] + } + ], + [ + "FileAPI/file/File-constructor.any.worker.html", + { + "script_metadata": [ + [ + "title", + "File constructor" + ] + ] + } ] ], "Worker-read-file-constructor.worker.js": [ @@ -386789,40 +391502,162 @@ {} ] ], - "send-file-formdata-controls.tentative.html": [ - "4259741b63ef316613a2fbea4236bbcbe6cfb1df", + "send-file-formdata-controls.any.js": [ + "e95d3aada4421fc1d8f4d1328b569008e5654eca", [ - null, - {} + "FileAPI/file/send-file-formdata-controls.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files named using controls" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } + ], + [ + "FileAPI/file/send-file-formdata-controls.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files named using controls" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } ] ], - "send-file-formdata-punctuation.tentative.html": [ - "d8e84e9d978094f84c5c0fb06526fd0734f13efa", + "send-file-formdata-punctuation.any.js": [ + "987dba39aff3a15f419c91254b7645a8c5b7af64", [ - null, - {} + "FileAPI/file/send-file-formdata-punctuation.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files named using punctuation" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } + ], + [ + "FileAPI/file/send-file-formdata-punctuation.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files named using punctuation" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } ] ], - "send-file-formdata-utf-8.html": [ - "7a7f6cefe776b9d4c9ed29c6652a6978be5dbb4b", + "send-file-formdata-utf-8.any.js": [ + "b8bd74c717a1b35e894cb963101b89ee01edff0e", [ - null, - {} + "FileAPI/file/send-file-formdata-utf-8.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files in UTF-8 fetch()" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } + ], + [ + "FileAPI/file/send-file-formdata-utf-8.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: FormData: Upload files in UTF-8 fetch()" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } ] ], - "send-file-formdata.html": [ - "77e048e54741c013ab5ce9395265de28e1de8771", + "send-file-formdata.any.js": [ + "e13a34828a0ebe7eae04aeb2301fbc4ce4875353", [ - null, - {} + "FileAPI/file/send-file-formdata.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: Upload ASCII-named file in UTF-8 form" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } + ], + [ + "FileAPI/file/send-file-formdata.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: Upload ASCII-named file in UTF-8 form" + ], + [ + "script", + "../support/send-file-formdata-helper.js" + ] + ] + } ] ] }, - "fileReader.html": [ - "b767e22d4a66eba06560617405952dfbefa2c084", + "fileReader.any.js": [ + "2876dcb4ce314e3441e1e61a37505235209f4e2e", [ - null, - {} + "FileAPI/fileReader.any.html", + { + "script_metadata": [ + [ + "title", + "FileReader States" + ] + ] + } + ], + [ + "FileAPI/fileReader.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileReader States" + ] + ] + } ] ], "filelist-section": { @@ -386856,39 +391691,129 @@ ] ], "reading-data-section": { - "Determining-Encoding.html": [ - "d65ae9db18a1ff4dc87258505c3f966e81b4c542", + "Determining-Encoding.any.js": [ + "5b69f7ed9821acefa84ecd1d5cc849f6e0f60b78", [ - null, - {} + "FileAPI/reading-data-section/Determining-Encoding.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: Blob Determining Encoding" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/Determining-Encoding.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: Blob Determining Encoding" + ] + ] + } ] ], - "FileReader-event-handler-attributes.html": [ - "86657b5711aff156a4bb60f6d1add3f301cc25cc", + "FileReader-event-handler-attributes.any.js": [ + "fc71c6434812e220455c2f9d3df19426b4091fb1", [ - null, - {} + "FileAPI/reading-data-section/FileReader-event-handler-attributes.any.html", + { + "script_metadata": [ + [ + "title", + "FileReader event handler attributes" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/FileReader-event-handler-attributes.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileReader event handler attributes" + ] + ] + } ] ], - "FileReader-multiple-reads.html": [ - "e7279fe4bd445e9fec2495b6682054dc91c97fe9", + "FileReader-multiple-reads.any.js": [ + "4b19c69b425188acd52f647e98963d70b350ca83", [ - null, - {} + "FileAPI/reading-data-section/FileReader-multiple-reads.any.html", + { + "script_metadata": [ + [ + "title", + "FileReader: starting new reads while one is in progress" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/FileReader-multiple-reads.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileReader: starting new reads while one is in progress" + ] + ] + } ] ], - "filereader_abort.html": [ - "940a775d35bf422db758623a278538f6ef8e7c48", + "filereader_abort.any.js": [ + "c778ae55bb573bc2b7f8d5c1b76f9cd4c866d51f", [ - null, - {} + "FileAPI/reading-data-section/filereader_abort.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_abort" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_abort.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_abort" + ] + ] + } ] ], - "filereader_error.html": [ - "cf4524825b80cac569b63b71b4ace474a0e66c24", + "filereader_error.any.js": [ + "9845962090132e6620aecb0668081e65441e143c", [ - null, - {} + "FileAPI/reading-data-section/filereader_error.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_error" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_error.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_error" + ] + ] + } ] ], "filereader_events.any.js": [ @@ -386902,46 +391827,154 @@ {} ] ], - "filereader_readAsArrayBuffer.html": [ - "31001a51a0727fbd4d1876f3aa4b6e6c860a6874", + "filereader_readAsArrayBuffer.any.js": [ + "d06e3170782b7ca70fc25b734a4c2080003a6720", [ - null, - {} + "FileAPI/reading-data-section/filereader_readAsArrayBuffer.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsArrayBuffer" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_readAsArrayBuffer.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsArrayBuffer" + ] + ] + } ] ], - "filereader_readAsBinaryString.html": [ - "b550e4d0a96dc7e407e960be1bf43b5115037907", + "filereader_readAsBinaryString.any.js": [ + "e69ff15e75b5903bdf984fff9fb35b1805a62f22", [ - null, - {} + "FileAPI/reading-data-section/filereader_readAsBinaryString.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsBinaryString" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_readAsBinaryString.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsBinaryString" + ] + ] + } ] ], - "filereader_readAsDataURL.html": [ - "5bc39499a229d182226aa099a843fa43d911ca04", + "filereader_readAsDataURL.any.js": [ + "d6812121295beedc38164a41cea20c848533369f", [ - null, - {} + "FileAPI/reading-data-section/filereader_readAsDataURL.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: FileReader.readAsDataURL" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_readAsDataURL.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: FileReader.readAsDataURL" + ] + ] + } ] ], - "filereader_readAsText.html": [ - "7d639d0111473b87973c121e2f98732a15ae0e28", + "filereader_readAsText.any.js": [ + "4d0fa113931d3425833e176f73e4ebca14cf918e", [ - null, - {} + "FileAPI/reading-data-section/filereader_readAsText.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsText" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_readAsText.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readAsText" + ] + ] + } ] ], - "filereader_readystate.html": [ - "1586b8995059f7f0ee86aeca0f303345bf861bdb", + "filereader_readystate.any.js": [ + "3cb36ab999653bfddffc7c765b7e1e8e266bf90c", [ - null, - {} + "FileAPI/reading-data-section/filereader_readystate.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readystate" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_readystate.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_readystate" + ] + ] + } ] ], - "filereader_result.html": [ - "b80322ed424f83edfe5470654a241844c0b12ed7", + "filereader_result.any.js": [ + "28c068bb349c3de4ea1af8bea2d277159ccf171d", [ - null, - {} + "FileAPI/reading-data-section/filereader_result.any.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_result" + ] + ] + } + ], + [ + "FileAPI/reading-data-section/filereader_result.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FileAPI Test: filereader_result" + ] + ] + } ] ] }, @@ -390333,6 +395366,13 @@ {} ] ], + "serialize-sharedarraybuffer-throws.https.html": [ + "6900759f441225f47b6f338f470883da6b9c3c12", + [ + null, + {} + ] + ], "string-list-ordering.htm": [ "cc905e56ecf83ea4cd4f1fe2ccfac425cdc5f9d0", [ @@ -397647,6 +402687,17 @@ ] ] }, + "randomUUID.https.any.js": [ + "49cf34c92ba98cb0cedf7170c892aab2ce7cf8ea", + [ + "WebCryptoAPI/randomUUID.https.any.html", + {} + ], + [ + "WebCryptoAPI/randomUUID.https.any.worker.html", + {} + ] + ], "secure_context": { "crypto-subtle-secure-context-available.https.sub.html": [ "cc3617c37ad27ff5edecd8a1aa898982c2c467aa", @@ -397788,7 +402839,7 @@ ] ], "class-string-named-properties-object.window.js": [ - "cff2582f8ce9e8f1efea0e7b6b12f5710fa4f35c", + "a427a2f8142e5392725f078e1fdb0c179994c593", [ "WebIDL/ecmascript-binding/class-string-named-properties-object.window.html", {} @@ -397924,6 +402975,53 @@ } ] ], + "global-object-implicit-this-value.any.js": [ + "cc0d08fcbd0d9c7598a59219ba70fe8ca4d89d81", + [ + "WebIDL/ecmascript-binding/global-object-implicit-this-value.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "WebIDL/ecmascript-binding/global-object-implicit-this-value.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "WebIDL/ecmascript-binding/global-object-implicit-this-value.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "WebIDL/ecmascript-binding/global-object-implicit-this-value.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], "has-instance.html": [ "caf0be47290607f9d63b42dde96c31816a1f7376", [ @@ -397931,6 +403029,13 @@ {} ] ], + "interface-object-set-receiver.html": [ + "241b5510fd639e9f6c5bf2430bc5c22277d49931", + [ + null, + {} + ] + ], "interface-object.html": [ "132c61ddaed4a31367d00dee5fcb292a9661e9be", [ @@ -397939,7 +403044,7 @@ ] ], "interface-prototype-constructor-set-receiver.html": [ - "20f33f243abeef901357fb2026f0fe2182277673", + "cf020d21156b355034341fb1bc8b8ebc8610ee74", [ null, {} @@ -398010,13 +403115,6 @@ ] ] }, - "named-properties-object.html": [ - "556eca4b3318fd96d753fe9f1f165b2e4bd170ff", - [ - null, - {} - ] - ], "no-regexp-special-casing.any.js": [ "4446dbf69c02ab466ad03fd69d6ed3924d8e84a0", [ @@ -398041,6 +403139,13 @@ null, {} ] + ], + "window-named-properties-object.html": [ + "fe8275ef6a3fc6e6a8074368804ea9f4f4560582", + [ + null, + {} + ] ] }, "idlharness.any.js": [ @@ -398471,6 +403576,15 @@ ] }, "audio-output": { + "enumerateDevices-with-selectAudioOutput.https.html": [ + "51da44286a760b1f6df84d7cfdb24f6dbdf6f6a9", + [ + null, + { + "testdriver": true + } + ] + ], "idlharness.https.window.js": [ "d7cdbd076833481b53f35b26d5ee016fd70c4111", [ @@ -398489,6 +403603,13 @@ } ] ], + "selectAudioOutput-sans-user-activation.https.html": [ + "9f014476d2717e08178668c712f8ceffd2f9a0aa", + [ + null, + {} + ] + ], "setSinkId.https.html": [ "b1f703a9350bf557f0d38911a09c09a9d02eaa3a", [ @@ -400963,6 +406084,66 @@ ] ], "canonicalizeFilter": { + "data-prefix-and-mask-size.https.window.js": [ + "49cf41ce9eb0772c35b5643ac5e8c9f3ae0d7bb1", + [ + "bluetooth/requestDevice/canonicalizeFilter/data-prefix-and-mask-size.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testharness.js" + ], + [ + "script", + "/resources/testharnessreport.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], + "dataPrefix-buffer-is-detached.https.window.js": [ + "936ca4735c794a030f79eefc70f9635d665c7536", + [ + "bluetooth/requestDevice/canonicalizeFilter/dataPrefix-buffer-is-detached.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "device-name-longer-than-29-bytes.https.html": [ "28f614bcbf29ef7194086732e264da9b3c6c2950", [ @@ -400972,6 +406153,32 @@ } ] ], + "empty-dataPrefix.https.window.js": [ + "75e12219ccdffa3525342ea4f8fc00384c0ac049", + [ + "bluetooth/requestDevice/canonicalizeFilter/empty-dataPrefix.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "empty-filter.https.html": [ "4beb5266b680b4a75d13a4b81aa2e5e6fcfd2d66", [ @@ -400990,6 +406197,40 @@ } ] ], + "empty-manufacturerData-member.https.window.js": [ + "af3118a48580dd1ef2b897ccbabc4e3e9e08e6a1", + [ + "bluetooth/requestDevice/canonicalizeFilter/empty-manufacturerData-member.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testharness.js" + ], + [ + "script", + "/resources/testharnessreport.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "empty-namePrefix.https.html": [ "3e490e17d993c4cb2390b640cf1e8f715dfa3f41", [ @@ -401017,6 +406258,58 @@ } ] ], + "invalid-companyIdentifier.https.window.js": [ + "18cdbb4b4a85fa9fc19146d72e5494161b7dffe6", + [ + "bluetooth/requestDevice/canonicalizeFilter/invalid-companyIdentifier.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], + "mask-buffer-is-detached.https.window.js": [ + "502e2e40570168cbaa50e4911eec8f004e64e793", + [ + "bluetooth/requestDevice/canonicalizeFilter/mask-buffer-is-detached.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "max-length-exceeded-name-unicode.https.html": [ "4ec036695bd990aa419a48506861841b559971b9", [ @@ -401098,6 +406391,40 @@ } ] ], + "same-company-identifier.https.window.js": [ + "7416202d3d5f2172c3bdb6d3fd038c00eeb7cc11", + [ + "bluetooth/requestDevice/canonicalizeFilter/same-company-identifier.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testharness.js" + ], + [ + "script", + "/resources/testharnessreport.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "unicode-valid-length-name-name.https.html": [ "70b284a2738d5fa1fd85183f8c8c50d2e9084018", [ @@ -401163,7 +406490,7 @@ ] ], "filter-matches.https.html": [ - "1c42d779216f138a1b271dda875c770e98390e8a", + "7815a1a5b10f9930aaa96083f4efe38d5ccf63d3", [ null, { @@ -401180,6 +406507,40 @@ } ] ], + "manufacturer-data-filter-matches.https.window.js": [ + "548b5d0b3fc7b1920499a204df4e98f1b3d7a39f", + [ + "bluetooth/requestDevice/manufacturer-data-filter-matches.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testharness.js" + ], + [ + "script", + "/resources/testharnessreport.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-test.js" + ], + [ + "script", + "/bluetooth/resources/bluetooth-fake-devices.js" + ] + ] + } + ] + ], "name-empty-device-from-name-empty-filter.https.html": [ "6d707a13850be317685783961dbecbd126d80b69", [ @@ -403074,7 +408435,7 @@ ] ], "accept-ch-cache-revalidation.https.html": [ - "453b6fc5fe609fa786a57246132d560c5e214f8a", + "84555a02852a05d9fdd4ef4579f3273852baf207", [ null, {} @@ -403095,7 +408456,7 @@ ] ], "accept-ch-feature-policy.sub.https.html": [ - "381e8a1b52a1d7aa360d04a28a5992f6b83040cf", + "f9e5db8acc4717ce11b2419dd04c07b728bd871c", [ null, {} @@ -403109,7 +408470,7 @@ ] ], "accept-ch-no-feature-policy-navigation.https.html": [ - "13a37633eda8fd5375a917d996b4566971c08798", + "559e5a6758d0ee4d775642e8b2dd9c14160b4cdb", [ null, {} @@ -403481,21 +408842,21 @@ ] ], "http-equiv-accept-ch-merge.https.html": [ - "177a836557607569a865dfb25ca5a224be8878a0", + "4ed2291de2999d267de8510f2204079b153f368a", [ null, {} ] ], "http-equiv-accept-ch-non-secure.http.html": [ - "909ab5f5f2a563348da0d0bb3377961f1015d031", + "4820af459247f8ba8da46cd7ebb13ce6d1e01cb6", [ null, {} ] ], "sec-ch-quotes.https.html": [ - "d60bf4c9b670a94d3c7c991c6aed5aac73a844f4", + "f48c8c09e097dde80c8b91e11d2b0784698bd25d", [ null, {} @@ -404758,6 +410119,92 @@ ] ] }, + "compute-pressure": { + "compute_pressure_arguments.tentative.https.window.js": [ + "515c9d72423b93f4f76ea32a3b94e0f89d540889", + [ + "compute-pressure/compute_pressure_arguments.tentative.https.window.html", + {} + ] + ], + "compute_pressure_basic.tentative.https.window.js": [ + "dac1dabee0fa40f5402ef02a3065a6ff434904b7", + [ + "compute-pressure/compute_pressure_basic.tentative.https.window.html", + {} + ] + ], + "compute_pressure_detached_iframe.tenative.https.html": [ + "be0b9380c35e430e84f00ab7ba9401199e8f6e2c", + [ + null, + {} + ] + ], + "compute_pressure_different_quantizations.tentative.https.window.js": [ + "6f1d6d8784187dbf3066e676ad9915b37a29530f", + [ + "compute-pressure/compute_pressure_different_quantizations.tentative.https.window.html", + {} + ] + ], + "compute_pressure_different_quantizations_across_iframes.tentative.https.window.js": [ + "e0429b2d04fb6d25294d2fe3b06919135ce75eb2", + [ + "compute-pressure/compute_pressure_different_quantizations_across_iframes.tentative.https.window.html", + {} + ] + ], + "compute_pressure_multiple.tentative.https.window.js": [ + "d1650cb873765e93ceff3b48448c8e3bf17ea3ee", + [ + "compute-pressure/compute_pressure_multiple.tentative.https.window.html", + {} + ] + ], + "compute_pressure_multiple_across_iframes.tentative.https.window.js": [ + "5a020ad8a0cc55326e618879c032da3ef3625954", + [ + "compute-pressure/compute_pressure_multiple_across_iframes.tentative.https.window.html", + {} + ] + ], + "compute_pressure_observe_idempotent.tentative.https.window.js": [ + "773512f4be5cdadba59150be842929ef45885c92", + [ + "compute-pressure/compute_pressure_observe_idempotent.tentative.https.window.html", + {} + ] + ], + "compute_pressure_stop.tentative.https.window.js": [ + "5dbd50574692a95faab5286eba10cc5e8f1a4476", + [ + "compute-pressure/compute_pressure_stop.tentative.https.window.html", + {} + ] + ], + "compute_pressure_stop_idempotent.tentative.https.window.js": [ + "785c55be4dc0cc2b18563e3e5732e5f0652c5cfb", + [ + "compute-pressure/compute_pressure_stop_idempotent.tentative.https.window.html", + {} + ] + ], + "compute_pressure_stop_immediately.tentative.https.window.js": [ + "0d9929c47a9cbeb645ab1e30c0610d3a505e7075", + [ + "compute-pressure/compute_pressure_stop_immediately.tentative.https.window.html", + {} + ] + ], + "compute_pressure_values.tenative.https.window.js": [ + "837fa9d62df5805892f8db0c2cf1ff9742bde72c", + [ + "compute-pressure/compute_pressure_values.tenative.https.window.html", + {} + ] + ] + }, "console": { "console-is-a-namespace.any.js": [ "a4aae7ffce8ac81947ab092089aefb80b117c86e", @@ -404876,11 +410323,15 @@ }, "content-index": { "content-index.https.window.js": [ - "56870707a986afa8dc695a54ae4eaed1b572e3a2", + "690b23176c42dceb38b4294c5495d4013d0820fe", [ "content-index/content-index.https.window.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], [ "script", "/service-workers/service-worker/resources/test-helpers.sub.js" @@ -405546,7 +410997,7 @@ ] ], "form-action-src-redirect-blocked.sub.html": [ - "86dfe7a03d2c9d56feaf298acc61dc803fd3a436", + "ac25e03d5c0d0adf6b6d34e00a7d6bf035413636", [ null, {} @@ -408343,6 +413794,13 @@ {} ] ], + "invalid-characters-in-policy.html": [ + "bd884c6fbd155a24e0348550de5f3faf6af60291", + [ + null, + {} + ] + ], "no-default-src.sub.html": [ "9a89ec05ad00f3122680cc7aace96999610bf195", [ @@ -408353,7 +413811,7 @@ ] ], "only-valid-whitespaces-are-allowed.html": [ - "d7567a93a377b2ec3c360d2ef030618a4046c8aa", + "9b3636c9feb8725803832d19de58c4b22fa951aa", [ null, {} @@ -408517,6 +413975,13 @@ {} ] ], + "inheritance-from-initiator.sub.html": [ + "4621c57d45cf1938db812da5d88f7b1cf8f4ea83", + [ + null, + {} + ] + ], "inherited-csp-list-modifications-are-local.html": [ "c473b3f4262230f6e052d149d6461b7c0cabeff7", [ @@ -408603,6 +414068,13 @@ {} ] ], + "dedicated-worker-report-only.html": [ + "0234a10dca317f1e98c71b9e2740c4601891578a", + [ + null, + {} + ] + ], "shared-inheritance.html": [ "6bf684c385b14f480f3b956ed34b7881e4853efa", [ @@ -408616,6 +414088,13 @@ null, {} ] + ], + "shared-worker-report-only.html": [ + "c73a410fe17fe9cd632ebd4fe30b49d433261f17", + [ + null, + {} + ] ] }, "media-src": { @@ -409353,7 +414832,7 @@ }, "reporting-api": { "report-to-directive-allowed-in-meta.https.sub.html": [ - "8b95b49ab59cfdaf3f6d9ac3aba9420ac2f24ccb", + "ffdebe0eb3e9a5434e8a2f87decaba65951512e9", [ null, {} @@ -409397,7 +414876,7 @@ ] ], "reporting-api-sends-reports-on-violation.https.sub.html": [ - "ba4df62bf6f1c658d6dfed48fe1f6f62201b942f", + "94f14d94e45cf3e5561408ad8c864656f32ffc28", [ null, {} @@ -410152,6 +415631,20 @@ {} ] ], + "source-file-blob-scheme.html": [ + "ad3d9f36009a4992778114932bb64abe89e5b619", + [ + null, + {} + ] + ], + "source-file-data-scheme.html": [ + "06511571d4a1c655f4fad50849849348b12a88fd", + [ + null, + {} + ] + ], "style-sample-no-opt-in.html": [ "1fb0bf0c092b57f0c61e06a646271d336869c83f", [ @@ -413164,13 +418657,6 @@ } } }, - "capturing-snap-positions.html": [ - "7bc96b9d336646a32c79833fe5400557e0c7e06b", - [ - null, - {} - ] - ], "compositing": { "inheritance.html": [ "8bd08672edf54d3e6478841af7714235afb7bfab", @@ -414619,7 +420105,7 @@ ] ], "background-position-origin-interpolation.html": [ - "c6b84ca2aef0a8222b4b4c5713d1998beff799db", + "f34145c5736956d3dbac0192f3e7ec7ac053e04a", [ null, {} @@ -414802,7 +420288,7 @@ ] ], "background-332.html": [ - "8a6d8d458d29069bc760cdc868617377f0708087", + "54c5e68c512973c0aad8d8748eed7f7cd93eb40c", [ null, {} @@ -414943,7 +420429,7 @@ ] ], "background-image-computed.sub.html": [ - "8ee18e20d1210394a18fa6794cf7ffab630db17d", + "cf3c065d4954773dc9c97d588bc100b52850af4a", [ null, {} @@ -415265,7 +420751,7 @@ ] ], "border-radius-computed.html": [ - "9799be68ec73a36c3e956a9c1f3931e838e684ed", + "9406d1b171c7a5918ef6095eadb4c34e3f3faa07", [ null, {} @@ -415614,7 +421100,7 @@ ] ], "padding-valid.html": [ - "0d3d51e86bb015dd5720041cdae671a29a74c77b", + "36d158b4d08ff93d40f5e8e1ed0c772d5b3bd395", [ null, {} @@ -415702,6 +421188,13 @@ {} ] ], + "overflow-clip-007.html": [ + "a90cba2f846442195c18f88f0b0607f48769374d", + [ + null, + {} + ] + ], "page-break-legacy-shorthands.html": [ "7eaa18f5435e87362e85bc0963c512cdf3904c9a", [ @@ -415945,6 +421438,13 @@ null, {} ] + ], + "unset-value-storage.html": [ + "97a27ff67b4ff0a15f279c6ca82190bf0009267f", + [ + null, + {} + ] ] }, "css-color": { @@ -415972,7 +421472,7 @@ ] }, "color-function-parsing.html": [ - "7f483bb5c8b99c08137bae5b7aec06c782c300fb", + "ae891e25e4b4c0d2556fd670e68d61e4d4d4e87a", [ null, {} @@ -416128,6 +421628,13 @@ ] ] }, + "print-color-adjust-parsing.html": [ + "ced8666333e676791841c377b21d41e0d577c3dc", + [ + null, + {} + ] + ], "rendering": { "dark-color-scheme": { "color-scheme-color-property.html": [ @@ -416143,6 +421650,13 @@ null, {} ] + ], + "color-scheme-system-colors.html": [ + "7509dd04b23cd5f869c5cc27814b9b50d0e25cc0", + [ + null, + {} + ] ] } } @@ -416223,6 +421737,13 @@ ] ], "content-visibility": { + "animation-display-lock.html": [ + "d30cf0df2cd9e1a31d38d54a9bc23b32c6533626", + [ + null, + {} + ] + ], "content-visibility-015.html": [ "6099054ebd04ec742e7db84110b957c592318f43", [ @@ -416280,7 +421801,7 @@ ] ], "content-visibility-035.html": [ - "e7f922a0d34bd3ef2c769833d80534cb0ae889bc", + "bc84c28d4a362cc37755ec8886573d2a1f70f8ee", [ null, {} @@ -416308,7 +421829,7 @@ ] ], "content-visibility-044.html": [ - "bf4f6168d414e87a6f16b450274c5887e28ec36e", + "7378bcd71554a3c5299f361d91b1f29ceac81a8b", [ null, {} @@ -416490,7 +422011,7 @@ }, "css-counter-styles": { "counter-style-additive-symbols-syntax.html": [ - "41747daede6d1bcef2d5ea7b5cd31a0ae7375e7e", + "b1c4a0e8be3f64db4817628eedf48e6e1cf117bb", [ null, {} @@ -416504,7 +422025,7 @@ ] ], "counter-style-name-syntax.html": [ - "a09bac7bec9f873048f45c13707c153006c257eb", + "73d3f968c15d11cafcf221704a292bcedaf7f924", [ null, {} @@ -416518,7 +422039,7 @@ ] ], "counter-style-pad-syntax.html": [ - "18c151f045801b173e327ff067ac6468db933d4f", + "f82dd9d7388a96a42e840005934e120a029ac707", [ null, {} @@ -416713,7 +422234,14 @@ {} ] ] - } + }, + "textarea-display.html": [ + "44634e3c3bdb7187f14c24b922d098ee273f995d", + [ + null, + {} + ] + ] }, "css-easing": { "cubic-bezier-timing-functions-output.html": [ @@ -416768,7 +422296,7 @@ ] ], "supports-script.tentative.html": [ - "7ab4db23a373ac5cea9e217b2dc3b15fab12fbb0", + "fa14f17deed1238a1659b3cd2bcdf5b17730b1ed", [ null, {} @@ -417112,7 +422640,7 @@ ] ], "flex-aspect-ratio-img-row-013.html": [ - "07b4302bfb1d58cb9ec3cc9b706dd0df05e72bc5", + "09a177d2f72ba112dc21bcb7a183566c6966ae43", [ null, {} @@ -418052,7 +423580,7 @@ ] ], "negative-overflow.html": [ - "82f5bdbc1569580d5c07b26e402da189287bd870", + "52fa9b97b66acf4673eb6da1d334ba9e0b1e17bc", [ null, {} @@ -418558,7 +424086,7 @@ ] ], "font-stretch-interpolation.html": [ - "f8ab6fc4a8b0650c03a2e5206504fe55fbe180ff", + "c6642ffd0a9dc22f4fdf2d03fb92de669e8e282f", [ null, {} @@ -418577,6 +424105,13 @@ null, {} ] + ], + "system-fonts.html": [ + "7021a5264e8d3d008de4b308df9c6f8564cdf098", + [ + null, + {} + ] ] }, "calc-in-font-variation-settings.html": [ @@ -419124,6 +424659,13 @@ ] ] }, + "system-fonts-serialization.tentative.html": [ + "6abd6f09d64d5dc358221c7d3af29acd49fc9475", + [ + null, + {} + ] + ], "test_datafont_same_origin.html": [ "937c8c38e00d92579055f5e17300fd05b4c1bc51", [ @@ -419355,14 +424897,14 @@ ] ], "grid-positioned-items-content-alignment-001.html": [ - "0dfc2ad65bc177c2f7ac515105e3d602c8d3a5da", + "421ac91aab2fec551d707e71976136b31810d598", [ null, {} ] ], "grid-positioned-items-content-alignment-rtl-001.html": [ - "30879181cb9ab982f2ac710f545ebf3ab70b639f", + "694d3f77c4922fb27c0b67ff4484e328bf0509ba", [ null, {} @@ -420099,7 +425641,7 @@ ] ], "grid-baseline-004.html": [ - "7c3e46cfdbde7c982f76526d4b98611abd311e1e", + "cd565a10ad68a3de7172f96376cb49112cd04791", [ null, {} @@ -420357,6 +425899,13 @@ {} ] ], + "grid-content-alignment-overflow-002.html": [ + "e358c7b2106b868f37294dc16ee8f3faddb67424", + [ + null, + {} + ] + ], "grid-content-alignment-second-pass-001.html": [ "1d83f53a47703d7a1a1910b5151670875a1eaf58", [ @@ -420638,21 +426187,21 @@ ] ], "grid-row-axis-self-baseline-synthesized-001.html": [ - "870e368d08db87aba17ca669b8e9dc14ba81fee0", + "3939c5b4620781960e1a60a0892747c3ca5f275e", [ null, {} ] ], "grid-row-axis-self-baseline-synthesized-002.html": [ - "80dba9cc3589e05aa5cfb9758b6dfe614c548529", + "f2f23cbe2650dd308a2a2692d5eb7713e69bcd65", [ null, {} ] ], "grid-row-axis-self-baseline-synthesized-003.html": [ - "daf06a4a80e71f2edbf917703c02b4293a7af85e", + "1160895f401808c87aaa28394f3b507d20dd8511", [ null, {} @@ -420722,7 +426271,7 @@ ] ], "grid-self-alignment-non-static-positioned-items-008.html": [ - "6edecba2d3ffc74438cbdfda4c2397ddb79270aa", + "653dee6f7ffbc19a9cccb13b33eae1e1666d654a", [ null, {} @@ -420862,7 +426411,7 @@ ] ], "grid-self-alignment-positioned-items-with-margin-border-padding-016.html": [ - "7d0fd5dc2c88754daf19a6f555628d3a08e78ecf", + "537ce0ba80df7dec110d893f3375bb3086f6cc8c", [ null, {} @@ -421212,21 +426761,21 @@ ] ], "grid-self-baseline-not-applied-if-sizing-cyclic-dependency-001.html": [ - "dae81ceee1a90c7d0d66fb3a86fdae025d4389cb", + "5ddf4495921573bb5c56e1e9a0738098c7d6138e", [ null, {} ] ], "grid-self-baseline-not-applied-if-sizing-cyclic-dependency-002.html": [ - "10c6d8a1bb8a2d569a57b0787c80890e153d2675", + "f1ab2ef8ad1eb22af7d7c4a6d18b13fb2b6fe071", [ null, {} ] ], "grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html": [ - "a62999cb3218fa974ff4be8fc773882313bb6d1a", + "96ae131d4cb5987dd5d6d9ae08684d8b53f2168f", [ null, {} @@ -421964,42 +427513,42 @@ ] ], "baseline-alignment-affects-intrinsic-size-002.html": [ - "8732d2f77fe43cdf2f41485fe71150afb7dd99ad", + "c48bedccd5ab1303be060b88d04aacd927585f7c", [ null, {} ] ], "baseline-alignment-affects-intrinsic-size-003.html": [ - "d23c651b6c18971496d5c0cda4fc6f8ac59f5635", + "bbc7b049d99d7aeb7d45e09e2cd1aed26b0e7bf4", [ null, {} ] ], "baseline-alignment-affects-intrinsic-size-004.html": [ - "dbb36cc6d62a7d952aacc181a6d726212a549bf8", + "ae91e8115094e253bc374fc75ab4b8d3f024de93", [ null, {} ] ], "baseline-alignment-affects-intrinsic-size-005.html": [ - "76e52a2f7d62c6dd84d5699ac298b494481c780e", + "19404aa022aaebe5c4137cf2e27930b693bf5e68", [ null, {} ] ], "baseline-alignment-affects-intrinsic-size-006.html": [ - "c2d99ca83a59ba05b0998e974e90ca888fcb30d2", + "3e05ed758ceb9a36991fd5fdf5b3f5ddf7726c36", [ null, {} ] ], "flex-and-intrinsic-sizes-001.html": [ - "02e34071ec4d0f43378f17c3a2255295f267ac88", + "dd6f602ce70ca2208114376f3e5b820dcf6621b0", [ null, {} @@ -422048,7 +427597,7 @@ ] ], "grid-content-distribution-must-account-for-track-sizing-002.html": [ - "7c395253b4deb51c3964196a719555c7db587510", + "a88d0a5025d8575d6cf16842a00b7b95574bbe64", [ null, {} @@ -422090,14 +427639,14 @@ ] ], "grid-flex-track-intrinsic-sizes-001.html": [ - "a478f9ace23f0488a60e2ea1e4f2da8ff81221cd", + "f983a4b2c484d0838eb750127dcd2e51863739f3", [ null, {} ] ], "grid-flex-track-intrinsic-sizes-002.html": [ - "ef5f1ae10932935e990bd83bc8b33e9e88d49fa3", + "a8506e67efa86f1f56747fcaf81708cdec402674", [ null, {} @@ -422549,6 +428098,38 @@ null, {} ] + ], + "highlight-pseudo-computed.html": [ + "e50f1801b0c0d0fb4f357f77f0a6cddd940bf389", + [ + null, + {} + ] + ], + "highlight-pseudo-parsing.html": [ + "c6d999efdf74d6998fe36f6d365d2c33577dabf5", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "7e9f3c44047cc533a4a0d9af1f7839b7e75741c9", + [ + "css/css-highlight-api/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] ] }, "css-images": { @@ -422569,7 +428150,7 @@ ] }, "idlharness.html": [ - "17bccbddceec1ad163049d7f69f49dab28a984a3", + "c9bf69047ee5ce4651be59242770b5ae0ebba121", [ null, {} @@ -422593,7 +428174,14 @@ }, "image-set": { "image-set-parsing.html": [ - "914d5b541d0b47ba081b29cc7c75394077c45927", + "5e2c2e159686216fc3179df992331d6068b445e8", + [ + null, + {} + ] + ], + "webkit-image-set.tentative.html": [ + "d02cea5930c68d3854dddba8e5cf6a638ccfad46", [ null, {} @@ -422607,6 +428195,13 @@ {} ] ], + "object-position-interpolation.html": [ + "13a1b177c8ac837844567fa95f243a4dd03ed208", + [ + null, + {} + ] + ], "parsing": { "gradient-position-invalid.html": [ "63ac09fc17ede201f4008f68d5b6c626bbe5f238", @@ -423285,6 +428880,13 @@ {} ] ], + "logicalprops-with-variables.html": [ + "fc52495bc00f682677b297cf4715cf7cf586f150", + [ + null, + {} + ] + ], "parsing": { "block-size-computed.html": [ "de3a3c2a0c5c80b5f0f4225a5904b81797afb34e", @@ -424001,6 +429603,13 @@ {} ] ], + "multicol-span-all-016.html": [ + "87c4b5812e6adede5bff8251772f32c46ff97597", + [ + null, + {} + ] + ], "parsing": { "column-count-computed.html": [ "702632d2dd4d306368951af65e9c32d7f2e2f554", @@ -424279,7 +429888,7 @@ ] ], "overflow-padding.html": [ - "963192f6f431cd073f5d8fddc2294259ad62962b", + "a77cac381fbee8d9ea3153d9c4ded952f85cb4cc", [ null, {} @@ -424455,6 +430064,13 @@ {} ] ], + "scrollable-overflow-textarea.html": [ + "2be500bc8b0397c5e7b18ed2a7da6fb6be078532", + [ + null, + {} + ] + ], "scrollable-overflow-transform-001.html": [ "f2bac4041eb50219aff34f1a74722755b40345b0", [ @@ -424497,6 +430113,27 @@ {} ] ], + "scrollable-overflow-transform-dynamic-004.html": [ + "a23954e1defe9891d791e0dd76553227bd81f0ab", + [ + null, + {} + ] + ], + "scrollable-overflow-transform-dynamic-005.html": [ + "845c28f12a1611d65022ad6f380f2d6cd43ea3b3", + [ + null, + {} + ] + ], + "scrollable-overflow-transform-dynamic-006.html": [ + "8e21512bdb97a3642e064a690a0aa837f652f51f", + [ + null, + {} + ] + ], "scrollbar-gutter-001.html": [ "fe1e95482857613cfbcee112c8fbfb7e42b5aaf0", [ @@ -424504,6 +430141,55 @@ {} ] ], + "scrollbar-gutter-propagation-001.html": [ + "1a73a06f5c84d2064b760a6f9faf0f011efd2a46", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-002.html": [ + "b02a39a650f6bb90957ed40b5e425655cc14c87c", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-003.html": [ + "fa481b989b80bb793bc633da38e9a5555a3cfe58", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-004.html": [ + "6d0cfa12d208f93d9779d174ac209369e22b73a0", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-005.html": [ + "6bee0fdcf95bb3ab08f8692e6b61cd1df47f8519", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-006.html": [ + "650be464622f1a9c0d7ecf9c05949187dbc3e191", + [ + null, + {} + ] + ], + "scrollbar-gutter-propagation-007.html": [ + "88837d1796c942a382ad758f0abdec1dc5d229f8", + [ + null, + {} + ] + ], "scrollbar-gutter-rtl-001.html": [ "446195098e240f9cfccde79f72e5c98388909b62", [ @@ -424770,85 +430456,22 @@ {} ] ], - "inset-after-computed.html": [ - "b095809f8c80ef1a8150f3cffbe0e391b054e641", - [ - null, - {} - ] - ], - "inset-after-invalid.html": [ - "3fccd7320063ffc50cd938fdf1056a998002e0be", - [ - null, - {} - ] - ], - "inset-after-valid.html": [ - "27734a59e69a0a9b0498c9af2932e21b8e18784e", - [ - null, - {} - ] - ], - "inset-before-computed.html": [ - "088a95714b91c1eae73a29a583ef721857e2127c", - [ - null, - {} - ] - ], - "inset-before-invalid.html": [ - "133afc23fb9aacac1b5e71a559978d69550f43ef", - [ - null, - {} - ] - ], - "inset-before-valid.html": [ - "a802ddb1b48edade7ee1538e6061b488a56b7a54", - [ - null, - {} - ] - ], - "inset-end-computed.html": [ - "ddc18ced27c5e3ea4b44b4f0e1819b64e91d8bae", - [ - null, - {} - ] - ], - "inset-end-invalid.html": [ - "b0e66bb7c24f6c0a5f349789c3abdfcf1c4dcd5b", - [ - null, - {} - ] - ], - "inset-end-valid.html": [ - "2271ae645544f6e7b83615b4c1b62246c5d199c9", - [ - null, - {} - ] - ], - "inset-start-computed.html": [ - "f92202f1c3b92052becc6031c5f4ea9daadd0324", + "inset-computed.html": [ + "2a52785e3299d40d2da3c29876087d3ff431ab58", [ null, {} ] ], - "inset-start-invalid.html": [ - "2f7a9496ba87af211fe2734ca8f83ccef40a2a87", + "inset-invalid.html": [ + "a96d6253826a4d3a94a4f5f5257e252b06d8db5d", [ null, {} ] ], - "inset-start-valid.html": [ - "e74b205ffbc62252023bc6561c536d76879b0702", + "inset-valid.html": [ + "0faab9873761165d3ccb95377f07510654cd0cbf", [ null, {} @@ -425114,6 +430737,13 @@ {} ] ], + "position-absolute-padding-percentage.html": [ + "2d43639f1987fbf325a538dedb215bc029deeda8", + [ + null, + {} + ] + ], "position-absolute-percentage-height.html": [ "8b2e5c0f720d43d3aa922d2077ab305f6a61d59d", [ @@ -425172,7 +430802,7 @@ ] ], "position-sticky-input-box-gets-focused-after-scroll.html": [ - "5b2d705e2d0721c072bedf1dcc489fae25b2014f", + "438547dbb75a6e8c5735404c4b665b5fca4365f6", [ null, {} @@ -425249,7 +430879,7 @@ ] ], "position-sticky-parsing.html": [ - "f6f587e615f5759f7a706a57defdd8bfaa836aa6", + "b147429e6921b40c3a1c51b2e3ace2fff78a92d0", [ null, {} @@ -425310,6 +430940,15 @@ null, {} ] + ], + "sticky-after-input.html": [ + "9104aa3c5e9b40bf478524d30fc95000774d16fc", + [ + null, + { + "testdriver": true + } + ] ] } }, @@ -425357,7 +430996,7 @@ ] ], "at-property.html": [ - "e9945056aad87be835c2471bbe7ec78c425aa4f0", + "d996091dc203eab079fff2d2b980d064300af39b", [ null, {} @@ -425506,7 +431145,7 @@ ] ], "first-letter-allowed-properties.html": [ - "df1458888cb63e92185d9cbf1111779bb40cf573", + "3adc772d44487e0a48881ac880bb041f7f01e1e6", [ null, {} @@ -425520,7 +431159,7 @@ ] ], "highlight-pseudos-computed.html": [ - "ec3532db6a9f47965fb4819b5cfcbd3e55157f5a", + "fdec585ab8f07a20c1263ca67806d830b1a11632", [ null, {} @@ -425616,7 +431255,7 @@ ] ], "tree-abiding-pseudo-elements.html": [ - "05c23a3bc143ce2a005b3686af2eae2cb60cb7ba", + "7839a38049a190135149c0d3d3b35fbc2d29d207", [ null, {} @@ -425827,6 +431466,13 @@ {} ] ], + "shadow-shared-style-cache-001.html": [ + "e80b4d1c42aaa2337715b7a70260ddc3f3e36812", + [ + null, + {} + ] + ], "slot-non-html-display-value.html": [ "2f56254a7d8995550e3d6f96de83e1584c045ed2", [ @@ -425899,6 +431545,13 @@ {} ] ], + "abspos-in-multicol.html": [ + "ee111487475c9dafa2eca62a95ffe4a226e2f93c", + [ + null, + {} + ] + ], "ancestor-change-heuristic.html": [ "21adfbb6b7a56c0a098eda1843897926afb363f5", [ @@ -426239,6 +431892,13 @@ ] }, "css-scroll-snap": { + "capturing-snap-positions.html": [ + "7bc96b9d336646a32c79833fe5400557e0c7e06b", + [ + null, + {} + ] + ], "inheritance.html": [ "2569cf3d8bfbf46f1d9217642afbf637ff4600ca", [ @@ -426258,7 +431918,7 @@ ] }, "nested-scrollIntoView-snaps.html": [ - "d996bb7349b82f3d889a8765468006fd58094ec5", + "b7a2d6551d26687de6d1a38c9a52153934a8af3b", [ null, {} @@ -426455,6 +432115,13 @@ ] ] }, + "scroll-margin-visibility-check.html": [ + "faebf8f0d8f7a3155ec561eb655e3d3b9a27a52a", + [ + null, + {} + ] + ], "scroll-margin.html": [ "e6ce4ac49c01ff65823fd83ee6866a6019701f6e", [ @@ -426462,6 +432129,13 @@ {} ] ], + "scroll-padding-and-margin.html": [ + "97d30c702dedb5bd64d446851bc0e8cecdf341b7", + [ + null, + {} + ] + ], "scroll-padding.html": [ "0c637ed6db24ad9283c9ac28c7f377e28688674d", [ @@ -426511,6 +432185,15 @@ {} ] ], + "selection-target.html": [ + "1c8435ea6eadf4de67143b3d8acb7e6fdff32337", + [ + null, + { + "testdriver": true + } + ] + ], "snap-after-relayout": { "adding-only-snap-area.html": [ "53141707bb307dd13f13aee6d78ec67dffaa6576", @@ -426671,6 +432354,62 @@ {} ] ], + "scrollbar-width-001.html": [ + "af50cd25215dae4a0c9043ffd531965fa2763a53", + [ + null, + {} + ] + ], + "scrollbar-width-002.html": [ + "89a5d772182d64c950e8c8a2f4ee7620e9917fb8", + [ + null, + {} + ] + ], + "scrollbar-width-003.html": [ + "e0c1e59d051fca2f0c4e3dc537bd5829f43babbd", + [ + null, + {} + ] + ], + "scrollbar-width-004.html": [ + "ee8bab0f0066baab3aee108c84d49154a5cb274a", + [ + null, + {} + ] + ], + "scrollbar-width-005.html": [ + "ea5f77afad0f72b083c623f5204b6ab7643da7f0", + [ + null, + {} + ] + ], + "scrollbar-width-006.html": [ + "3b1cc0ba59d4b790cd031331d386bcbf77b2d8ce", + [ + null, + {} + ] + ], + "scrollbar-width-007.html": [ + "c40a7a8e99ac64ff41f113e7398073fe7be159ca", + [ + null, + {} + ] + ], + "scrollbar-width-008.html": [ + "91e2cc7f064053672747ed6fd31b4a7343697572", + [ + null, + {} + ] + ], "scrollbar-width-keywords.html": [ "94ccd6ef6d550c83c97ba9525135cc309cc35842", [ @@ -426820,6 +432559,15 @@ {} ] ], + "invalidation-part-pseudo.html": [ + "fca4a964dce5c5c61b8f4fed4ef25510a9099298", + [ + null, + { + "testdriver": true + } + ] + ], "multiple-parts.html": [ "de02a26e164d283e4f05a0d8eba0f6b98c778700", [ @@ -427008,7 +432756,7 @@ ] ], "shape-outside-computed.html": [ - "05ce487bc397ee1b316e03dff218f948b8a887b9", + "19d69ee738855cc26822875651ab0e4c30381fb3", [ null, {} @@ -427992,14 +433740,14 @@ ] ], "height-valid.html": [ - "204cd645ec4ca0d1ae7d0fb29b1ff4e2bf8d1211", + "cd54020d72303b9231878d8cc84dc8f19a94a7a7", [ null, {} ] ], "max-height-computed.html": [ - "c4c6703250d3850ff375665c67ffff7b28db5b85", + "c99b28a7b03990e7ff0cdef177da47c63fd6a27f", [ null, {} @@ -428013,14 +433761,14 @@ ] ], "max-height-valid.html": [ - "3c4aab833f173fb9d33b704baa0e16c1842bd833", + "5ece99de92b1ce6ece0ca5111b16528a5146f891", [ null, {} ] ], "max-width-computed.html": [ - "7e1c0fc2388039b4a4d7719c878c25209b39e647", + "be92bcdd7fb0b71c8d3a76cff76aadd05112b2d1", [ null, {} @@ -428034,14 +433782,14 @@ ] ], "max-width-valid.html": [ - "4788ccfe6631105e8745b89317298976b1f54557", + "a7ac008e00d1bf45b0503cae61d7b69619949efb", [ null, {} ] ], "min-height-computed.html": [ - "c15ee9de772af2023063ef5cb4a35781aba0a7f4", + "442da9d777fad41888322b11ba002c1610875e68", [ null, {} @@ -428055,14 +433803,14 @@ ] ], "min-height-valid.html": [ - "debefbe0b82748d3665c0e82566ebea78d0271b0", + "8450a000ce4c4395476143aa87fa2a709f140e62", [ null, {} ] ], "min-width-computed.html": [ - "0a69352ed772ec3c4507cfb8d6154ba16837f792", + "74b2aedecf74b14fff768e184d4989a680cd193e", [ null, {} @@ -428076,7 +433824,7 @@ ] ], "min-width-valid.html": [ - "cbbd19c97f73101f38501177772ae6e9e8248504", + "5fff5d97b8355afda17d1109fcc827b53edf6bba", [ null, {} @@ -428090,7 +433838,7 @@ ] ], "width-valid.html": [ - "f6c5c0ac66eb2a86179dfe7fbc80a596dd8fe27b", + "268a89273b26e148fe7ddb5a2c9f9c409ed6cc8c", [ null, {} @@ -428419,7 +434167,7 @@ ] ], "absolute-tables-003.html": [ - "352d8cd6270c3c731aad09a3e8a62b5583a23b9c", + "a4f945e38420314fd0b1c767cb5641be32ae06bb", [ null, {} @@ -428433,7 +434181,7 @@ ] ], "absolute-tables-005.html": [ - "57c3f0dea3a56f0281a44e6be019c3ecc9866937", + "24444d3b44ee34ba4f65623c73e8101905632bd0", [ null, {} @@ -428462,6 +434210,13 @@ {} ] ], + "border-writing-mode-dynamic-001.html": [ + "c1b232541d971f9cecdee09f77fd9073026614f0", + [ + null, + {} + ] + ], "bounding-box-computation-1.html": [ "4173f399bd7cfec93733552fb85890231d8da9c9", [ @@ -428511,6 +434266,20 @@ {} ] ], + "col_removal.html": [ + "ee5efa9dda206bcbc060ae82a8f9f59dfc659bbe", + [ + null, + {} + ] + ], + "collapsed-scroll-overflow.html": [ + "42f8fd0a7d657cf86ea0fdba67062e2927838386", + [ + null, + {} + ] + ], "column-track-merging.html": [ "6dba9e6f6079863a7b810715b2e2fcdc0952c38d", [ @@ -428796,8 +434565,22 @@ ] ], "tentative": { + "baseline-table.html": [ + "1507bf656f48b5b944cdea12f68bd586d9c20f11", + [ + null, + {} + ] + ], + "baseline-td.html": [ + "4090c5db64e37159164f4965f224859dfd44cc5c", + [ + null, + {} + ] + ], "caption.html": [ - "0d09dafb4a36335c9f28c6187e4cab23434a49a0", + "e73328590124246c206bf5f663483e8f0d691a67", [ null, {} @@ -428810,8 +434593,15 @@ {} ] ], + "colgroup-col.html": [ + "40fbefee200cb280416733a04a335ebcc7764c8a", + [ + null, + {} + ] + ], "colspan-redistribution.html": [ - "e440728e1004bc952a5725bc50206b316a8e7450", + "bf744da8228c49dbc95cc8d47a67710a236e3db4", [ null, {} @@ -428824,6 +434614,13 @@ {} ] ], + "element-sizing.html": [ + "77e153ce3a196c8287a8a95a7b3e67954c9b696d", + [ + null, + {} + ] + ], "position-sticky-container.html": [ "604b536df17c13467083fb7626001bf3552b71ca", [ @@ -428831,6 +434628,13 @@ {} ] ], + "rowspan-height-redistribution.html": [ + "3357cbdc4b81832e7b830ae54ecb7132ede4414c", + [ + null, + {} + ] + ], "table-fixed-minmax.html": [ "e7b9c5c7d13845e3befb982ddc4ac55533fc94c5", [ @@ -428839,7 +434643,28 @@ ] ], "table-height-redistribution.html": [ - "9c587e31b4f638abbc3733cf9ab1acfe28c77b7c", + "c0f48e4f201a8321cccb9fe2cbae97991e9d70dd", + [ + null, + {} + ] + ], + "table-minmax.html": [ + "eda9ce37fb184d26d204ac07922e21a8406ec1f3", + [ + null, + {} + ] + ], + "table-quirks.html": [ + "83794d17ae11a31ef169b1765b0f4b22ed060849", + [ + null, + {} + ] + ], + "table-width-redistribution-fixed-padding.html": [ + "57843d5eb6e845b95bcab53c6dd3b24fc71be7ae", [ null, {} @@ -428851,6 +434676,41 @@ null, {} ] + ], + "table-width-redistribution.html": [ + "90a89e81a50ed7c498fdb223773b4e3b74b5ec3d", + [ + null, + {} + ] + ], + "tbody-height-redistribution.html": [ + "bfd47fa651b7c147adbd819d36188aa60e186653", + [ + null, + {} + ] + ], + "td-box-sizing-001.html": [ + "b54eb39f5808ad41ef260804d3baa5660d314e83", + [ + null, + {} + ] + ], + "td-box-sizing-002.html": [ + "5823fc64c68dc246ac3d44b2825e96b876c8947f", + [ + null, + {} + ] + ], + "td-box-sizing-003.html": [ + "40b01471fdf0411bd5a1eeb18c793b3de488bbcb", + [ + null, + {} + ] ] }, "visibility-collapse-col-001.html": [ @@ -431044,6 +436904,15 @@ ] ] }, + "text-justify": { + "distribute-alias.tentative.html": [ + "62854b52c7999adba053073c002e8f6c119ce087", + [ + null, + {} + ] + ] + }, "white-space": { "append-whitespace-only-node-crash-001.html": [ "b32555b18876898beb1b3b7b4559268d64ae9c1c", @@ -431511,7 +437380,7 @@ ] ], "perspective-interpolation.html": [ - "93eec76b339b09e48c95b7f4b2794b3aa1da84d6", + "d3f165db224bfff544480bafc75b22dc99047a32", [ null, {} @@ -431532,7 +437401,7 @@ ] ], "rotate-interpolation.html": [ - "0d80d8ffad179b82b7725be088c990ea633e7cd2", + "17fb7e499c66d14bb770a82895790a4a6977a674", [ null, { @@ -431562,7 +437431,7 @@ ] ], "transform-interpolation-001.html": [ - "7d18ef9dfa30dce2d359276cb9d4525939a5cfad", + "3a22b78e185193911be16929ce9b8f8699c2ca62", [ null, { @@ -431608,7 +437477,7 @@ ] ], "transform-interpolation-computed-value.html": [ - "80d2a37f4c9aaf6224d8f729214259157b0eefa7", + "6209b4e9c247974d64f0c58410ec68b6979026a5", [ null, {} @@ -431752,7 +437621,7 @@ ] ], "rotate-parsing-valid.html": [ - "af0226c96765551a5f7468fcfd1742091f119212", + "82544b094fc954add9061283eec5f424b01293bd", [ null, {} @@ -431766,7 +437635,7 @@ ] ], "scale-parsing-valid.html": [ - "46bb91c8ba055f4b29a96d2c088a1509dd06d5b3", + "ecdc5c038b997b871593c44b245147c2f683febf", [ null, {} @@ -431822,7 +437691,7 @@ ] ], "transform-valid.html": [ - "ce32e2b44e6edb8c743035eba324db273d205cb2", + "ba4f6e2b5a5d44d265e9163089ea1075efbe12fc", [ null, {} @@ -431844,7 +437713,7 @@ ] }, "preserve-3d-flat-grouping-properties-containing-block.tentative.html": [ - "e30607c1197ddc13b76daf768686be13a9351a05", + "2c451f38848e6a26ab4155a164ff699927ee5ccc", [ null, {} @@ -432071,7 +437940,7 @@ ] ], "vertical-align-interpolation.html": [ - "c81c83239354cc3c179612f26f95891dac8e3676", + "194f9fc9f619aad5a8e2bce74b7f95a4b5e3e50f", [ null, {} @@ -432578,7 +438447,7 @@ ] ], "idlharness.html": [ - "ba500ce26c900242a3f7eb8e84ae60a304404c68", + "aaff3a13922632082bfff307b605696233895af4", [ null, { @@ -432733,6 +438602,20 @@ ] }, "stylevalue-subclasses": { + "cssColorValue.html": [ + "d57023fa9de4704562eead5db32e8c0fadf2f499", + [ + null, + {} + ] + ], + "cssHSL.html": [ + "732d06e164b7ef28cb85cd69fc00330627237076", + [ + null, + {} + ] + ], "cssKeywordValue-invalid.html": [ "69007a1c590ca4c5b5f6ef2388353392321f293d", [ @@ -432782,6 +438665,13 @@ {} ] ], + "cssRGB.html": [ + "062ff7629f7e8fd4ee78497e71d9eec28072d07c", + [ + null, + {} + ] + ], "cssRotate.tentative.html": [ "6c234bc4724e70410a61e5f6397f6a3fa2d53be1", [ @@ -432790,7 +438680,7 @@ ] ], "cssScale.tentative.html": [ - "9bbe6c92f115b15b9c97602ace7c1ce4762beea1", + "e5efb938764c03ca717906e6dce3c43c97c27df7", [ null, {} @@ -432917,7 +438807,7 @@ ] ], "arithmetic.tentative.html": [ - "cb9a7a71027df149eaa478b13ae3d147e906befc", + "0aa29916bc3e30f2db1b89acd97bc5dde0372c54", [ null, {} @@ -433012,7 +438902,7 @@ "the-stylepropertymap": { "computed": { "computed.tentative.html": [ - "9bbcb306998c22dc7770be3a28e0bc3c613827b1", + "8d563777cba9f4953c2f7673a8f9df98f426335e", [ null, {} @@ -433032,6 +438922,13 @@ {} ] ], + "get-position.html": [ + "20546bfeee7e559b045d4e7ff3d77280d10c4be6", + [ + null, + {} + ] + ], "get-shorthand.html": [ "a940422adc8b99020ed0e86063dc6d74e87aafae", [ @@ -433283,6 +439180,13 @@ ] }, "properties": { + "accent-color.html": [ + "8cd0b986e8665ee6a4e9830b9346f5a4957b89b8", + [ + null, + {} + ] + ], "alignment-baseline.html": [ "aab4a6a5c30b00be831173887230b58c59f8cc09", [ @@ -434932,7 +440836,28 @@ } }, "css-ui": { + "accent-color-computed.html": [ + "10e080104d7d547757e0e2fc1ea5b47179d2aa5b", + [ + null, + {} + ] + ], + "accent-color-parsing.html": [ + "4877d89fa907d591981c12a71f96711f384171ee", + [ + null, + {} + ] + ], "animation": { + "accent-color-interpolation.html": [ + "20d87c4e52cb21a115cd1453bd20595c06aa1afb", + [ + null, + {} + ] + ], "caret-color-composition.html": [ "6c69578677896e2463331deba85731e13fd94a25", [ @@ -435410,7 +441335,7 @@ ] }, "calc-angle-values.html": [ - "e41beaff211b87dd74dd6fee6f05d894ba03988d", + "0bbb43dcf162a171ef8ea6414ea78625e1839204", [ null, {} @@ -435452,7 +441377,14 @@ ] ], "calc-infinity-nan-computed.html": [ - "6a8f6cc2220e78b175e2f4dfe8b8acd7e3cac7ec", + "cfcaa816f4eea63191142d9113eff1e4b5e2cbd9", + [ + null, + {} + ] + ], + "calc-infinity-nan-serialize-angle.html": [ + "884cc611056252d8522c3ceaa64db227ef18983b", [ null, {} @@ -435508,7 +441440,7 @@ ] ], "calc-rgb-percent-001.html": [ - "1446c28d389a2087c8d61c7894b4a2dd19994c93", + "e7166fbf42688c7e828b0525e2ea0d123ecbbeba", [ null, {} @@ -435564,28 +441496,28 @@ ] ], "ch-empty-pseudo-recalc-on-font-load.html": [ - "d16d4691a3c5b154b616397a1f3a462a45f60a56", + "7ad2b85fa469d6c43806e2e0fffee8af4ae4a96b", [ null, {} ] ], "ch-pseudo-recalc-on-font-load.html": [ - "8d58e83eb7221af1aa7cb75e4d6ea64eaec7c6d3", + "c8a275cfb34415bdf5e25c4c3746265335fb6f6e", [ null, {} ] ], "ch-recalc-on-font-load.html": [ - "befa7fbfa5ee53451011402d0879771c425443dd", + "b13f643ebea68352113262eddff942222c095f6b", [ null, {} ] ], "clamp-length-computed.html": [ - "67dc19a99f4d687745f27b7548d44e2795981d42", + "8ace5b9550207480f53c95eebb48e0c56bb746f8", [ null, {} @@ -435746,7 +441678,7 @@ ] ], "minmax-percentage-serialize.html": [ - "f1cb5081a6d341cbba638ca7f1ecdb302813bc8f", + "65ab9fad961feb87d82955c30659321423a04e3a", [ null, {} @@ -435794,13 +441726,6 @@ {} ] ], - "unset-value-storage.html": [ - "5869e9e6072910301ba41746f03eaf297079d98e", - [ - null, - {} - ] - ], "update-subpixel-rem-unit.html": [ "98d4f00f92ae90165dd9b0c82cf0496523bc9c2a", [ @@ -435825,7 +441750,7 @@ ] ], "viewport-units-after-font-load.html": [ - "82e8b73d28dfc57ad572936fe46315d0d0289606", + "3bdd3499717c34a45690ec026f9e9285fcba7729", [ null, {} @@ -435841,7 +441766,7 @@ }, "css-variables": { "css-variable-change-style-001.html": [ - "798c7727a695c70b8cfcb5588a061de29ef3a3f1", + "4db83738735b85084d4413d3d210014988cdf993", [ null, {} @@ -435974,7 +441899,14 @@ ] ], "variable-definition.html": [ - "037aa314dab4644acd684e845488bb77e88ba69a", + "5ad71f7f82a03fe405c83e6ccbb26ba5a165741a", + [ + null, + {} + ] + ], + "variable-empty-name-reserved.html": [ + "ed5d7d554d9e7a31eca79057ee6055a491ccff1b", [ null, {} @@ -436058,7 +441990,7 @@ ] ], "variable-reference.html": [ - "dc4ce73f3ad84a0d3f397c9ec2098fd7d417b621", + "fb3ae56ebcb318c0c9de1701da306328f00da155", [ null, {} @@ -436114,21 +442046,7 @@ ] ], "variable-substitution-variable-declaration.html": [ - "0b0ab1f0f0f868fa86673f51d6ada27245926add", - [ - null, - {} - ] - ], - "variable-transitions-from-no-value.html": [ - "eb9be3126a63cbda61e137986161f65d3de8be75", - [ - null, - {} - ] - ], - "variable-transitions-to-no-value.html": [ - "1251e0bf5bee0ec790dfa2547cc4e76a63fbc496", + "5239a05c3047fb2283ec9a4e9a213a51c0f87f3a", [ null, {} @@ -436141,13 +442059,6 @@ {} ] ], - "variable-transitions-transition-property-variable-before-value.html": [ - "c2548c854c8bc35220ec81bddccad1b8b16072b8", - [ - null, - {} - ] - ], "variable-transitions-value-before-transition-property-all.html": [ "49642e0fa7188068a01598634695cd28761bec07", [ @@ -436155,13 +442066,6 @@ {} ] ], - "variable-transitions-value-before-transition-property-variable.html": [ - "a8b5ae4ca0c10c44b9dd70d27a7aed2947acc57c", - [ - null, - {} - ] - ], "variables-substitute-guaranteed-invalid.html": [ "4abfe28d1f21b2891599543b3972b26fbd15b77e", [ @@ -437075,6 +442979,13 @@ {} ] ], + "cssstyledeclaration-registered-custom-properties.html": [ + "5aa4ad2532b6a3e5cd9123cd29ff83464847e352", + [ + null, + {} + ] + ], "cssstyledeclaration-setter-attr.html": [ "20837052e39368455dedc6ce8901709cc00817cf", [ @@ -437293,7 +443204,7 @@ ] ], "idlharness.html": [ - "ce13d30cfad18ca0d48298694ec2477a7d6d68b5", + "e27629c03b152da8359e1b25f8cd7d99195e27e4", [ null, { @@ -437463,7 +443374,7 @@ ] ], "serialize-variable-reference.html": [ - "2b7e23ba6923b8a09bf7ad7620e99763a7382215", + "1d3cbad9e6297115dc7e922e0261b0cb11c2bfb8", [ null, {} @@ -437947,6 +443858,13 @@ {} ] ], + "getBoundingClientRect-shy.html": [ + "b27a7884605f16cbac77e705d05f8ab519a39d9e", + [ + null, + {} + ] + ], "getClientRects-br-htb-ltr.html": [ "e952d61b677164c3b5d49799c80063174120307f", [ @@ -438891,7 +444809,7 @@ ] ], "DOMRectList.html": [ - "f3d050cd5f21b4e4a6f85b53621c6eabe3c76bb7", + "e389c33fa632dbb9cc5c4ce4ed3fb251a3262b78", [ null, {} @@ -439024,7 +444942,7 @@ ] ], "test_media_queries.html": [ - "b063d2b6834d8fb7137137c47895b1b17c393b97", + "7aa91989470da18ba77562614c6c04c73c8ddf8a", [ null, {} @@ -439358,7 +445276,7 @@ ] ], "focus-visible-001.html": [ - "a087edafc96e5d58da3044b1bf0483c6ce23a321", + "956c91352a5ba07c71a947a54661784d87ddd719", [ null, { @@ -439367,7 +445285,7 @@ ] ], "focus-visible-002.html": [ - "5fd9f9cafdf4b66dad0785b3c02f80c90b4559a5", + "850645efe97d09c28ae27ae3caf9c7c355339a73", [ null, { @@ -439377,7 +445295,7 @@ ] ], "focus-visible-003.html": [ - "3076823f703c5fe4a5822e9d2271034f94ebc829", + "73f8fac55a5e982c1126e574f8e03d7c034eeb96", [ null, { @@ -439386,7 +445304,7 @@ ] ], "focus-visible-004.html": [ - "f1274b61ee9cec65a517a877b3fbcf967632ce04", + "075ee83393f2ac8c46454f2e7191454dad5b7b08", [ null, { @@ -439395,7 +445313,7 @@ ] ], "focus-visible-005.html": [ - "c86c0574153243edd5f3c5a4f9ee24cb73e61374", + "a678261f69a250954ac86d8ce1f962262ec1fbed", [ null, { @@ -439404,7 +445322,7 @@ ] ], "focus-visible-006.html": [ - "fa7bfc10682cfac386d5f71f5f8ba632e1920c33", + "4008755ce2f955ca8c6ef9e1ac2ec48da572040f", [ null, { @@ -439422,7 +445340,7 @@ ] ], "focus-visible-008.html": [ - "5f5b54e1f0f1f5deaf2bceac7b0cd41d50672f61", + "6fc5b478a8e09375005e023c83f70753ed480b4e", [ null, { @@ -439431,21 +445349,21 @@ ] ], "focus-visible-009.html": [ - "d9edb69c574aa1c7912ab66397d4bf1ab1590a37", + "35a32da7bda18a056119ee792c3de594991b4b99", [ null, {} ] ], "focus-visible-010.html": [ - "8d02edbc3e6bd5ec257c652a4bf1fe07149ba699", + "ada14d63eee70975984e86e25f95b163d50d0c02", [ null, {} ] ], "focus-visible-011.html": [ - "cf186d28b832e07a6e017ec573264dbe2d1321ec", + "b9dc10bee7d0185af38696dfc8eb30fd12cab79d", [ null, { @@ -439454,7 +445372,7 @@ ] ], "focus-visible-012.html": [ - "b27abbe39c01b202196f5e25159da26cb5089f8e", + "fab6cc82b95b331d9debf8382c3bbcc2be11dbd6", [ null, { @@ -439463,7 +445381,7 @@ ] ], "focus-visible-013.html": [ - "a259a1cc73430e6fcee682e56e459dd6161dced6", + "f79b704d397dddd304c2798d6668e4aba016079d", [ null, { @@ -439472,14 +445390,14 @@ ] ], "focus-visible-014.html": [ - "6a4aef6e2bdf3c277b52ddb50679bc240b4cf744", + "1b80c666949a5aa7e5390bc449f62150b8990a34", [ null, {} ] ], "focus-visible-015.html": [ - "98e44005c7604a764769472acac203e00c16023c", + "323dec3e7ab7c8c6bb2c928ccd585061bbd37d02", [ null, { @@ -439488,7 +445406,7 @@ ] ], "focus-visible-016.html": [ - "080787fb1ee9f4ad96d8dacba051601421435932", + "1b8beaa7337bb3cfb727d9a44518b410ccad6db5", [ null, { @@ -439497,14 +445415,14 @@ ] ], "focus-visible-017.html": [ - "21b7528f4e060a945ec74d5bf5cf40ea7059246a", + "4ee00612a3d07ece9da21970562fdf801d122e3f", [ null, {} ] ], "focus-visible-018.html": [ - "3f3ea8832c0bf798374e692d26478e05d0888f77", + "80a38d00487f8071134f1180dfb795ada4e52b6f", [ null, { @@ -439513,7 +445431,201 @@ ] ], "focus-visible-019.html": [ - "05163ccd3c5b7ee4bbab3cb6956bc41d6737dea1", + "a32ff4df549dbbff4ff91bb92cc1a41d3f8d9e34", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-020.html": [ + "a8dadb5ed913b952f7bd6a4f3bd9f106507b1bf6", + [ + null, + {} + ] + ], + "focus-visible-021.html": [ + "aa2df6a35003890ee0629fd8fc27797cb1013e10", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-022.tentative.html": [ + "e2692a6bec8f8ef72a58c7d2b6fe3f226674677f", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-001.html": [ + "df6d9158b7cf3e829343834f1c5a499a15016434", + [ + null, + {} + ] + ], + "focus-visible-script-focus-002.tentative.html": [ + "e04dc30d49447d84ae7fa0a18cbe9ebe08823165", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-003.tentative.html": [ + "a1f772e83bb59134d64167d383e04a7b662c3d76", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-004.html": [ + "22e2e1e84f9a9c9d2212fe262dfaece7816326be", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-005.html": [ + "cdd50c523b78d80caa46d31c11487f02799a7574", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-006.tentative.html": [ + "e2f2e4bc44f0d6b582e11ee4f29b4fc1479fb030", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-007.tentative.html": [ + "2b7e7bf0a1763829085724e9473bc78f90f472c8", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-008.html": [ + "b0db185d86ba1b3117fd86d5e2a7f8e4848c2e25", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-009.html": [ + "d0475eef51988c3ce9ba1f7d58fba4f77c78587d", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-010.html": [ + "594a0c7f69399afc45f76ef8357dd20cc18b5bf4", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-011.html": [ + "d93bd6d47d006ed71e6e17819c313d33b64aa660", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-012.html": [ + "3bd30939682f311951dcd870dbf3579729c19d06", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-013.html": [ + "02bd95a3f2407f45aa298603110ac626035221e7", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-014.html": [ + "de8b960d85e49a253d4dc170cf13b7ac11b61bb9", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-015.html": [ + "71d23790c0ecc56fa318d603cfff90dee6ef0f9d", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-016.tentative.html": [ + "38d857743aca5e18bacd4186d250d55b801826a5", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-017.tentative.html": [ + "0014ae52bed7fc8891d737a474b0b5ce058fcb07", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-018.html": [ + "3072267179db9db6c00705a8c935c396b9868f85", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-visible-script-focus-019.html": [ + "b6c3c907e0d1e4b97a2197e210bd880b91833dfb", [ null, { @@ -439535,6 +445647,13 @@ {} ] ], + "has-basic.html": [ + "3cd6e11bb944854c598191047b22f83fdc6e5838", + [ + null, + {} + ] + ], "hover-002.html": [ "02cee99bf6cd161eb95806854cb12e39504a359e", [ @@ -440004,7 +446123,7 @@ ] ], "is-where-parsing.html": [ - "b93cbda6749b12d95bae28e05f27b0098ab6b7a1", + "c9cc2236a3281a03589257afd7d7b060919956b7", [ null, {} @@ -440081,6 +446200,13 @@ {} ] ], + "parse-has.html": [ + "61382fd8c4e713d3f33adca73bf97a7f807c1317", + [ + null, + {} + ] + ], "parse-id.html": [ "2441c4217eb4b9ef1c8bde1aa5a96269b09b6304", [ @@ -440371,7 +446497,7 @@ ] ], "ElementInternals-setFormValue.html": [ - "66ff8841a6966ca2790d486bf5d8208e3fe31195", + "38a2590beb48dc34e5a524166ff9e6d061bceb66", [ null, {} @@ -440650,7 +446776,7 @@ ] ], "HTMLElement.html": [ - "5fe422cdfc1df56d58e4eeac1be4669ba8fee967", + "bd252282161b59a50b0ee991e7b2d28e94ddd74f", [ null, {} @@ -441035,7 +447161,7 @@ }, "density-size-correction": { "density-corrected-image-in-canvas.html": [ - "25ac0954d3a588cdf51dd1df4108ecf5d0ea99e6", + "fa4a090418dc33dea9ba9869369e62eaa1cf3a92", [ null, {} @@ -441387,8 +447513,19 @@ }, "dom": { "abort": { + "AbortSignal.any.js": [ + "1d7d7678eb1a6e27adabbe0e31afe574a31bb0ea", + [ + "dom/abort/AbortSignal.any.html", + {} + ], + [ + "dom/abort/AbortSignal.any.worker.html", + {} + ] + ], "event.any.js": [ - "2589ba1ce45091c6e1b8ad030c6eeb3a4fed714b", + "a67e6f400fcf1dfa347390e1a76e25b573afbb9a", [ "dom/abort/event.any.html", {} @@ -441494,7 +447631,7 @@ ] ], "AddEventListenerOptions-signal.any.js": [ - "42871061f3b9167cfa28e536b8608844684427d6", + "dc401e3bb5a3e8816845d7afa1c02b3084587a0f", [ "dom/events/AddEventListenerOptions-signal.any.html", {} @@ -441525,11 +447662,29 @@ {} ] ], - "Event-constructors.html": [ - "87d68d5ef527fd5a6caa592d87e58cc526cfced8", + "Event-constructors.any.js": [ + "aced2f3c2cda6112541c49fad40b85a3deac56cf", [ - null, - {} + "dom/events/Event-constructors.any.html", + { + "script_metadata": [ + [ + "title", + "Event constructors" + ] + ] + } + ], + [ + "dom/events/Event-constructors.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Event constructors" + ] + ] + } ] ], "Event-defaultPrevented-after-dispatch.html": [ @@ -441766,7 +447921,14 @@ ] ], "Event-timestamp-high-resolution.html": [ - "c0b43fc2711d9ea62b510cce1a556c34f8d76a41", + "a049fef64b4c7de261abf8857c36973b4562d429", + [ + null, + {} + ] + ], + "Event-timestamp-high-resolution.https.html": [ + "70f974294796b51aaaeeef13b53e2cb60e6c2571", [ null, {} @@ -441895,7 +448057,7 @@ {} ] ], - "document-level-touchmove-event-listener-passive-by-default.html": [ + "document-level-touchmove-event-listener-passive-by-default.tentative.html": [ "f3f0d58209fd8edda4fa1cc092dbe8d19bc4f143", [ null, @@ -441904,7 +448066,7 @@ } ] ], - "document-level-wheel-event-listener-passive-by-default.html": [ + "document-level-wheel-event-listener-passive-by-default.tentative.html": [ "b7224835fa398b3a81415af4ff288899bf53c266", [ null, @@ -442204,7 +448366,7 @@ ] ], "idlharness.window.js": [ - "ab965adbc4354b50cb6718349f50e1529bead040", + "c73fbf217568726acd563361c0764cb420bd9218", [ "dom/idlharness.window.html?exclude=Node", { @@ -443302,7 +449464,7 @@ ] ], "Node-contains-xml.xml": [ - "3c026b02421e3a0d26962916acadd67480a82666", + "f9b20d68d63941b3973ed9fd44790c5811e89678", [ null, {} @@ -443621,7 +449783,7 @@ ] ], "aria-element-reflection.tentative.html": [ - "44fc68acfd619dd729380681fe6e137d05a2817b", + "776fff314322b9004e1e6783c626c0356ca8f0a7", [ null, {} @@ -443972,7 +450134,7 @@ ] ], "Range-collapse.html": [ - "78e1d9fb4ba0023223e057da640c22886d5f926e", + "141dbdf610cf75383ee86ab86475ae9230f00493", [ null, { @@ -444337,7 +450499,16 @@ null, {} ] - ] + ], + "xslt": { + "transformToFragment.tentative.window.js": [ + "7bb6a5685544bfea53613af5a539d870385e6df0", + [ + "dom/xslt/transformToFragment.tentative.window.html", + {} + ] + ] + } }, "domparsing": { "DOMParser-parseFromString-encoding.html": [ @@ -444722,6 +450893,34 @@ {} ] ], + "editing-around-select-element.tentative.html": [ + "9182216efd715112932755a1ecc56a6cb3c3adf3", + [ + "editing/other/editing-around-select-element.tentative.html?delete", + { + "timeout": "long" + } + ], + [ + "editing/other/editing-around-select-element.tentative.html?forwardDelete", + { + "timeout": "long" + } + ], + [ + "editing/other/editing-around-select-element.tentative.html?insertText", + { + "timeout": "long" + } + ] + ], + "editing-style-of-range-around-void-element-child.tentative.html": [ + "864074c1a64800aca19b186d84659ba18e2551ed", + [ + null, + {} + ] + ], "exec-command-never-throw-exceptions.tentative.html": [ "1b77b15ab039dabd209507ada217bb6947f9d4e7", [ @@ -444730,14 +450929,14 @@ ] ], "exec-command-with-text-editor.tentative.html": [ - "e500c76026b7bebd34caf2ea2832cd101b6d7dea", + "f9e60947d8d1b4fddd8e9611a20df2e3d13c0998", [ null, {} ] ], "exec-command-without-editable-element.tentative.html": [ - "703db9d3c984a6eb93ddd04e87c38681e1b53b3c", + "0547140306eacdc31da07cab453e3494776bdd69", [ null, {} @@ -444771,6 +450970,21 @@ {} ] ], + "removing-inline-style-specified-by-parent-block.tentative.html": [ + "c799819a38afb04a25ecad9c34252d94ec32b111", + [ + "editing/other/removing-inline-style-specified-by-parent-block.tentative.html?b", + {} + ], + [ + "editing/other/removing-inline-style-specified-by-parent-block.tentative.html?i", + {} + ], + [ + "editing/other/removing-inline-style-specified-by-parent-block.tentative.html?u", + {} + ] + ], "restoration.html": [ "4c53008b41027c4e11734dea068a57ea0e7283db", [ @@ -446016,7 +452230,7 @@ ] ], "toJSON.html": [ - "24c7d1e0a655dff215b0e6a7ad94e0e3f3488b5e", + "a9f6a5180a45c140d0d2a83815e7b3f9d37f8070", [ null, {} @@ -454222,23 +460436,96 @@ } ] ], - "single-byte-decoder.html": [ - "70d8fb73eadb81bdade8e4bdcefe46491cd05b96", + "sharedarraybuffer.https.html": [ + "2496edacb89ee8854e2996c3a24b18b33de4fd12", [ - "encoding/single-byte-decoder.html?TextDecoder", + null, + {} + ] + ], + "single-byte-decoder.window.js": [ + "6bca8e623434e9039e4f6b08e98949f6cb0cfd01", + [ + "encoding/single-byte-decoder.window.html?TextDecoder", { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "variant", + "?XMLHttpRequest" + ], + [ + "variant", + "?TextDecoder" + ], + [ + "variant", + "?document" + ], + [ + "script", + "resources/encodings.js" + ] + ], "timeout": "long" } ], [ - "encoding/single-byte-decoder.html?XMLHttpRequest", + "encoding/single-byte-decoder.window.html?XMLHttpRequest", { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "variant", + "?XMLHttpRequest" + ], + [ + "variant", + "?TextDecoder" + ], + [ + "variant", + "?document" + ], + [ + "script", + "resources/encodings.js" + ] + ], "timeout": "long" } ], [ - "encoding/single-byte-decoder.html?document", + "encoding/single-byte-decoder.window.html?document", { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "variant", + "?XMLHttpRequest" + ], + [ + "variant", + "?TextDecoder" + ], + [ + "variant", + "?document" + ], + [ + "script", + "resources/encodings.js" + ] + ], "timeout": "long" } ] @@ -456600,6 +462887,20 @@ {} ] ], + "ja-half-width-late.tentative.html": [ + "2099b3c40565379f502f62b1999e95699cdbd5fa", + [ + null, + {} + ] + ], + "ja-half-width.tentative.html": [ + "930acb30e0b71576dd882ade5e14b640dbe9d469", + [ + null, + {} + ] + ], "ko-EUC-KR-late.tentative.html": [ "9ff224a54cb2b65d6a2598eb0160e86c0faf020b", [ @@ -458075,6 +464376,13 @@ } ] ], + "supported-types-consistent-with-self.html": [ + "b8a6876bf8000013330585373580dba3a8dffba2", + [ + null, + {} + ] + ], "supported-types.window.js": [ "1cc43495c096fd0cd568fa5983055c0390f94d40", [ @@ -458184,6 +464492,60 @@ {} ] ], + "eventsource-constructor-empty-url.any.js": [ + "850d854db4d22b757846ac3ffd79db7f207a2136", + [ + "eventsource/eventsource-constructor-empty-url.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "eventsource/eventsource-constructor-empty-url.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "eventsource/eventsource-constructor-empty-url.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "eventsource/eventsource-constructor-empty-url.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "eventsource-constructor-empty-url.html": [ + "d5b9c7e82b1611c4f7cd334b11f0a06e88f2c085", + [ + null, + {} + ] + ], "eventsource-constructor-non-same-origin.htm": [ "170787cf1c873add1325c020ebe9e0cba30fd8ee", [ @@ -458746,29 +465108,6 @@ } ] ], - "idlharness.window.js": [ - "2546061c52c5b39266b44b8725206b5dd50b81a5", - [ - "feature-policy/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], "payment-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html": [ "df53af2236425cd4168d7a9ff58109dd86c861d8", [ @@ -459596,6 +465935,101 @@ } ] ], + "http-response-code.any.js": [ + "1fd312a3e9fa6154b80a852eac99f2427241b277", + [ + "fetch/api/basic/http-response-code.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/http-response-code.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/http-response-code.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/http-response-code.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] + ], "integrity.sub.any.js": [ "56dbd4909f6a43e489ee5b6c50054d2b44d0709e", [ @@ -460087,7 +466521,7 @@ ] ], "request-upload.any.js": [ - "82b1ac93c996dc76a641fc7f85e342c513ffe3d8", + "ac2345d0eb91abe0b8196b7b32b92b9959b7d578", [ "fetch/api/basic/request-upload.any.html", { @@ -460181,6 +466615,101 @@ } ] ], + "request-upload.h2.any.js": [ + "00b54150d6f2d9dd4e61fc8b6cc9e20489db7979", + [ + "fetch/api/basic/request-upload.h2.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/request-upload.h2.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/request-upload.h2.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/basic/request-upload.h2.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] + ], "response-url.sub.any.js": [ "0d123c429445f1e750db7d901fabd096ff0eb473", [ @@ -460281,7 +466810,7 @@ ] ], "scheme-data.any.js": [ - "1c3b5dc816c88b28ed2fd05607a2492ba8b6f5a6", + "55df43bd503ce4de2b417157cc77e51baae8e015", [ "fetch/api/basic/scheme-data.any.html", { @@ -460470,7 +466999,7 @@ ] ], "stream-safe-creation.any.js": [ - "37c821ce73f25c5e2c5d02a687d6a8006ef5060c", + "382efc1a8b42062a4e5f5a340ad12effe09a9660", [ "fetch/api/basic/stream-safe-creation.any.html", { @@ -460597,6 +467126,17 @@ ] }, "body": { + "formdata.any.js": [ + "e25035923c1f9e93042889a914f0253a01eb4a15", + [ + "fetch/api/body/formdata.any.html", + {} + ], + [ + "fetch/api/body/formdata.any.worker.html", + {} + ] + ], "mime-type.any.js": [ "a0f90a0abdfc3e672997607611438ff0049ecf2c", [ @@ -461580,7 +468120,7 @@ }, "headers": { "header-values-normalize.any.js": [ - "814789c5b0b578d5f3674b165cf68d6fbad63668", + "5710554ada9d0b9995ef76d45fd0309aff422c19", [ "fetch/api/headers/header-values-normalize.any.html", { @@ -461663,7 +468203,7 @@ ] ], "header-values.any.js": [ - "9a829d8d4ed6218b8c3ebde03caf7ae732111c12", + "bb7570c5a37160ca850b6a41b40b572367d82720", [ "fetch/api/headers/header-values.any.html", { @@ -461746,7 +468286,7 @@ ] ], "headers-basic.any.js": [ - "5de71f43bb4fc37d38006626fc6c6276cd7dbd5b", + "398ddcfd3d6395120c727d837cea099bf0e7e489", [ "fetch/api/headers/headers-basic.any.html", { @@ -461809,7 +468349,7 @@ ] ], "headers-casing.any.js": [ - "57bec0164ed9abb109a0835c5a6ecb52ebdf8556", + "20b8a9d375aaa0550f44df27cd3cbaec3bb1c772", [ "fetch/api/headers/headers-casing.any.html", { @@ -461872,7 +468412,7 @@ ] ], "headers-combine.any.js": [ - "dab47889c45ef3cdb82f131a9c7d7cc4d2ed38fb", + "4f3b6d11df97481c4593ec69ae3432692d4749f4", [ "fetch/api/headers/headers-combine.any.html", { @@ -461935,7 +468475,7 @@ ] ], "headers-errors.any.js": [ - "ab8a118e255f3ad2d57b6d57ae4a5f263461b711", + "82dadd823403898ea5cf9ae30b45751643d31d75", [ "fetch/api/headers/headers-errors.any.html", { @@ -461998,7 +468538,7 @@ ] ], "headers-no-cors.any.js": [ - "c09658e641ecdf143778df3b02b5ca549c5b4c19", + "de30124c505ef98441c3029ae2753a29a5ca0220", [ "fetch/api/headers/headers-no-cors.any.html", { @@ -462045,7 +468585,7 @@ ] ], "headers-normalize.any.js": [ - "5ebd7ae9ea9898917fe3d7a1660475f024c51d11", + "621cee0ff0bdaf1a9004a49e3bbaeee213330dde", [ "fetch/api/headers/headers-normalize.any.html", { @@ -462108,7 +468648,7 @@ ] ], "headers-record.any.js": [ - "55036c2da4c076884debd673fdea23abb7a9a2bd", + "d6bf0a54967e2de312558bc8f02a90d778e59e37", [ "fetch/api/headers/headers-record.any.html", { @@ -462155,7 +468695,7 @@ ] ], "headers-structure.any.js": [ - "c47290eb2098b37a67e2b189b310166ba1a6a828", + "d826bcab2a01f232f2f5bed89fb7d023bf038386", [ "fetch/api/headers/headers-structure.any.html", { @@ -463141,6 +469681,101 @@ ] } ] + ], + "redirect-upload.h2.any.js": [ + "82ec43b64e91ab956b8ec2b2edcad6d673152c45", + [ + "fetch/api/redirect/redirect-upload.h2.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/redirect/redirect-upload.h2.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/redirect/redirect-upload.h2.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "fetch/api/redirect/redirect-upload.h2.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] ] }, "request": { @@ -463198,7 +469833,7 @@ ] }, "request-bad-port.any.js": [ - "85a27b77b03aa6909eb13e8616f0928fff82cfd2", + "0981b0f63e36a1a48cbf68db21f9195f2baf16dd", [ "fetch/api/request/request-bad-port.any.html", { @@ -465429,7 +472064,7 @@ ] ], "response-static-redirect.any.js": [ - "971baec4909de67b7fe8001e600c7d77c1df23ee", + "b16c56d83003d9b08944e67f9492046e9c890b48", [ "fetch/api/response/response-static-redirect.any.html", { @@ -468423,105 +475058,6 @@ ] }, "private-network-access": { - "idlharness.tentative.any.js": [ - "5a7726f4fdc02dfe29807783c45fbd347681552a", - [ - "fetch/private-network-access/idlharness.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "fetch/private-network-access/idlharness.tentative.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "fetch/private-network-access/idlharness.tentative.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "fetch/private-network-access/idlharness.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], "non-secure-context.window.js": [ "47e08e8b77962d871cf7bdfad18e26d6df619c35", [ @@ -469704,7 +476240,7 @@ ] ], "showPicker-errors.https.window.js": [ - "189f47344cabfa2a6423b1cda6ae9fbfc7f2ad52", + "ed66e1093b1cf8eb8a9657f2d89ae64dd68ec1f3", [ "file-system-access/showPicker-errors.https.window.html", { @@ -469775,6 +476311,34 @@ {} ] ], + "focus-already-focused-iframe-deep-different-site.html": [ + "79226c5cd8e49c210c16f73f8be8017fc94f54b6", + [ + null, + {} + ] + ], + "focus-already-focused-iframe-deep-same-site.html": [ + "fc08139205f6ff4933b9d6bc1228d40dec4c9dad", + [ + null, + {} + ] + ], + "focus-already-focused-iframe-different-site.html": [ + "9d7088cc39251ba1264ae5a65d169ac190770755", + [ + null, + {} + ] + ], + "focus-already-focused-iframe-same-site.html": [ + "57ef5c7391ef3742ca3e5f596869bf9b4e364a81", + [ + null, + {} + ] + ], "focus-event-after-focusing-iframes.html": [ "b7076a2e480b85911193b3080905ca4d8e854a42", [ @@ -469810,6 +476374,20 @@ {} ] ], + "hasfocus-different-site.html": [ + "4495778c81b5c3396be8fbca741ab74f06a6d799", + [ + null, + {} + ] + ], + "hasfocus-same-site.html": [ + "71a2e0f4edaadaabea922b2e571e511e93bc8221", + [ + null, + {} + ] + ], "iframe-activeelement-after-focusing-out-iframes.html": [ "832b2675e2543813bc130295ceac976ff49c9128", [ @@ -469939,6 +476517,28 @@ ] } ] + ], + "font_metadata.tentative.https.window.js": [ + "0f6d70da9c6b77576d9ef511f0ec594c2af1c1c2", + [ + "font-access/font_metadata.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/test-expectations.js" + ] + ] + } + ] ] }, "forced-colors-mode": { @@ -469999,7 +476599,21 @@ ] ], "forced-colors-mode-41.html": [ - "cf2c527be97458a9b6ccebd62b9ad4d703c90ec9", + "7b616c963d5909fb3688ae4bc692d165df950421", + [ + null, + {} + ] + ], + "forced-colors-mode-50.html": [ + "42957248b4efd08eb8a3c25d24610090859cb20c", + [ + null, + {} + ] + ], + "forced-colors-mode-51.html": [ + "02577144323136277dd71fa86115855024dd20d7", [ null, {} @@ -470038,6 +476652,27 @@ {} ] ], + "document-fullscreen-enabled-removing-allowfullscreen.sub.html": [ + "e2f8c3a5df404126f62971e4155c16df20639cb4", + [ + null, + {} + ] + ], + "document-fullscreen-enabled-setting-allowfullscreen-timing.sub.html": [ + "0986cce4de76d470512ee036dd9de52620bb543a", + [ + null, + {} + ] + ], + "document-fullscreen-enabled-setting-allowfullscreen.sub.html": [ + "3cedbf027e99a0849bb5a13920fe21d2acfb6182", + [ + null, + {} + ] + ], "document-fullscreen-enabled.html": [ "40430d7bbfbaf9425f45965819ef8b2407cb2c9c", [ @@ -470188,10 +476823,10 @@ {} ] ], - "idlharness-extensions.window.js": [ + "idlharness-extensions.https.window.js": [ "dcf76878fc9257d4b7f2cbb6d603d9848c55f083", [ - "gamepad/idlharness-extensions.window.html", + "gamepad/idlharness-extensions.https.window.html", { "script_metadata": [ [ @@ -470212,7 +476847,7 @@ ] ], "idlharness.https.window.js": [ - "0bbb0b3c701515743c24ca8ca67a96b5c61fa3cc", + "b15bf1f0aef3860ed836482ff7f83dfb2dbe4053", [ "gamepad/idlharness.https.window.html", { @@ -470545,6 +477180,20 @@ {} ] ], + "clamped-time-origin-isolated.https.html": [ + "ce30698b77ae3fdb96eef18460524f10441da0ef", + [ + null, + {} + ] + ], + "clamped-time-origin.html": [ + "1f438e9fefc0ff6510a8a84fcc37578da932c5f9", + [ + null, + {} + ] + ], "cross-origin-isolated-timing-attack.https.html": [ "88848740a90cee8a137a650a24998ecfc62bcadf", [ @@ -471001,6 +477650,13 @@ {} ] ], + "about-srcdoc-navigation-blocked.html": [ + "f31f6f47881b4468c0d644cc129e2b2946a77346", + [ + null, + {} + ] + ], "anchor-fragment-form-submit-longfragment.html": [ "8c4c77014fc92be94b7f71dd0fb2bfc7ee9a8a8c", [ @@ -471204,14 +477860,14 @@ ] ], "pageload-image.html": [ - "1f9c084fd002fc85e94a8ed3673abb6579108be0", + "67c97bafddd5a94e2b5d30ade8cdeea8ba571a34", [ null, {} ] ], "pageload-video.html": [ - "1ae414ceb6198c080473b5c270658e56bc382fd4", + "9bce1f0c361a351b0da121ed04f19ea76af4ef05", [ null, {} @@ -471220,7 +477876,7 @@ }, "read-text": { "load-text-plain.html": [ - "bd4fd78591f97faa9878a072e0753397cb48ec3e", + "ad7563153389b7564edde16741993d20e51ab47b", [ null, {} @@ -471602,14 +478258,14 @@ }, "the-history-interface": { "001.html": [ - "4cade019118764fa91f411ba2a327580e763613f", + "16cb834c78a6a716c306f9bbda7595d6ef0a9743", [ null, {} ] ], "002.html": [ - "8331a7c6dfc7c905ae05fb88b0f476203c2fa41d", + "8bce7e72ff1bfd87cd6815a1930b6ac03ca6289e", [ null, {} @@ -471885,6 +478541,20 @@ ] ] }, + "traverse-during-beforeunload.html": [ + "cb8cdca7ff80e4b13ec4c606ca65786a30d17d08", + [ + null, + {} + ] + ], + "traverse-during-unload.html": [ + "6f6e98440217d0b8ae84b638a3a23058d4f6bbaa", + [ + null, + {} + ] + ], "traverse_the_history_1.html": [ "9b59bb058798bb800749e96d2693525e6b317570", [ @@ -472035,7 +478705,7 @@ ] ], "location-protocol-setter.html": [ - "1afef4628d43829fa617ddefed5ebfcb9355ef4d", + "da6859b19ffe8a7e07a73d650a7674e610a1651e", [ null, {} @@ -472449,7 +479119,7 @@ ] ], "cross-origin-objects.html": [ - "577129502426989888a1791f78df46b6ed23c55e", + "d1b6cabc0f4703e3e2982c89765d0a6a1f2fabc4", [ null, { @@ -473492,7 +480162,7 @@ ] ], "window-named-properties.html": [ - "a0bdb1be1ed96d812408ea0e72db1ae885a9a3b5", + "0ec25812d0b8fe07b7951a9a211481f3d8149bc9", [ null, {} @@ -473557,15 +480227,22 @@ {} ] ], + "window-indexed-properties-delete-no-cache.html": [ + "22262943aadd775424645d79b0dfb2429f837e61", + [ + null, + {} + ] + ], "window-indexed-properties-strict.html": [ - "faf214d12d527ce14716ec7ca0cf73dd4762bb85", + "25d1d9d09607ac612ce488ffce3482aa432b9591", [ null, {} ] ], "window-indexed-properties.html": [ - "0f896cb636e973af0b044bffa880f400107ea008", + "a5910b7dcc2f2a5a2642b8d25c94e0fb4a809a2d", [ null, {} @@ -473883,29 +480560,6 @@ } ] ], - "document-access": { - "cross_origin_intermediate_access.sub.tentative.html": [ - "3812246da896609deef71f8975dfa6af7ee41a1b", - [ - null, - {} - ] - ], - "cross_origin_intermediate_access_remote.sub.tentative.html": [ - "22370e7541fa5e71724bc4191ad1a32c499d7362", - [ - null, - {} - ] - ], - "document_access_parent_access.tentative.html": [ - "07b27a5c4aeb41376db692e96c47156e67e0bead", - [ - null, - {} - ] - ] - }, "document-domain-nested-navigate.window.js": [ "f51eed5ca941f591536c70187e4201c464f02ab3", [ @@ -475372,6 +482026,13 @@ {} ] ], + "2d.text.drawing.style.nonfinite.spacing.html": [ + "f4741eae34c45cbb5a1c9a8f38637e86bc1a6b45", + [ + null, + {} + ] + ], "2d.text.drawing.style.spacing.html": [ "67092690ed37ba90b79048969a3d6b0de40e93b6", [ @@ -475472,6 +482133,20 @@ ] }, "fill-and-stroke-styles": { + "2d.fillStyle.CSSHSL.html": [ + "9850817c114fa40281ae475b0949f4a9df201341", + [ + null, + {} + ] + ], + "2d.fillStyle.CSSRGB.html": [ + "f916b8f6751515cfba116fb1b14137ef06748ea9", + [ + null, + {} + ] + ], "2d.fillStyle.colorObject.html": [ "969d2f34cb44b15785dad4040752bd765b59f10b", [ @@ -476410,8 +483085,22 @@ {} ] ], - "2d.gradient.conic.html": [ - "608b6a14db1bf4294aa455739e531a0ae3597aef", + "2d.gradient.conic.invalid.inputs.html": [ + "ab10f44b2fa77fce437e8fb24fc9075bd4e5e720", + [ + null, + {} + ] + ], + "2d.gradient.conic.negative.rotation.html": [ + "c6a2853d79503fc3a019c3cd00828bdb483085df", + [ + null, + {} + ] + ], + "2d.gradient.conic.positive.rotation.html": [ + "5aa8a58f1d087abc398261496adc965052baab90", [ null, {} @@ -477188,6 +483877,78 @@ ] ] }, + "filters": { + "2d.filter.canvasFilterObject.blur.exceptions.html": [ + "f8a93d687135cf8b14a553579126deb744275b9c", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.colorMatrix.html": [ + "ffb0dd2c0391ac6ee9c0f951eb2e175c91d42a79", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.discrete.html": [ + "953b83fd205ff495172d8d5ed53afab9b768599c", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.gamma.html": [ + "9ef769f37060ec7b823dc2f397e7abf3fe00b80a", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.identity.html": [ + "ab234cdcc1ba93907d7285c96934f57899f8859d", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.linear.html": [ + "6c17b58c54e5f9a3ea4310ed97de9c75613005d0", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.table.html": [ + "6e41f3f7154ff63dd82653ba1ecab6c7a7fe7853", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.html": [ + "8760f6a0a93126603ac39f089a2e90d8442c7222", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.html": [ + "c4a0838d4fa647d7cdf712b26ae8645acee5be38", + [ + null, + {} + ] + ], + "2d.filter.value.html": [ + "b5803655f5c6e27357996c2ca6243e1c9fb6a882", + [ + null, + {} + ] + ] + }, "line-styles": { "2d.line.cap.butt.html": [ "62ddcfc611e51c9750feea1d6526b911d039df8b", @@ -477415,15 +484176,6 @@ ] }, "manual": { - "color-space": { - "colorSpace.p3.getImageData.html": [ - "782ca459f536916e6352be7ea6037288d89c9834", - [ - null, - {} - ] - ] - }, "context-attributes": { "canvas-with-padding.html": [ "5a93ef680a6cdd287fb0082a82f4146207abc7be", @@ -478654,6 +485406,286 @@ {} ] ], + "2d.path.roundrect.1.radius.dompoint.html": [ + "17bb1abccb62d79cac4b96f3c8bc8507b6801e63", + [ + null, + {} + ] + ], + "2d.path.roundrect.1.radius.double.html": [ + "0703e9f10b3e8ae30afe5380218b47f6401331cf", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.1.dompoint.html": [ + "e74e0f1eabe48ae8416ad7f6b63af3ed7b4ae28c", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.1.double.html": [ + "f35ec3246dc6df32ea637ab9d80fb605078c47a6", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.2.dompoint.html": [ + "6aebe1b9f7509c0fe391d06aaa02258666231b72", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.2.double.html": [ + "9ae82104c98ba88c5976fa25a006bd180ef6f862", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.1.dompoint.html": [ + "3402094027df987ecf273cb0f5c8ca29ef3ee244", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.1.double.html": [ + "197a8add86a75db42d10ab6c6053fa7768382847", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.2.dompoint.html": [ + "1a4b9c4ba9c5aa0744f9fbae6b920a313edaaacb", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.2.double.html": [ + "74df39e99170e23d0771ea723f1524b66b37a245", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.3.dompoint.html": [ + "5b16dcd9b88caba986d8b7d80cfc53e901c6b997", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.3.double.html": [ + "af7d760faba33bcdf26ff7e1e2dad91f46d3967c", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.1.dompoint.html": [ + "9a4c3975326af2b4fac43f6152ba438e1da0e682", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.1.double.html": [ + "059f49f0c1b91070dc493a00dfea95c28ec73149", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.2.dompoint.html": [ + "50b64d51c110b7f7a1cdaca68b816576ed99ed3c", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.2.double.html": [ + "0ffbbfe2b0458ca6c190c551168d1d9709a50edf", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.3.dompoint.html": [ + "2452564e9e7e6d849b07bf90e53012404a5593dc", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.3.double.html": [ + "3d6225289d2c0e55b53ecb1fc86d4eab75bd161e", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.4.dompoint.html": [ + "99c9aa3dada09f0de2a2daee6e031b3025ed4127", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.4.double.html": [ + "7e2addf116d80c2b7f45b7e0d9aaecfca1bd45c0", + [ + null, + {} + ] + ], + "2d.path.roundrect.closed.html": [ + "780323cfed15ed81c1a0496a484706e4ef248e56", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.1.html": [ + "03ed7f31e2659cd37a98e23c9adbe8e98624a095", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.2.html": [ + "1ed59f2a4980cb1665a0ae057b3ab0548c3d6b4c", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.3.html": [ + "f42177b4e4c89bc9ae85854547a825813839d027", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.4.html": [ + "a2c59b35095163b3d8d9e9a5540cee0d92a5426b", + [ + null, + {} + ] + ], + "2d.path.roundrect.negative.html": [ + "4327046c382f39dc8b3c9a51750d2f69b95401b1", + [ + null, + {} + ] + ], + "2d.path.roundrect.newsubpath.html": [ + "8ec9a5f14cdf5336575694321966979cdad79322", + [ + null, + {} + ] + ], + "2d.path.roundrect.nonfinite.html": [ + "ec3a7e4170db59371b17d6da951c6a118b67a643", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.intersecting.1.html": [ + "fa6be6a13cc01a1c239b388b289ee41e3c2efdbf", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.intersecting.2.html": [ + "30f064c70477d3c5d0973df63de095a4df9c0530", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.none.html": [ + "b55d1eca654065329ff34622d270f938aa2e7214", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.toomany.html": [ + "aaa7756f65f3ce7f57450772343323ca978e57f3", + [ + null, + {} + ] + ], + "2d.path.roundrect.selfintersect.html": [ + "4b2c7d7c837d0fa030eca1c992f21451741f01fa", + [ + null, + {} + ] + ], + "2d.path.roundrect.winding.html": [ + "53eb5863a10e4389344376d4fc7376b7c6ec1bf3", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.1.html": [ + "cd1c4746d8e8b79fe779864224aa1323f410ad7a", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.2.html": [ + "d2ed1a7134561fa8102bf2c4508fa81d266696bd", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.3.html": [ + "e756672fe97b99a011251269d80349e89d81f3cf", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.4.html": [ + "9258a680f8945fa92ef9e34a10d55b10e657b6e3", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.5.html": [ + "2bcaf4ddba12339d7d9ddd31460b08f1aebb6625", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.6.html": [ + "abc43f7851d3e8e86f8fb6681be850f48e681354", + [ + null, + {} + ] + ], "2d.path.stroke.empty.html": [ "4c2991c7bd8dd26bfd05522413cacc89ff8ba4ae", [ @@ -479467,13 +486499,6 @@ {} ] ], - "2d.shadow.filter.value.html": [ - "72c48ed5c52acdc2fd82226a9ae21dc6dfb6fd4e", - [ - null, - {} - ] - ], "2d.shadow.gradient.alpha.html": [ "f864bb37af442dbf9c4ecaaf70e87dcf723a1bd7", [ @@ -480005,6 +487030,13 @@ ] }, "transformations": { + "2d.transformation.combined.3d.transforms.html": [ + "cff458207ce78b6e1a9c0cb5f6dbc0f1c73b06dc", + [ + null, + {} + ] + ], "2d.transformation.order.html": [ "0aa6c4a33fb3df4837947bd7e96da681281e15d7", [ @@ -480061,29 +487093,29 @@ {} ] ], - "2d.transformation.rotate3d.X.html": [ - "42a4e3c45a0f3a1fa5656c57b269e01c133e37da", + "2d.transformation.rotate3d.html": [ + "104e0870f27c5464ef107e978740364e0c11c523", [ null, {} ] ], - "2d.transformation.rotate3d.Y.html": [ - "5006769fa400b65d8263e25bf55f1aca1c8ec1fa", + "2d.transformation.rotate3d.x.html": [ + "284ffd484aaf0008187548ad6ea5b0ebf284e9d6", [ null, {} ] ], - "2d.transformation.rotate3d.Z.html": [ - "71e113dfe5ba707a43fc1a1ab33256ebd38614f4", + "2d.transformation.rotate3d.y.html": [ + "d1dae9653e1d8afc944ea9410f2a23ea1593b777", [ null, {} ] ], - "2d.transformation.rotate3d.html": [ - "104e0870f27c5464ef107e978740364e0c11c523", + "2d.transformation.rotate3d.z.html": [ + "2012a12368385ccc6773dd9a6102f058ab4e8b2d", [ null, {} @@ -480238,6 +487270,50 @@ {} ] ] + }, + "wide-gamut-canvas": { + "2d.color.space.p3.to.p3.html": [ + "55d13a173c2dbc4058b220538b0fe8c110a6de66", + [ + null, + {} + ] + ], + "2d.color.space.p3.to.srgb.html": [ + "adf8810554cf4cd38d5d5a1a10aa97ec12bcbcfc", + [ + null, + {} + ] + ], + "2d.color.space.p3.toBlob.p3.canvas.html": [ + "ef954e4fbbea2987733c5011f0389f4b54825f00", + [ + null, + {} + ] + ], + "2d.color.space.p3.toBlob.with.putImageData.html": [ + "609310e1c68bd3a7f7b85464a6eb3e6a8c251884", + [ + null, + {} + ] + ], + "2d.color.space.p3.toDataURL.p3.canvas.html": [ + "d587e9c5c44ebacc058ef91471104811d1168f13", + [ + null, + {} + ] + ], + "2d.color.space.p3.toDataURL.with.putImageData.html": [ + "7eda499e73e1acc9a45ba05812d1b2ca1167fdec", + [ + null, + {} + ] + ] } }, "offscreen": { @@ -482748,6 +489824,13 @@ ] }, "fill-and-stroke-styles": { + "2d.fillStyle.CSSHSL.html": [ + "d89a51f3c44d0c5aa99755f251a71a659a74d73a", + [ + null, + {} + ] + ], "2d.fillStyle.default.html": [ "4256de5e1aaa5ded992bc3d422c6d8a648f7fdc3", [ @@ -484554,17 +491637,45 @@ {} ] ], - "2d.gradient.conic.html": [ - "a1a4651ef65bb926279d5fbab4c1c991da935444", + "2d.gradient.conic.invalid.inputs.html": [ + "5e3c8262ab98ae27320c8f200ba81961d96439f6", + [ + null, + {} + ] + ], + "2d.gradient.conic.invalid.inputs.worker.js": [ + "6b3bd62707c0cadac3308d9e68beea68650fbe35", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.conic.invalid.inputs.worker.html", + {} + ] + ], + "2d.gradient.conic.negative.rotation.html": [ + "6b648a2efa498ccd89a07605b06d9f9c38255804", + [ + null, + {} + ] + ], + "2d.gradient.conic.negative.rotation.worker.js": [ + "b356a5e71a8f18c92bf384a6c777b37a528799a6", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.conic.negative.rotation.worker.html", + {} + ] + ], + "2d.gradient.conic.positive.rotation.html": [ + "dd9f05e227ccbfc35546807479773dcdac35fd55", [ null, {} ] ], - "2d.gradient.conic.worker.js": [ - "53a61ad114ddbfcc176812aab2e9946b82624994", + "2d.gradient.conic.positive.rotation.worker.js": [ + "a574b070e4941cc0d1c4f1700ec3d6fe0793a510", [ - "html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.conic.worker.html", + "html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.conic.positive.rotation.worker.html", {} ] ], @@ -485717,6 +492828,134 @@ ] ] }, + "filters": { + "2d.filter.canvasFilterObject.blur.exceptions.html": [ + "6ca962c7f02772de40f45701e65a55c2e1e9029d", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.blur.exceptions.worker.js": [ + "276c7b23c5f59a0b0a68c4d940a92eb2fbe8466a", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.blur.exceptions.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.colorMatrix.html": [ + "e11013e25b8a58f1967be2050611664922b7455f", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.colorMatrix.worker.js": [ + "3b4959d44f1ea40277f4d8767efc2e24f57d83cd", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.colorMatrix.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.discrete.html": [ + "e4e1d944d5063d2457c2e4c507a7ac4eee3fcddf", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.discrete.worker.js": [ + "75b57ff5dbdc94c6ba8ed2d8314ebb0a1bdb56f2", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.gamma.html": [ + "40354ee3375efa10353b1ceaacb7982799b3187a", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.gamma.worker.js": [ + "27f3a6899363041bcd7a47c993ae3a1df2699693", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.identity.html": [ + "f4c9cddefb1d8a185d4118717aaf70398b4a43fc", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.identity.worker.js": [ + "4a051aa504f0f234a5dd56314a948a1f81aa4c6a", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.linear.html": [ + "79b02436e5e782b3e9b987f72402ef0dfd72871e", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.linear.worker.js": [ + "97787d7e9831b77fd852df0f2794d6beee8744aa", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.table.html": [ + "b81a3f3f2b30b599cea8b87cea3d0f1e4e8c382c", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.componentTransfer.table.worker.js": [ + "5348c750806697283e27909275b58eb7ea2b596e", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.html": [ + "6eda8073e1128fac75fb231ae57adc29b267b08f", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.worker.js": [ + "7958946a31e8eb2df15be937fd844830e454fecd", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.worker.html", + {} + ] + ], + "2d.filter.canvasFilterObject.html": [ + "8e2e2d8ba95efd638f0a6b54a702e55f55ae910b", + [ + null, + {} + ] + ], + "2d.filter.canvasFilterObject.worker.js": [ + "d07c32e0eb93dd216a2f11947c5d9413ee82d6c7", + [ + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.worker.html", + {} + ] + ] + }, "line-styles": { "2d.line.cap.butt.html": [ "10c98ce0819eaff0591ada371b649408ed09adb4", @@ -486319,6 +493558,15 @@ {} ] ] + }, + "wide-gamut-canvas": { + "2d.color.space.p3.convertToBlobp3.canvas.html": [ + "9fc63a9f492d4b25b51f8ab0c95a9324c6c545f3", + [ + null, + {} + ] + ] } }, "path-objects": { @@ -487974,6 +495222,566 @@ {} ] ], + "2d.path.roundrect.1.radius.dompoint.html": [ + "d40389868b217477a5585a7d574d97a098156368", + [ + null, + {} + ] + ], + "2d.path.roundrect.1.radius.dompoint.worker.js": [ + "eec2dfd43908893f943f58a68e2d91a1dc946b22", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.1.radius.double.html": [ + "bfc15e7a5d9f1398aa4a93e5791efed73fa673f4", + [ + null, + {} + ] + ], + "2d.path.roundrect.1.radius.double.worker.js": [ + "573e4c75f7b799351ef550863b964d5d6f5400dc", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.double.worker.html", + {} + ] + ], + "2d.path.roundrect.2.radii.1.dompoint.html": [ + "ea3028d875428ed28f294e930eb6d9294a22fd26", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.1.dompoint.worker.js": [ + "64d7c4ab3406cef4878e5e75be2c5a07e16c9cc8", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.1.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.2.radii.1.double.html": [ + "f359b3d8a4284f583e755d1074f754c2b1673d63", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.1.double.worker.js": [ + "ba999f8b63b98b36efe00d010c1a23df4f669683", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.1.double.worker.html", + {} + ] + ], + "2d.path.roundrect.2.radii.2.dompoint.html": [ + "2a9175ae407f0ea3e9627d91bbefe85b4162c562", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.2.dompoint.worker.js": [ + "05e91c729e91dcc00ffb2302424a746be686e335", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.2.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.2.radii.2.double.html": [ + "50cf0c61c3204d08fdabd8e3e4f25a326879c29e", + [ + null, + {} + ] + ], + "2d.path.roundrect.2.radii.2.double.worker.js": [ + "d41ac26d79900e1e955ab3a6cd56fa18c025ad51", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.2.radii.2.double.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.1.dompoint.html": [ + "0351500ce82b231bfead1b0a411a242818296e37", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.1.dompoint.worker.js": [ + "a8d4a6c056568b758285ea03cab9c100e2ebb53d", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.1.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.1.double.html": [ + "324eb8cd0aefec4733719dabd89a6b00a9a1d677", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.1.double.worker.js": [ + "e6843b75c8e13dbda96f8d72c26f1b11d41ef284", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.1.double.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.2.dompoint.html": [ + "0ab615de4fda2f4c16d10da7e2615c704701295f", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.2.dompoint.worker.js": [ + "66d895b3ccc1d91e5d1ba1f205fb2efbd4f9a69c", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.2.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.2.double.html": [ + "7da57484c0502bb3c90b08aafd9245062e9c2712", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.2.double.worker.js": [ + "72e2c355bea370cd7eba8a215263d091b123a762", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.2.double.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.3.dompoint.html": [ + "75dd8297291b2732c1ea9f91f94610d64994a3db", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.3.dompoint.worker.js": [ + "1cd6506469d15db47f5536fe82d9825d4406c6cc", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.3.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.3.radii.3.double.html": [ + "d2f7a03ba0401ef2d5ed424ba864855d68b4b17c", + [ + null, + {} + ] + ], + "2d.path.roundrect.3.radii.3.double.worker.js": [ + "d18a2c0cd1931fe52b28abfcc85e59c1bf20e853", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.3.radii.3.double.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.1.dompoint.html": [ + "2d4a651cd8e9b6d195c293eec51b039d4c236e4b", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.1.dompoint.worker.js": [ + "712884dd427c5d35ec01b69af9edb43895f36e86", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.1.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.1.double.html": [ + "24160a11405e136ab5be8b589354a0cccebb26f1", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.1.double.worker.js": [ + "061a8c4fcf50ea09e9ecb905959ab6e0dc77667f", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.1.double.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.2.dompoint.html": [ + "f69865a962e1eab5aebd209c0e3c3c7f02d005d0", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.2.dompoint.worker.js": [ + "7c6c36deca53d417774544b57b597fc1a804d158", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.2.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.2.double.html": [ + "97ecb398fb57a88a1df0fb94c46ca68e0332543e", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.2.double.worker.js": [ + "641acc9f2140e841e8912d664fda64a95d42e08d", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.2.double.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.3.dompoint.html": [ + "4441250747680bb9a6e4b52651f55bbb8a8aa0a9", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.3.dompoint.worker.js": [ + "838246a1f11ac2d29fdfe4c53e6128e8caf24953", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.3.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.3.double.html": [ + "08554c09e498d4b7e8ca89437fcf6ff2deaf00ee", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.3.double.worker.js": [ + "67c8c375154413d2a22c63128d58cd8ab8fac87c", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.3.double.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.4.dompoint.html": [ + "9f19e990a6fc6cdd486a88afeaed774c68b65fad", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.4.dompoint.worker.js": [ + "7c867e25e290d6a6f0243fed4f3a9cab8827aaa7", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.dompoint.worker.html", + {} + ] + ], + "2d.path.roundrect.4.radii.4.double.html": [ + "32959f718eee247b4debb3c794c64d9c851a15ea", + [ + null, + {} + ] + ], + "2d.path.roundrect.4.radii.4.double.worker.js": [ + "78004cbf8e374a418058946ae28bdf1bef4e034c", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.4.radii.4.double.worker.html", + {} + ] + ], + "2d.path.roundrect.closed.html": [ + "d070e0f4d37aa7f1413f68a9f1494aafc90a5fcd", + [ + null, + {} + ] + ], + "2d.path.roundrect.closed.worker.js": [ + "906eb6e193c430fb4cf73d6e2d1f7d96be0f900b", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.closed.worker.html", + {} + ] + ], + "2d.path.roundrect.end.1.html": [ + "f79ee17b41ebce84ec2de238ca666e2ec7b3f0c4", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.1.worker.js": [ + "ef50fe5af10028dd728017bd84878bedb68aa678", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.end.1.worker.html", + {} + ] + ], + "2d.path.roundrect.end.2.html": [ + "6303f24a9a6ffafe8ff5795c16f14309a18c7b58", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.2.worker.js": [ + "e2a51c66b76789af7097ac1a228f9469c282248d", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.end.2.worker.html", + {} + ] + ], + "2d.path.roundrect.end.3.html": [ + "4216bf151de06b6b985edfd4154ae15883cd7aef", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.3.worker.js": [ + "46c82dca4b33033e64394af0826063597b21e439", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.end.3.worker.html", + {} + ] + ], + "2d.path.roundrect.end.4.html": [ + "39915312f0fb85bf1d8a820986d01dc5709c634f", + [ + null, + {} + ] + ], + "2d.path.roundrect.end.4.worker.js": [ + "05ef9d48fc2f02be6b938dfb1e5e6f638a8f7a27", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.end.4.worker.html", + {} + ] + ], + "2d.path.roundrect.negative.html": [ + "5558a99be48a01451c252e9fcb297f3d3e771535", + [ + null, + {} + ] + ], + "2d.path.roundrect.negative.worker.js": [ + "96df71a52f7d455cc25a2530032478f1a32bcb25", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.negative.worker.html", + {} + ] + ], + "2d.path.roundrect.newsubpath.html": [ + "676e0beea8eb782a0e5efaf88b1104bedc8fb757", + [ + null, + {} + ] + ], + "2d.path.roundrect.newsubpath.worker.js": [ + "66e35f9d54bbacd8972b871cb4c1af78b87a58d8", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.newsubpath.worker.html", + {} + ] + ], + "2d.path.roundrect.nonfinite.html": [ + "de4613a8b7811016e35e7c30d60ad041ad410fad", + [ + null, + {} + ] + ], + "2d.path.roundrect.nonfinite.worker.js": [ + "8abb44398f938cfb34e68e3041d3898391fb1be1", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.nonfinite.worker.html", + {} + ] + ], + "2d.path.roundrect.radius.intersecting.1.html": [ + "68b16e6b4c93b72e6da6abe8a089e2cdd998491a", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.intersecting.1.worker.js": [ + "c0f4e60c27a4f73b7b00acfb7ccc3caee875a8d5", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.radius.intersecting.1.worker.html", + {} + ] + ], + "2d.path.roundrect.radius.intersecting.2.html": [ + "e849c56cfb5865796ce72e3a3af9c6da00872e0c", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.intersecting.2.worker.js": [ + "3801c0c00c80f3c35a982665f540ad3f73371e35", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.radius.intersecting.2.worker.html", + {} + ] + ], + "2d.path.roundrect.radius.none.html": [ + "6defab24e32e0e5ab095ff78c1251454ac1d5085", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.none.worker.js": [ + "9acbf0d84d9aaede8beedc2a82df18ff8834650f", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.radius.none.worker.html", + {} + ] + ], + "2d.path.roundrect.radius.toomany.html": [ + "fe75bc2dc2c00f952fa7d286f950f21564c24e42", + [ + null, + {} + ] + ], + "2d.path.roundrect.radius.toomany.worker.js": [ + "294ae6bc3c5271962be162566e9ec07b6afd33ad", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.radius.toomany.worker.html", + {} + ] + ], + "2d.path.roundrect.selfintersect.html": [ + "c0aad973a96445332ba3fb80f6516d725f0d391e", + [ + null, + {} + ] + ], + "2d.path.roundrect.selfintersect.worker.js": [ + "b00d7b40550281a0445f19c9de412f7923edf0ca", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.selfintersect.worker.html", + {} + ] + ], + "2d.path.roundrect.winding.html": [ + "291c3435a2c2d75046f8abca2ccb3ecc65bb0aef", + [ + null, + {} + ] + ], + "2d.path.roundrect.winding.worker.js": [ + "5a765927b96a318a2afdcec1f1854b2b2df996cd", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.winding.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.1.html": [ + "250c812ed88f23036483fc1a2680e3fe51894747", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.1.worker.js": [ + "94c436e72ae3d3e8b968746b8ef7fe55723d6141", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.1.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.2.html": [ + "e418e4c30ad7aae34557c252fa4408bd633e1874", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.2.worker.js": [ + "789a6ca8f43cfc9641879074d2ff0db1613e81a0", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.2.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.3.html": [ + "3b987a8cb81af7f5c4e68c1db2b2621027caa88f", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.3.worker.js": [ + "72b910f9e6dccd9ba187868759d465f415feff45", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.3.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.4.html": [ + "c37feea5d9a418ed96df3fdb37353ff89b3982f8", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.4.worker.js": [ + "f6b7f929ad13c43f9e24da1b538341146db4b925", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.4.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.5.html": [ + "eb7d57e4e70e1a7791a5108a3301479c06876025", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.5.worker.js": [ + "1f0a33fa72ec72022d1a11640e9b2c441e43d383", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.5.worker.html", + {} + ] + ], + "2d.path.roundrect.zero.6.html": [ + "71f87cd52e36918d15b1edb4b2a2bad61b7af637", + [ + null, + {} + ] + ], + "2d.path.roundrect.zero.6.worker.js": [ + "737187207d7df6d1db707fdd3c882e76313e0580", + [ + "html/canvas/offscreen/path-objects/2d.path.roundrect.zero.6.worker.html", + {} + ] + ], "2d.path.stroke.empty.html": [ "af6456f228800ec9ff87557675ae6a5199e44094", [ @@ -488522,20 +496330,6 @@ {} ] ], - "2d.imageData.get.tiny.html": [ - "1ab7c82e9e39a5c198317e8d220566e8090fe258", - [ - null, - {} - ] - ], - "2d.imageData.get.tiny.worker.js": [ - "7e682054ddbedfb08238aae1bb39fd4e3dca17cf", - [ - "html/canvas/offscreen/pixel-manipulation/2d.imageData.get.tiny.worker.html", - {} - ] - ], "2d.imageData.get.unaffected.html": [ "268085e45480ebf1d5866af8689dbcdec5be9d6d", [ @@ -490300,6 +498094,20 @@ {} ] ], + "2d.text.drawing.style.nonfinite.spacing.html": [ + "521d7c4773a599853ffefffb7f0fd0e98fbc0e3b", + [ + null, + {} + ] + ], + "2d.text.drawing.style.nonfinite.spacing.worker.js": [ + "a83682af16545f23342dc55d418dd737e5bc0066", + [ + "html/canvas/offscreen/text/2d.text.drawing.style.nonfinite.spacing.worker.html", + {} + ] + ], "2d.text.drawing.style.spacing.html": [ "512ed7157c86e3365f959efa393f88e47447efcc", [ @@ -491145,7 +498953,7 @@ ] ], "size.attributes.idl.html": [ - "239899986b4128b37286af4868640ac6e758d20e", + "f05472a7950575e818e0a2bd397ea41aa2a10dde", [ null, {} @@ -491166,7 +498974,7 @@ ] ], "size.attributes.idl.worker.js": [ - "cbf5763e4ebed43ac3506f544c48ea4849457de0", + "8703a037e6cf8af95c40e92b120b5e513025164b", [ "html/canvas/offscreen/the-offscreen-canvas/size.attributes.idl.worker.html", {} @@ -491426,6 +499234,20 @@ ] }, "transformations": { + "2d.transformation.combined.3d.transforms.html": [ + "e0987b4bb29859abe6199a499f282651786c257a", + [ + null, + {} + ] + ], + "2d.transformation.combined.3d.transforms.worker.js": [ + "d3a2d1e03607836f0accfc7b9d566965fcfdb336", + [ + "html/canvas/offscreen/transformations/2d.transformation.combined.3d.transforms.worker.html", + {} + ] + ], "2d.transformation.order.html": [ "127472dde11607f5966d3a4ce7f62ebc42e0f5fe", [ @@ -491440,6 +499262,20 @@ {} ] ], + "2d.transformation.perspective.html": [ + "e6bc88095c8c2e30123ead1bf56b7fe2dfb8caad", + [ + null, + {} + ] + ], + "2d.transformation.perspective.worker.js": [ + "a155ebfeb98475acc0b2bd16156fdec62689be93", + [ + "html/canvas/offscreen/transformations/2d.transformation.perspective.worker.html", + {} + ] + ], "2d.transformation.rotate.direction.html": [ "1f32f8df99ca84148928bebde8c60a84afe6d202", [ @@ -491524,6 +499360,90 @@ {} ] ], + "2d.transformation.rotate3d.html": [ + "4925c114efdeba8e5c04182dbbe8d950a9da1c06", + [ + null, + {} + ] + ], + "2d.transformation.rotate3d.worker.js": [ + "785b0e233dd45d31921ce7a7cd124b6fb71754ac", + [ + "html/canvas/offscreen/transformations/2d.transformation.rotate3d.worker.html", + {} + ] + ], + "2d.transformation.rotate3d.x.html": [ + "2905ac390aa68779caef81333f03acbdeacd8c2a", + [ + null, + {} + ] + ], + "2d.transformation.rotate3d.x.worker.js": [ + "fcee7c17146822bb04b8edac9b4f9952d02d7434", + [ + "html/canvas/offscreen/transformations/2d.transformation.rotate3d.x.worker.html", + {} + ] + ], + "2d.transformation.rotate3d.y.html": [ + "27b4eff56927c4df0a5426478c4591be7f7cf904", + [ + null, + {} + ] + ], + "2d.transformation.rotate3d.y.worker.js": [ + "c4cfd34340143b664b349ffae35592f5660e0113", + [ + "html/canvas/offscreen/transformations/2d.transformation.rotate3d.y.worker.html", + {} + ] + ], + "2d.transformation.rotate3d.z.html": [ + "96405e804fa2bf8c2774e97e44d1d68a79f4a64e", + [ + null, + {} + ] + ], + "2d.transformation.rotate3d.z.worker.js": [ + "f3c59135387d89b114e4f53fb89c62f54e4de660", + [ + "html/canvas/offscreen/transformations/2d.transformation.rotate3d.z.worker.html", + {} + ] + ], + "2d.transformation.rotateAxis.html": [ + "d7257a23b49219221f31b13f11d4cfcd97d099fe", + [ + null, + {} + ] + ], + "2d.transformation.rotateAxis.worker.js": [ + "f17356c075851ee20435b75d89d92b56a4d329f9", + [ + "html/canvas/offscreen/transformations/2d.transformation.rotateAxis.worker.html", + {} + ] + ], + "2d.transformation.scale.3d.html": [ + "ffd2287939dd0fd706dad3932e63ed4a1194a650", + [ + null, + {} + ] + ], + "2d.transformation.scale.3d.worker.js": [ + "692967f48a8eeca7e6e98eb7f1f1f7655a096830", + [ + "html/canvas/offscreen/transformations/2d.transformation.scale.3d.worker.html", + {} + ] + ], "2d.transformation.scale.basic.html": [ "60ba3593f480fe71ba0f991a3afa06cf634c98f0", [ @@ -491608,6 +499528,20 @@ {} ] ], + "2d.transformation.setTransform.3d.html": [ + "fb31cda3f5731746a80128a48cbc5804ef79e183", + [ + null, + {} + ] + ], + "2d.transformation.setTransform.3d.worker.js": [ + "aa6c033f81c4cd52a9aa260783adb473993eaac8", + [ + "html/canvas/offscreen/transformations/2d.transformation.setTransform.3d.worker.html", + {} + ] + ], "2d.transformation.setTransform.multiple.html": [ "4d73261d7f22bfa1e77df20cb28189326e4baf75", [ @@ -491650,6 +499584,20 @@ {} ] ], + "2d.transformation.transform.3d.html": [ + "2dfc718eab0f4ba23683365e9915f29a0a9388d8", + [ + null, + {} + ] + ], + "2d.transformation.transform.3d.worker.js": [ + "976c4e0b0fcd497ac3bf2863bbd013fc007f79d4", + [ + "html/canvas/offscreen/transformations/2d.transformation.transform.3d.worker.html", + {} + ] + ], "2d.transformation.transform.identity.html": [ "747454ae9180bc5671199489486ce8182dfb7f88", [ @@ -491706,6 +499654,20 @@ {} ] ], + "2d.transformation.translate.3d.html": [ + "73abc7eda2854804a931fc3f1160fea56bd0add1", + [ + null, + {} + ] + ], + "2d.transformation.translate.3d.worker.js": [ + "4336022e71e1a0d0bd294ca61b82e4f81a290ffc", + [ + "html/canvas/offscreen/transformations/2d.transformation.translate.3d.worker.html", + {} + ] + ], "2d.transformation.translate.basic.html": [ "1163ee555a03794cbabe164a9e43c44d44498cb5", [ @@ -491734,10 +499696,56 @@ {} ] ] + }, + "wide-gamut-canvas": { + "2d.color.space.p3.to.p3.html": [ + "873fb49172437d2be0064ec271f1ea75ca8ae14c", + [ + null, + {} + ] + ], + "2d.color.space.p3.to.p3.worker.js": [ + "116810a324e45fab41b789437e4a4081f2e85a6c", + [ + "html/canvas/offscreen/wide-gamut-canvas/2d.color.space.p3.to.p3.worker.html", + {} + ] + ], + "2d.color.space.p3.to.srgb.html": [ + "b9b7b9f53051bca7e710773daac48d95d754b7aa", + [ + null, + {} + ] + ], + "2d.color.space.p3.to.srgb.worker.js": [ + "ed69ab5703e4a54beb4baf4cad79f5798e282c90", + [ + "html/canvas/offscreen/wide-gamut-canvas/2d.color.space.p3.to.srgb.worker.html", + {} + ] + ] } } }, "cross-origin-embedder-policy": { + "anonymous-iframe": { + "cookie.tentative.https.html": [ + "43282dd246e33757310fd20755678ec9010e3606", + [ + null, + {} + ] + ], + "local-storage.tentative.https.html": [ + "a49eac706bea9840e9ff58a5790669f12109d230", + [ + null, + {} + ] + ] + }, "blob.https.html": [ "77af2bc77de3301bcee344cdfbec6b5761c2e89f", [ @@ -491794,80 +499802,179 @@ ] ], "credentialless": { - "cors-or-credentialless": { - "fetch.tentative.https.html": [ - "8b47828d3486ccc97e031bd80a8677612c9caf51", - [ - null, - {} - ] - ], - "iframe-coep-credentialless.tentative.https.html": [ - "606093cedf6d611a2d3e9bf989be82d4637c1e90", - [ - null, - {} - ] + "cache-storage.tentative.https.html": [ + "d3278674be184bb499dc450a8c595e6ec0f5c750", + [ + "html/cross-origin-embedder-policy/credentialless/cache-storage.tentative.https.html?dedicated_worker", + { + "timeout": "long" + } ], - "iframe-coep-none.tentative.https.html": [ - "570454ef7571090b6b1c23348b2acc1ad3a121ed", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/cache-storage.tentative.https.html?document", + { + "timeout": "long" + } ], - "iframe-coep-require-corp.tentative.https.html": [ - "1839a63f180c8271b701043129bfc183ae51afaf", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/cache-storage.tentative.https.html?service_worker", + { + "timeout": "long" + } ], - "image.tentative.https.html": [ - "f1419e15e912658c0603347332ddf20cf43ac929", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/cache-storage.tentative.https.html?shared_worker", + { + "timeout": "long" + } + ] + ], + "cross-origin-isolated.html": [ + "86d30cdb458ff3d53dbac93bd011ea5a2dfde777", + [ + null, + {} + ] + ], + "dedicated-worker.tentative.https.html": [ + "33e6e179b49978dd9f1615809bffe29d6d4d92ae", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.tentative.https.html": [ + "b6c84a8ef9e986221a8e2349f8563adceb8c3650", + [ + null, + {} + ] + ], + "iframe-coep-credentialless.tentative.https.html": [ + "eee911cea7d087336da43c4ae34f1865a16eded3", + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-credentialless.tentative.https.html?1-4", + {} ], - "link.tentative.https.html": [ - "9fc64926b31b03e2fc17910aeeb8031ac85e9c36", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-credentialless.tentative.https.html?5-9", + {} ], - "script.tentative.https.html": [ - "cbed45dcc0215fc1d41cc3b585d667bc27d08d8c", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-credentialless.tentative.https.html?9-last", + {} + ] + ], + "iframe-coep-none.tentative.https.html": [ + "3596a5473b8dff35c86030a1acb31e5b6a47a009", + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-none.tentative.https.html?1-4", + {} ], - "video.tentative.https.html": [ - "8658ba9678bf0e1cb8454e913499b9f18eef2e7b", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-none.tentative.https.html?5-last", + {} ] - }, - "full-credentialless": { - "cookie.tentative.https.html": [ - "19c59ea39884d3d62190023ad21bec0d0dcf22b2", - [ - null, - {} - ] + ], + "iframe-coep-require-corp.tentative.https.html": [ + "41e0c65643e2412b704361462c1926cff39572e9", + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-require-corp.tentative.https.html?1-4", + {} ], - "local-storage.tentative.https.html": [ - "d6b3b9fdd1f3300be5fee1e451d6272b287eaf1d", - [ - null, - {} - ] + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-require-corp.tentative.https.html?5-9", + {} + ], + [ + "html/cross-origin-embedder-policy/credentialless/iframe-coep-require-corp.tentative.https.html?9-last", + {} ] - } + ], + "iframe.tentative.html": [ + "2b6c8399ea7a6fc7cf0fd926297c85be388c38d3", + [ + null, + { + "timeout": "long" + } + ] + ], + "image.tentative.https.html": [ + "68783f4247c4c09544e842071cd4f1757068ec65", + [ + null, + {} + ] + ], + "link.tentative.https.html": [ + "c76c2dca90007ed4f90937a68a5ef4610a093a55", + [ + null, + {} + ] + ], + "redirect.tentative.html": [ + "f4c0a4d22d35918c8610bd269ab7e317d2daf990", + [ + null, + { + "timeout": "long" + } + ] + ], + "reporting-navigation.tentative.https.html": [ + "1742d80da27012e6672685cc4879f03e505c31d3", + [ + null, + { + "timeout": "long" + } + ] + ], + "reporting-subresource-corp.tentative.https.html": [ + "8e1631cb79ba71ee8091e505be067be96a279779", + [ + null, + { + "timeout": "long" + } + ] + ], + "script.tentative.https.html": [ + "cac1d46d49dbcf654a9e6d77c57521b67be16091", + [ + null, + {} + ] + ], + "service-worker.tentative.https.html": [ + "377bcceb8be4756b67e7308b2a42fdb51070a802", + [ + null, + { + "timeout": "long" + } + ] + ], + "shared-worker.tentative.https.html": [ + "7d0bc80bbe908d9a33dfce0b10ec7d8d9c0ae604", + [ + null, + { + "timeout": "long" + } + ] + ], + "video.tentative.https.html": [ + "47a4024089a86fac9615dd5115cd5b2d92524ac4", + [ + null, + {} + ] + ] }, "cross-origin-isolated-permission.https.html": [ "31c0a913338e014a569f945c39e5edbae50e594d", @@ -491898,7 +500005,7 @@ ] ], "header-parsing.https.html": [ - "6da000d7ededd87bc2cfbfce4741bada621609e9", + "7a25eed51ffc53ef0e660534032be456380ee885", [ null, { @@ -491920,6 +500027,15 @@ {} ] ], + "multi-globals": { + "workers-coep-report.https.html": [ + "e1f16a61e1269c9362fd4736818748496c6fd286", + [ + null, + {} + ] + ] + }, "no-secure-context.html": [ "6e1573cd6457bb608dc5d617d29ce74f57d0a94f", [ @@ -491974,7 +500090,7 @@ ] ], "reporting-navigation.https.html": [ - "fe42015913b56d1ca0fdd234d4ad6ad9d0926af2", + "ab274be3295284210440afa89ae93329d7eeffe6", [ null, { @@ -491983,7 +500099,7 @@ ] ], "reporting-subresource-corp.https.html": [ - "ad8a8e99eb99e6ec92c8d40dfad0324365fbe6ac", + "9bcf37b0cdfe32f9676ca4260a477875a69414b8", [ null, { @@ -491992,7 +500108,7 @@ ] ], "reporting-to-endpoint.https.html": [ - "7294bdeafab2c32512983954ed20d617a1418f29", + "ad1f18cbb3b65b681a674a99d54cb2e20df626ad", [ null, { @@ -492000,6 +500116,20 @@ } ] ], + "reporting-to-frame-owner.https.html": [ + "331ad898ebd03007683b3fbc3f6d62433bb5da1d", + [ + null, + {} + ] + ], + "reporting-to-worker-owner.https.html": [ + "c0010876fab87ba47fd3b5edc977bd30f5e62fba", + [ + null, + {} + ] + ], "require-corp-about-blank.https.html": [ "945333b83d54cf2148070f1a842e11155a14434c", [ @@ -492065,6 +500195,13 @@ {} ] ], + "shared-workers.html": [ + "e6a8a311fce5540a7d4495247e087ffdb27a1b3d", + [ + null, + {} + ] + ], "srcdoc.https.html": [ "2937c13381059a3609d431908afe15d1a21262f7", [ @@ -492075,7 +500212,7 @@ }, "cross-origin-opener-policy": { "blob-popup.https.html": [ - "a26520d8d36c2e14ab3d11f4dec4aa6f3600e0f3", + "eda150eb34880a332269666cf388c40152bc17ff", [ null, {} @@ -492164,6 +500301,13 @@ {} ] ], + "coop-same-origin-allow-popups-document-write.html": [ + "c577972216691c09702f0a84c3b82a9cf881ac8f", + [ + null, + {} + ] + ], "coop-sandbox.https.html": [ "6f250c1b0920808f519ee1278920215981fcd5e6", [ @@ -492334,16 +500478,40 @@ ] ], "javascript-url.https.html": [ - "a10c939ed50cce5426e8e8127c4c6e2e86dfa381", + "4060d38b77989cc97254728ae55f385e8a5da9a7", [ - null, + "html/cross-origin-opener-policy/javascript-url.https.html?0-3", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/javascript-url.https.html?12-15", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/javascript-url.https.html?16-last", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/javascript-url.https.html?4-7", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/javascript-url.https.html?8-11", { "timeout": "long" } ] ], "navigate-to-aboutblank.https.html": [ - "77de5a0c086668f680a14aedc772b3820a433f64", + "4aa39e392787cee917caed25b97259049e349eee", [ null, { @@ -492352,7 +500520,7 @@ ] ], "navigate-top-to-aboutblank.https.html": [ - "1dd65fcae715cfdc2d107b20f2cf5ad5873db748", + "c4bbe15000c921ea96ef09a78fd4ba02cbae7891", [ null, { @@ -492395,9 +500563,33 @@ ] ], "popup-redirect-cache.https.html": [ - "2ef7c0998af7835b0595f5eb2a6b7664841c59b2", + "acaef785b6e8590ddbd66cefd0ba4f18f8ac4dcd", [ - null, + "html/cross-origin-opener-policy/popup-redirect-cache.https.html?0-1", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/popup-redirect-cache.https.html?2-3", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/popup-redirect-cache.https.html?4-5", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/popup-redirect-cache.https.html?6-7", + { + "timeout": "long" + } + ], + [ + "html/cross-origin-opener-policy/popup-redirect-cache.https.html?8-last", { "timeout": "long" } @@ -492934,7 +501126,7 @@ ] ], "Document.currentScript.html": [ - "34b3ec9a254ca6659d34615d5a76bd9f27d5f78f", + "245bae98ee109a0a3034e840a4d85af9ab8e5036", [ null, {} @@ -493592,37 +501784,44 @@ {} ] ], - "the-innertext-idl-attribute": { + "the-innertext-and-outertext-properties": { "dynamic-getter.html": [ - "b3e96f94a8050102b6e8140b48d0fca8af7fdd15", + "e34fcf5ac1e44476278c66b32bd166e9404c4678", [ null, {} ] ], "getter-first-letter-marker-multicol.html": [ - "77a815c5410aac3db994f978432b8e3c8c22a1f5", + "3b579dca1c5e4dc1a8d00681b1adc7aa2d79bbab", [ null, {} ] ], "getter.html": [ - "c84bb04a2f4740f42e2bf163190c587df66139a4", + "ffb3d34fe94143e74b63b16ebac9b22ee320d2f3", + [ + null, + {} + ] + ], + "innertext-setter.html": [ + "a835a164ed6353ebfb876c95fd81e1042bb51fdb", [ null, {} ] ], "multiple-text-nodes.window.js": [ - "3d504b682e5c031b2187f48891eaedd4157b7674", + "07c55e966933924d49ef82d98f35e639e5659669", [ - "html/dom/elements/the-innertext-idl-attribute/multiple-text-nodes.window.html", + "html/dom/elements/the-innertext-and-outertext-properties/multiple-text-nodes.window.html", {} ] ], - "setter.html": [ - "0b8d56867434945c7e397a08ac769016873cb9ee", + "outertext-setter.html": [ + "6500931a8411bad79a44d7ae5ae93d5778f91309", [ null, {} @@ -493638,7 +501837,7 @@ ] ], "idlharness.https.html": [ - "79f949f436a39e3c652b7016e19876d4fdfea983", + "553d8f7e6479dd8131d58825d20470c558b84d49", [ "html/dom/idlharness.https.html?exclude=(Document|Window|HTML.*)", { @@ -495075,6 +503274,15 @@ } ] ], + "focus-keyboard-js.html": [ + "8a7242f37e4274119ae5a939144f5ebbc28ef189", + [ + null, + { + "testdriver": true + } + ] + ], "focus-management": { "focus-event-targets-simple.html": [ "ab7bcfe6d0e636552746def160715bc47e63fb85", @@ -495552,7 +503760,7 @@ ] ], "resets.html": [ - "052adca4c5b0b70819c5291503fecc1f39715df6", + "8274973ea84c759dfbc035717f0ea68bc0bd752b", [ null, {} @@ -495566,6 +503774,13 @@ null, {} ] + ], + "lists-styles.html": [ + "4f0e76ee7d4925f06bc6562c10e40dd29a7aca62", + [ + null, + {} + ] ] }, "margin-collapsing-quirks": { @@ -495912,7 +504127,7 @@ ] ], "canvas-aspect-ratio.html": [ - "816d84e44478166f3f971501ecf5bbb4f79c08e8", + "cbf478411a56f0be4273a60a5eaf5866717166a2", [ null, {} @@ -495947,7 +504162,7 @@ ] ], "img-aspect-ratio.html": [ - "dd163fdf2947090e11aba1b8f700baf582ff38da", + "24376ec0f2015c3a0cfca5fe16588e40d3eb82ed", [ null, {} @@ -495982,14 +504197,14 @@ ] ], "picture-aspect-ratio.html": [ - "74f3334890bcf876b0a359d50a48b5bf4780f20c", + "939d7895c34b297bfec9e355204356fa284e32e5", [ null, {} ] ], "video-aspect-ratio.html": [ - "bfa91081e26ac8dc755262ecee5e87a876461dce", + "80fe4a85114250bdcfe8e84c58a8a237f62d4928", [ null, {} @@ -496156,7 +504371,7 @@ ] ], "computed-style.html": [ - "696b551bae37c54a4e2466659e3840e4b4e67982", + "764e0844069af07dd7c3b454e4dc94eed4c0551f", [ null, {} @@ -496790,6 +505005,13 @@ {} ] ], + "audio_loop_seek_to_eos.html": [ + "01a2d4bea9610c41ad2f48c6e388c88346cd8496", + [ + null, + {} + ] + ], "audio_volume_check.html": [ "b467c702a7c88c423384c61a801473f8bde86d26", [ @@ -496856,6 +505078,13 @@ {} ] ], + "controlsList.tentative.html": [ + "11144839eee4b014c041331a93724cc95b8d4600", + [ + null, + {} + ] + ], "error-codes": { "error.html": [ "42d86e49b0e96cdcf0fb5dd542e5c570fa388caa", @@ -497205,7 +505434,7 @@ ] ], "endTime.html": [ - "a7c10a3d4dfd7c601d0e056d2ee89f88cf59cb7e", + "18b14bdfa901df7d09337b14ba09de4681ca67a4", [ null, {} @@ -497389,7 +505618,7 @@ ] ], "resource-selection-currentSrc.html": [ - "b17190186db7426ce7f54de493ef8d24d23554cd", + "61902161ed1ed1e0a6b800b3cf9c61dd4ad0c950", [ null, {} @@ -497879,10 +506108,12 @@ ] }, "src_object_blob.html": [ - "481a8184ea2fdc6220b147d43a653ed510cfd104", + "ae2bb76b26348f99abecc501c048ce39d09fe367", [ null, - {} + { + "testdriver": true + } ] ], "src_reflects_attribute_not_source_elements.html": [ @@ -498371,6 +506602,15 @@ } ] ], + "track-cues-enter-seeking.html": [ + "ae56e162056cf855f9ad6c2e04aa6be03082d122", + [ + null, + { + "timeout": "long" + } + ] + ], "track-cues-missed.html": [ "2acae212d231f6433ae4eff01039a263d9fa817b", [ @@ -499789,6 +508029,13 @@ {} ] ], + "embed-change-src.html": [ + "4152d51b0c6658be2b05081f02ba455da39b5343", + [ + null, + {} + ] + ], "embed-dimension.html": [ "608ed331c9e5b23052338ce90f127572ece72294", [ @@ -499926,6 +508173,13 @@ {} ] ], + "iframe-display-none-with-object.html": [ + "ee739532173a1ce2755364e8781b302e6e3f9756", + [ + null, + {} + ] + ], "iframe-first-load-canceled-second-load-blank.html": [ "bed3b6477f5889ece11524b57969921313e5fcb0", [ @@ -500665,15 +508919,22 @@ {} ] ], + "image-loading-lazy-available.html": [ + "1e58c43c86d2b8704b15bc5e9081318b9ccaa738", + [ + null, + {} + ] + ], "image-loading-lazy-base-url-2.html": [ - "7b96823a9451b16c7e8500862b1b6086d2f03401", + "e3a4a5f96ee416bb2bae2e77f7728ec3c33a71bb", [ null, {} ] ], "image-loading-lazy-base-url.html": [ - "90a8a43e344afd1b492ab15455ade4fe7f82a5b0", + "01ce961d0f577789d84cd51e0cbfd6506beb4233", [ null, {} @@ -500736,14 +508997,14 @@ ] ], "image-loading-lazy-multicol.html": [ - "e906681932dbe616eb58e2f889878b2f2fdfaa4e", + "20d52d4dfa09eacfeb51093fad50c3109afdc5a4", [ null, {} ] ], "image-loading-lazy-multiple-times.html": [ - "7c20a3831ff081004c52f58d21834acc666c07fe", + "69dcb3e22557fa541e93f79cb2eac9eca548fdd9", [ null, {} @@ -500764,7 +509025,7 @@ ] ], "image-loading-lazy-srcset.html": [ - "21c11c7233c7b8f845a31b6aa25dda14ca381960", + "953d4af4ef5f08ef774c7b4b49c3bcff7afbad78", [ null, {} @@ -500778,7 +509039,14 @@ ] ], "image-loading-lazy.html": [ - "35f25f8a15455ec3e504c67f343112c088aee872", + "88f6549d967509face13bf629553e8fd2935be85", + [ + null, + {} + ] + ], + "img-picture-ancestor.html": [ + "3518cab54dd11799cd2679dde8cea4ac719babfb", [ null, {} @@ -500841,7 +509109,7 @@ ] ], "not-rendered-below-viewport-image-loading-lazy.html": [ - "1a84d1de305613c59dbb3566eb98ce5cf612f3bc", + "401771565a685c649b8815f8784ebf3eec89cb98", [ null, {} @@ -500928,6 +509196,13 @@ ] ] }, + "source-media-outside-doc.html": [ + "5997e14e4bcf230ae2d3e048f0a6dddc0b02f8fa", + [ + null, + {} + ] + ], "srcset": { "avoid-reload-on-resize.html": [ "52366dcaa7f7638b27adabe1b1007c5baca98580", @@ -501048,6 +509323,13 @@ {} ] ], + "object-in-display-none-load-event.html": [ + "c8369365af0bb241ff66db733bf75440781996b9", + [ + null, + {} + ] + ], "object-in-object-fallback-2.html": [ "47cf8016935d22a1ad92734bf0a2db21ace4a81c", [ @@ -501348,7 +509630,7 @@ ] ], "constructing-form-data-set.html": [ - "b27f1996d99cb816ffd28e1fc030937df94e8244", + "a6c5e91554d28f1157f63cf486b3c0d747f75acf", [ null, {} @@ -501461,8 +509743,22 @@ {} ] ], + "multipart-formdata.window.js": [ + "f26c0723dba4bff046f54d9b0214c75f59d032e9", + [ + "html/semantics/forms/form-submission-0/multipart-formdata.window.html", + { + "script_metadata": [ + [ + "script", + "enctypes-helper.js" + ] + ] + } + ] + ], "newline-normalization.html": [ - "b49468e19991e9309282e3068efff859d1c66751", + "2c83c5a1e9a07c02f4443bfd96b0a15411a5f288", [ null, {} @@ -501475,6 +509771,13 @@ {} ] ], + "request-submit-activation.html": [ + "0d1e54daf363296a8555d6079eb1959edeb472d9", + [ + null, + {} + ] + ], "submission-checks.window.js": [ "e242ce830a618cb1bff17c80a6c6559250c1a16d", [ @@ -501492,18 +509795,46 @@ ] ], "submit-file.sub.html": [ - "1cf939cdaa9768caeabb359b2a277e544c8e489d", + "aab60ba9491b9d28d32d2f51e991e299be9e7796", [ null, {} ] ], + "text-plain.window.js": [ + "54bca9e169c0623827fc0e0760eea7f1e5afdd7c", + [ + "html/semantics/forms/form-submission-0/text-plain.window.html", + { + "script_metadata": [ + [ + "script", + "enctypes-helper.js" + ] + ] + } + ] + ], "url-encoded.html": [ "d05364387e62dfedc857628af833c3558ee3d1db", [ null, {} ] + ], + "urlencoded2.window.js": [ + "df86abb093dc569b1c6d8eac3bff1533837810fe", + [ + "html/semantics/forms/form-submission-0/urlencoded2.window.html", + { + "script_metadata": [ + [ + "script", + "enctypes-helper.js" + ] + ] + } + ] ] }, "form-submission-target": { @@ -501681,7 +510012,7 @@ ] ], "textfieldselection-setRangeText.html": [ - "a5918201b314dc9198dc6ae0d46b1f065778fda5", + "b435fe78813333df2b791045db220935d0e03cc2", [ null, {} @@ -501696,6 +510027,15 @@ ] }, "the-button-element": { + "button-activate-keyup-prevented.html": [ + "29ffbbdd995cb7cebe4043adcceed26559242b64", + [ + null, + { + "testdriver": true + } + ] + ], "button-activate.html": [ "43fe96d39800fe69b6e41155fa6e2efa20c1daa3", [ @@ -501990,7 +510330,7 @@ ] ], "form-requestsubmit.html": [ - "65f4b2187dc78ebeb7f1307b5b8c5580e3fcc390", + "cbc46cc7d3829822dbc7df6fc0c0fa758062c38a", [ null, {} @@ -502367,6 +510707,13 @@ {} ] ], + "radio-morphed.html": [ + "b7b8658948d13e403742ae90a62f7f5744eae809", + [ + null, + {} + ] + ], "radio.html": [ "7f183f8367db079cd3b8e6b7a0dc741e874c4d0f", [ @@ -502676,7 +511023,7 @@ ] ], "output.html": [ - "7682703fa8c705d71e4dd3b55b7826c29ded2b8a", + "7ae00ec7e02387b02f0cd3e62c4c2cfc419d8c29", [ null, {} @@ -502816,8 +511163,17 @@ } ] ], + "selectmenu-popup-position.tentative.html": [ + "b0a6a0cb6cf79fffabdd50551cc18b51f7c04657", + [ + null, + { + "testdriver": true + } + ] + ], "selectmenu-popup.tentative.html": [ - "79db3864586f7aa35a4374a6d251f7179eef603d", + "7b085cdf34a69e72e7a81a58bdc3cdc3a9a906d0", [ null, { @@ -502903,6 +511259,13 @@ null, {} ] + ], + "wrapping-transformation.window.js": [ + "c5c28a4854bb0690831f2be3a12de5cfad4c909f", + [ + "html/semantics/forms/the-textarea-element/wrapping-transformation.window.html", + {} + ] ] } }, @@ -503112,7 +511475,7 @@ ] ], "dialog-form-submission.html": [ - "73c9ee95bc5619cb1debf33e70ba9820f2780692", + "344f5f1d831f68e2f6dc4e764227c5462224b9de", [ null, { @@ -503148,6 +511511,15 @@ {} ] ], + "focus-after-close.html": [ + "4595961fb067f523b7fbba33e78ba9542ab7e971", + [ + null, + { + "testdriver": true + } + ] + ], "inert-does-not-match-disabled-selector.html": [ "b3b0c0a929732da1658487173bf096cc8884c9a7", [ @@ -503178,8 +511550,15 @@ ] }, "the-popup-element": { + "popup-anchor-element.tentative.html": [ + "e1c890abfc820260a8825b122374bdabc786ebaf", + [ + null, + {} + ] + ], "popup-anchor-nesting.tentative.html": [ - "8c37512480a17190c9ad5e6b1c778c9bd5758a11", + "64b8fc694c73c5963f218b087a1dbcbea86e0274", [ null, { @@ -503188,21 +511567,53 @@ ] ], "popup-element-basic.tentative.html": [ - "9909b2f0bbfa3c19c34fa6c10d7518e21d08950f", + "0b1d99099e586fd4b4bce2794b2a1073f0c02939", + [ + null, + {} + ] + ], + "popup-element-not-keyboard-focusable.tentative.html": [ + "a8a8b60b3877dbcec5eff43b69be9d0bdf3d9277", + [ + null, + { + "testdriver": true + } + ] + ], + "popup-focus.tentative.html": [ + "bb8d679a35b3f1b04e7d0e5648548137b1ff5403", + [ + null, + {} + ] + ], + "popup-initiallyopen.tentative.html": [ + "ac3e845b7ba86c883d66a0aafa4987729447539c", [ null, {} ] ], + "popup-invoking-attribute.tentative.html": [ + "1ff60fd7f9b3ad3d17fa0ef1741a9faeeef4ca27", + [ + null, + { + "testdriver": true + } + ] + ], "popup-light-dismiss-on-scroll.tentative.html": [ - "28dd4f4d187320c049f2dc7528484b981af80d5a", + "4f14dd7ae774b38e3677019d9bdea4c28a3d34e8", [ null, {} ] ], "popup-light-dismiss.tentative.html": [ - "613b659679d90297f1d43c2aa72431ebe7f8b146", + "649b594c2efb45e5c875008169fbad86d4cb8fe9", [ null, { @@ -503211,14 +511622,14 @@ ] ], "popup-shadow-dom.tentative.html": [ - "386d0ca7643d3f0206001d3283ed688dc4ec72b5", + "99a6523dab330ef8155aa93a30a62a0448746d2b", [ null, {} ] ], "popup-stacking.tentative.html": [ - "4fccaa7c69a4358c88acc33bb5102b26a4695837", + "88e935056316d1eca5f92b33edf63caa6d3d2165", [ null, {} @@ -503446,7 +511857,7 @@ } }, "rellist-feature-detection.html": [ - "45debcc49a487d43437b04e6e8a429f7db321db1", + "6866de19068fdfb62e957038cb64f954a025f4c8", [ null, {} @@ -503496,7 +511907,7 @@ ] ], "async_005.htm": [ - "7d79657bf7b3ac6b2026cd24f35dcba986f1ab78", + "03f9adeb67e5f1150b16f78f5840e72eb61add06", [ null, { @@ -503553,6 +511964,41 @@ ] ], "css-module": { + "charset-2.html": [ + "535099b24a67283d6d73e12f543f8637a458adbc", + [ + null, + {} + ] + ], + "charset.html": [ + "8b72481814b1f320dfb56d5299d1988455d32b44", + [ + null, + {} + ] + ], + "content-type-checking.html": [ + "105c53c40d9680ace20d47e765f2080e648c97d0", + [ + null, + {} + ] + ], + "cors-crossorigin-requests.html": [ + "e699ef927ec39e28e1a4d794187032737b373de5", + [ + null, + {} + ] + ], + "credentials.sub.html": [ + "0da573dad2b84b74fb2dc6647a11bed474605e38", + [ + null, + {} + ] + ], "css-module-worker-test.html": [ "1618f40eb6119c6b9c20047d0463daa2ef27d0f0", [ @@ -503561,21 +512007,42 @@ ] ], "import-css-module-basic.html": [ - "207d553c69e2016770171a1e572ec724cd835561", + "c2235be9603de1988937e3c8196755d406091a15", [ null, {} ] ], "import-css-module-dynamic.html": [ - "4fbc11180fa0925f1e397bd42e78ab22ae177b29", + "13967858cb35d29233d9a46d8114c15d84ec8d25", + [ + null, + {} + ] + ], + "integrity.html": [ + "1dd0dad470a319d1fe11e74e997441a7b6e6d0d8", + [ + null, + {} + ] + ], + "load-error-events.html": [ + "3457452c93654e4e0187cb4cbaf0f547802ba03d", + [ + null, + {} + ] + ], + "referrer-policies.sub.html": [ + "efa5340715f3446484ef99519795d499e19fe0c7", [ null, {} ] ], - "utf8.tentative.html": [ - "6adcd716328b11bf29539f24c763dbeecff33d5e", + "script-element-css-src.html": [ + "231d02db477bde9e33a570e9aa8670b322acf634", [ null, {} @@ -503992,7 +512459,7 @@ ] ], "050.html": [ - "143fc917e099c0b000c76b9fa98a096524196491", + "a400749f18e4f83803ee325d45611c0c3ad48a17", [ null, { @@ -504885,6 +513352,41 @@ ] }, "json-module": { + "charset-2.html": [ + "1bfd3fc00ae94c77df11c8b5f6a37a8a718d94bf", + [ + null, + {} + ] + ], + "charset.html": [ + "de30de8c2e5d4100d39725f8f2d3fe1a94a4fb03", + [ + null, + {} + ] + ], + "cors-crossorigin-requests.html": [ + "99ff2f67e805de2eb1c552740f841eb72a8a84b1", + [ + null, + {} + ] + ], + "credentials.sub.html": [ + "a6df506e214ddc23581231d6a2b9114d62e33f77", + [ + null, + {} + ] + ], + "integrity.html": [ + "68a794b973359132e8e803bd75f115ffb872d3b5", + [ + null, + {} + ] + ], "invalid-content-type.tentative.any.js": [ "cbccbd48429bf608fa9dd9eaac0f1fe4a38ddcbb", [ @@ -504928,6 +513430,13 @@ {} ] ], + "load-error-events.html": [ + "a9dfc1e6917830eb67761d34edb86cf15ca4ae64", + [ + null, + {} + ] + ], "module.tentative.html": [ "a495d4ac186260b6705c56b75d2b1ff1de7722a1", [ @@ -504978,6 +513487,13 @@ {} ] ], + "referrer-policies.sub.html": [ + "83e103529dcb95202616fdf1fe7bc51bc67f8463", + [ + null, + {} + ] + ], "repeated-imports.any.js": [ "5cc3ee5b7c4c9fd98ad394a6571172fea9ad506d", [ @@ -505033,15 +513549,8 @@ {} ] ], - "utf8.tentative.html": [ - "24a6f109e1c586fac8a00d0f2896e91ad8b5acfd", - [ - null, - {} - ] - ], "valid-content-type.tentative.html": [ - "ff5953cb700ef360f45eb309f0e93fdabcb8e854", + "75d6b756a40eb1db6910fbb954199cdeb5eeabbb", [ null, {} @@ -506776,6 +515285,15 @@ {} ] ], + "invalid-after-clone.html": [ + "92345602a84d0aa210a1277df446293b35cfecb5", + [ + null, + { + "testdriver": true + } + ] + ], "link.html": [ "e9733eca70afd256f71c19dffb152710d2a931cf", [ @@ -507370,7 +515888,7 @@ ] ], "html5lib_innerHTML_foreign-fragment.html": [ - "f5bc58d5656a1027174142c9ff17bd2a7ae15364", + "aae790941409103ab33e57764f94d222f35e3e95", [ null, { @@ -508455,14 +516973,14 @@ }, "clearing-the-stack-back-to-a-given-context": { "clearing-stack-back-to-a-table-body-context.html": [ - "2e7d5408214c057cf75f2d2080e71b8cbd35c5b7", + "4d45fa55520c990bfb085a880ed5e576c5a28919", [ null, {} ] ], "clearing-stack-back-to-a-table-context.html": [ - "b805d3c9f9921bc4e0e92c035ca066df8f27c6d2", + "135540a5cbe5f8da1918a2eb0cb64fe0637f5b71", [ null, {} @@ -508641,6 +517159,31 @@ {} ] ] + }, + "xmldecl": { + "xmldecl-1.html": [ + "40ebb932e4ba0298d58e3e4f64c71f14a3e18adc", + [ + null, + {} + ] + ], + "xmldecl-2.html": [ + "6cb07afbb0911161d9de628efd5e6a4b44237e78", + [ + null, + {} + ] + ], + "xmldecl-3.html": [ + "a9f179de4e58c90631adc993fb4d0f0aa64a7493", + [ + null, + { + "timeout": "long" + } + ] + ] } }, "the-xhtml-syntax": { @@ -509324,6 +517867,13 @@ {} ] ], + "during-readystatechange.window.js": [ + "49d5051c2564c257f916c00d2d73864d129b0a77", + [ + "html/webappapis/dynamic-markup-insertion/document-write/during-readystatechange.window.html", + {} + ] + ], "iframe_001.html": [ "8b54560c6ce5094dd45d661d1a9c3f73db016c7b", [ @@ -509913,6 +518463,13 @@ {} ] ], + "remove-initial-about-blankness.window.js": [ + "7442bc49256bf8e77dae13231d9a6ce76707a42c", + [ + "html/webappapis/dynamic-markup-insertion/opening-the-input-stream/remove-initial-about-blankness.window.html", + {} + ] + ], "tasks.window.js": [ "887adcb7393ee3bf3acfcba1a6a7d820f0ebb6ff", [ @@ -510758,13 +519315,6 @@ {} ] ], - "navigator-pluginarray.html": [ - "cc7664f1a4156bb2727c0954e5baf20544cb3212", - [ - null, - {} - ] - ], "navigator-window-controls-overlay.html": [ "0f7230e09db8a8bcf12bae546b5505721c01c17f", [ @@ -510812,7 +519362,7 @@ ] ], "protocol.https.html": [ - "bb27ed704f5777ab7358a31d6839269b4a2e346d", + "cc16260d702e9ebace9e8cb44f072b2c26043265", [ null, {} @@ -511167,29 +519717,29 @@ {} ] ], - "tranferFromImageBitmap-ToBlob-offscreen.html": [ + "transferFromImageBitmap-ToBlob-offscreen.html": [ "81d0c900650ea3b489549b7977cd9922a35bcca6", [ null, {} ] ], - "tranferFromImageBitmap-TransferToImageBitmap-offscreen.html": [ - "7e04da63ddb1f1132c53ab49e6bda713ace55ea1", + "transferFromImageBitmap-ToBlob-transferControlToOffscreen.html": [ + "e833b63fe4be40770d0213593fdebb3f58928eb7", [ null, {} ] ], - "tranferFromImageBitmap-null-offscreen.html": [ - "e05a623a2fe1d1e290391ca4688285b14b9537b5", + "transferFromImageBitmap-TransferToImageBitmap-offscreen.html": [ + "7e04da63ddb1f1132c53ab49e6bda713ace55ea1", [ null, {} ] ], - "tranferFromImageBitmap-null.html": [ - "19d2f17ed3aff43da03836b8a62272e20bf12e55", + "transferFromImageBitmap-TransferToImageBitmap-transferControlToOffscreen.html": [ + "f1c95fa84e99974f6db8dad109185f3485e03fc1", [ null, {} @@ -511201,6 +519751,20 @@ null, {} ] + ], + "transferFromImageBitmap-null-offscreen.html": [ + "e05a623a2fe1d1e290391ca4688285b14b9537b5", + [ + null, + {} + ] + ], + "transferFromImageBitmap-null.html": [ + "ad7af401d7e1b764a94407b8c27d615a3f12f206", + [ + null, + {} + ] ] }, "import-maps": { @@ -511411,7 +519975,7 @@ ] ], "inert-node-is-unselectable.tentative.html": [ - "7d5e90821bb0bd0d83711685853c78ff9fee6c4f", + "b99af0d4cd142dcb051af51f42d1759142a00c5e", [ null, {} @@ -511556,14 +520120,25 @@ }, "server": { "context.any.js": [ - "8ee168b7653108f34cfb0dc94fe569df0f9ad6be", + "11ab76d87432a40af18663fa91f3767cd9cda142", [ "infrastructure/server/context.any.html", { "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" + ] + ] + } + ], + [ + "infrastructure/server/context.any.serviceworker-module.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" ] ] } @@ -511574,7 +520149,18 @@ "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" + ] + ] + } + ], + [ + "infrastructure/server/context.any.sharedworker-module.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" ] ] } @@ -511585,7 +520171,18 @@ "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" + ] + ] + } + ], + [ + "infrastructure/server/context.any.worker-module.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" ] ] } @@ -511596,7 +520193,7 @@ "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker,sharedworker,serviceworker,dedicatedworker-module,sharedworker-module,serviceworker-module" ] ] } @@ -512075,7 +520672,7 @@ ] ], "touchPointerEventProperties.html": [ - "b636dfde7970fa33a1392c62e0bfed36006f79f4", + "085889949e8c195ff511541da1ef01738be33118", [ null, { @@ -512166,7 +520763,7 @@ ] ], "delete_all_cookies.html": [ - "14b7d5861b7f60ae329d99b29dbbe12a25cc8c0b", + "8d7b82ab04d968a3fad3b7796a2d5c341c06c91c", [ null, { @@ -513142,7 +521739,7 @@ ] ], "Object.prototype.freeze.html": [ - "028aa1ecd5473a2387ddd7a92b48ad98ba8f3d8b", + "1e5ed418a97bea1dd66c846ae1b6b292a6191a3e", [ null, {} @@ -513163,21 +521760,21 @@ ] ], "Object.prototype.hasOwnProperty-prototype-chain.html": [ - "e64d0b7163283d6e26a24c7812f10f39af9f7a5b", + "7c02257fbc4703841107312c9588b154a6cb3603", [ null, {} ] ], "Object.prototype.preventExtensions.html": [ - "41ce2b9a2e9e0e8a4c95a97e4d52204d64f50f9a", + "ceea7b3dd1c50fb74bd9312f82870deb10e8b05e", [ null, {} ] ], "Object.prototype.seal.html": [ - "ae371dd664a04a275449a0be9a1ad6e2e583ca87", + "ad84d8c2186a8a7de6879281a349c35457c93510", [ null, {} @@ -513280,6 +521877,20 @@ } ] ], + "finalizationregistry-cleanupCallback-throws-onerror-interaction.optional.window.js": [ + "c2c64769d55e6903c40466aac1fadf8dc32c5ad4", + [ + "js/builtins/weakrefs/finalizationregistry-cleanupCallback-throws-onerror-interaction.optional.window.html", + { + "script_metadata": [ + [ + "script", + "resources/maybe-garbage-collect.js" + ] + ] + } + ] + ], "gc-has-one-chance-to-call-cleanupCallback-queueMicrotask.optional.any.js": [ "c9a7e9bc55e7909d4b7a7606dd12d98c03a9f2d2", [ @@ -513525,7 +522136,7 @@ }, "keyboard-map": { "idlharness.https.window.js": [ - "18421368f347cba955a46994e05fd3d49f0daa13", + "b14734db9005da31f96d99af82773a9690195b43", [ "keyboard-map/idlharness.https.window.html", { @@ -513790,7 +522401,7 @@ ] ], "toJSON.html": [ - "36e2a7fdfa27371b9295059525430e853029eef5", + "5ea84eeb2b186a9256f2a51d0bdd59dd00463d86", [ null, {} @@ -514019,6 +522630,15 @@ {} ] ], + "mousemove-becomes-drag.html": [ + "df4a416c81cd0ebaccfe2b0a041ca88ef34dc4e4", + [ + null, + { + "testdriver": true + } + ] + ], "move-distance-clamped.html": [ "5854fe08d156f52260fb9eeb8980d31a3ae91077", [ @@ -514093,6 +522713,15 @@ } ] ], + "pointermove-becomes-drag.html": [ + "0f42be0a47499481af1f459aba51175cd39e9290", + [ + null, + { + "testdriver": true + } + ] + ], "recent-input.html": [ "2779d4ffe0ceb727aa044e55f22d00c81144ce35", [ @@ -514151,6 +522780,13 @@ {} ] ], + "shift-scroll-anchoring-natural-scroll.html": [ + "1b146b05d738fa9e7270bf26710fc36131ca66a9", + [ + null, + {} + ] + ], "shift-while-scrolled.html": [ "822aa94cff267e75fcfef5847d1cc8d1c32c9076", [ @@ -514627,6 +523263,33 @@ ] ] }, + "managed": { + "managed-config-error.https.window.js": [ + "ab58fba5df9d2d3d6d4092d959bf78c145acd4fc", + [ + "managed/managed-config-error.https.window.html", + {} + ] + ], + "managed-config-success.https.window.js": [ + "ef9ad81a15c5879b6faec1438bfcd5d553a82b04", + [ + "managed/managed-config-success.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/managed-configuration-helper.js" + ] + ] + } + ] + ] + }, "mathml": { "presentation-markup": { "direction": { @@ -514640,35 +523303,35 @@ }, "fractions": { "frac-1.html": [ - "d1ac170597e4881bf6657e01992e891fb50c56b8", + "44011208c90f73379eac59a419f05a1a891555c4", [ null, {} ] ], "frac-linethickness-002.html": [ - "dd3666be41413eb3da50639a828594af3e1517bc", + "30cbf82cb851bb017aa27006f0da7ce32459ad4d", [ null, {} ] ], "frac-parameters-1.html": [ - "57b35fdeb0750d27d1f8b26a1da6d9b57ac95005", + "75ab53437548f2b1a3445940e618a74261f7d615", [ null, {} ] ], "frac-parameters-2.html": [ - "b913a34b99043580083c2782d5ab35dc3a459aad", + "e5209e44091ae2c4e74a8371d0f068b9d276130e", [ null, {} ] ], "frac-parameters-3.html": [ - "971dcbeef5b7600e6fe544c347752658ecff544f", + "9df9f8d571bd5199c6b6a883d7b2b6c7d508ec66", [ null, {} @@ -514714,7 +523377,7 @@ ] ], "inferred-mrow-stretchy.html": [ - "3182fba0eaf48ddc6734796f630884d890bd9af7", + "1bd78f1e9414f3cfa67eadedbbc93ff8f08e4908", [ null, {} @@ -514749,14 +523412,14 @@ ] ], "no-spacing.html": [ - "c4e59cc86122fe7229bb058c3e07629809d40bf5", + "0d830c98ca8463303ce4d6603cbf8d8f028f0d46", [ null, {} ] ], "spacing.html": [ - "0ff7bae5b00fd71679276c105b68363875831d17", + "0bb1175f88982958ff97336d6e8f6a0b489203d8", [ null, {} @@ -514786,35 +523449,35 @@ ] ], "largeop-hit-testing.html": [ - "4f6a7782f2797294b6f4ea3739df399312838101", + "2b81eb692a1943ebd8b0e742f5f8ca7d8cafc46b", [ null, {} ] ], "mo-axis-height-1.html": [ - "3b28d976f0cf999fe4fd1f684696823eaff47749", + "9a8e6ce0b899a2620eb907a09a265fa24ea7473b", [ null, {} ] ], "mo-font-relative-lengths-001.html": [ - "b18d7dbfbe2ede218189d75f67138c8d924bdd88", + "e5666155a42eb509c34c935d0d044b5a8918564c", [ null, {} ] ], "mo-minsize-maxsize-001.html": [ - "a6dd58b9c116505bc753ad25309943d8803541bb", + "97e5d34737790022d0f3f335c5a021400fbd36c6", [ null, {} ] ], "mo-stretch-properties-dynamic-001.html": [ - "daefd1f2b8ace97d0a8be92a44fa7408d787c980", + "e99ec58988a9eed0c461a83c5d582a02d2a92702", [ null, {} @@ -514828,7 +523491,7 @@ ] ], "operator-dictionary-largeop-001.html": [ - "927c408ba186d23dd7df8d5b978ed852a19f694b", + "57f75ddb0acc11b9297d72319dae0abc8cb20491", [ null, { @@ -514837,7 +523500,7 @@ ] ], "operator-dictionary-largeop-002.html": [ - "64070a4f3c6cb92a22ad8019b1962eb83b54fbd8", + "8b1a200768ddb340b048f0a0dbb568ede75caf82", [ null, { @@ -514846,7 +523509,7 @@ ] ], "operator-dictionary-largeop-003.html": [ - "1f08deb5253956cb1dc09149d532aef6bad38ce5", + "a9b27e4cfa1522d87c78e55f472b3c5f0c44ecf8", [ null, { @@ -514855,7 +523518,7 @@ ] ], "operator-dictionary-largeop-004.html": [ - "ed345685d4c34bd7254bd5d0b9c06cda304e2fbe", + "dc6826aaf6b6ab226850ee5bcf71daffd58e18de", [ null, { @@ -514864,7 +523527,7 @@ ] ], "operator-dictionary-largeop-005.html": [ - "39c2d98adf8d2fb817079b101c649308ed2350e2", + "87901a75179ca7b6207e6e81d17c8fd51abad82c", [ null, { @@ -514873,7 +523536,7 @@ ] ], "operator-dictionary-largeop-006.html": [ - "7e6d2b52afc00469e94536c97ec822fcff0bea24", + "19d2a49cf8b4ff211a57ba890e65b5f4fdab55f5", [ null, { @@ -514882,7 +523545,7 @@ ] ], "operator-dictionary-movablelimits-001.html": [ - "78d50ccad6d4721efb8f9fdb5eac071d14ae0469", + "baca2c8712315d031b6dd53431ec205adc92edc8", [ null, { @@ -514891,7 +523554,7 @@ ] ], "operator-dictionary-movablelimits-002.html": [ - "4dfe851827022c945a1643ed31a71dad2787588b", + "a208b9cbf55e836755a56408b9642abf660a1a88", [ null, { @@ -514900,7 +523563,7 @@ ] ], "operator-dictionary-movablelimits-003.html": [ - "e0bff2173ef3e781b10ea541b27ce60254e11f26", + "ef9336c1ab257266d58a13f6b85f952ff3a4ae0c", [ null, { @@ -514909,7 +523572,7 @@ ] ], "operator-dictionary-movablelimits-004.html": [ - "6b2cec4a553b0b67fd895df38ab1f54f8cb1a731", + "56504eb8784f53fd7c6f5beb6c180bc17739cfa5", [ null, { @@ -514918,7 +523581,7 @@ ] ], "operator-dictionary-movablelimits-005.html": [ - "7c5d7890b402febbc3b6be7affecbc36f5a4aa9f", + "6608403060640d9b016b120d23a3c2e37aab2470", [ null, { @@ -514927,7 +523590,7 @@ ] ], "operator-dictionary-movablelimits-006.html": [ - "f369844677c9fd010f48e0d200542efc49b9bba2", + "51b9265d007fdf0d71786b49bed0b06fed0c2d12", [ null, { @@ -514936,7 +523599,7 @@ ] ], "operator-dictionary-spacing-001.html": [ - "0bb863de0363aef11667ac1e3b3fd14689cf0ea5", + "03836b2f43c87de119f12d8c09ca5c40003d0b7d", [ null, { @@ -514945,7 +523608,7 @@ ] ], "operator-dictionary-spacing-002.html": [ - "3381521341a1e0c1190941dc1f560b80dac51ede", + "075dfc01af5ba7eeae56886fac2d72847e9f6821", [ null, { @@ -514954,7 +523617,7 @@ ] ], "operator-dictionary-spacing-003.html": [ - "719367b7002aefa8712cab1848e011b5f432476e", + "5847b3af890d07fb35a2fe73127d6a3c742f86d1", [ null, { @@ -514963,7 +523626,7 @@ ] ], "operator-dictionary-spacing-004.html": [ - "a566f3fe25881bd1149b8d2f4417bcbee96e5cbf", + "f40a24f6ac3e6bf0e0e888fdc4d4fbc672e5686a", [ null, { @@ -514972,7 +523635,7 @@ ] ], "operator-dictionary-spacing-005.html": [ - "f59dcffd7cbd38d3ba6bcd99d61b25df03c4ed75", + "33388945f8b81a4ef36bb9ea980249f7ec615832", [ null, { @@ -514981,7 +523644,7 @@ ] ], "operator-dictionary-spacing-006.html": [ - "17b8859874a56ee160714656aac423c9c22a6883", + "f7285e9e0ba4102f911b02951a769e7b2fd98867", [ null, { @@ -514990,7 +523653,7 @@ ] ], "operator-dictionary-stretchy-001.html": [ - "33ef2abd15b6aa2869f8f10d094022847b2b98c4", + "cc46693c10c152c185291bd63e1b3782863840c8", [ null, { @@ -514999,7 +523662,7 @@ ] ], "operator-dictionary-stretchy-002.html": [ - "875374f9166bbb5b10b7b489f7b96260b46689aa", + "0b70326b60d59a107652c5e784dda535017349ca", [ null, { @@ -515008,7 +523671,7 @@ ] ], "operator-dictionary-stretchy-003.html": [ - "ce2708b2f17b8d0f8947d86b88bf79d9c03e0b80", + "fc83aca9c1d42757262c58d4187cb275561c95cd", [ null, { @@ -515017,7 +523680,7 @@ ] ], "operator-dictionary-stretchy-004.html": [ - "dbc96cae9885d2b2cf0eff425ad84cf796bc858a", + "7d4059931ab822d4d8bb7aa06b19351620284734", [ null, { @@ -515026,7 +523689,7 @@ ] ], "operator-dictionary-stretchy-005.html": [ - "7d9cb32143e562f20553e72a194147efe6dc4557", + "f99191eb94b67cec2c134662669a14ab77b31dee", [ null, { @@ -515035,7 +523698,7 @@ ] ], "operator-dictionary-stretchy-006.html": [ - "49e26c571c3c4c4e6c0aeb36ecfc881d184a7851", + "c75aef1e4e59cc5e4dd9b19523bed0fc9c4624fc", [ null, { @@ -515044,7 +523707,7 @@ ] ], "operator-dictionary-symmetric-001.html": [ - "426f045848b6f61c1066938359a32cf92fb35492", + "aa89b35922686524fea746429732c5efc1437946", [ null, { @@ -515053,7 +523716,7 @@ ] ], "operator-dictionary-symmetric-002.html": [ - "9d28fe2d91824370bd2e0018c1a60f4e4c56d2b0", + "c6df63da294d54f0c22e64c4f55d033dd24338b2", [ null, { @@ -515062,7 +523725,7 @@ ] ], "operator-dictionary-symmetric-003.html": [ - "bec9d0deb2c10c1e41ea88a35be448407618956e", + "d215f8317aae12c44bb9063124f52f93e376f84f", [ null, { @@ -515071,7 +523734,7 @@ ] ], "operator-dictionary-symmetric-004.html": [ - "3d011fce11ec8958a35b6e939462bece24395346", + "cbf8de0741f648fc1015a156911e7f969f01a99c", [ null, { @@ -515080,7 +523743,7 @@ ] ], "operator-dictionary-symmetric-005.html": [ - "12faf7544ff3120de0582242244b39bb072a0b45", + "9f335c0cb3f09435a7816929edf6a18b1ab0dbfd", [ null, { @@ -515089,7 +523752,7 @@ ] ], "operator-dictionary-symmetric-006.html": [ - "2bf982bdb0760c9bbb3e0ce9475b517343d3fd82", + "5b7a91ae09260896190a109aa47d806acfd81958", [ null, { @@ -515100,14 +523763,14 @@ }, "radicals": { "root-parameters-1.html": [ - "064336216805bf82528247d5ef888b84c97572db", + "e584801a32eecd5ac6203847db01a41e92a19b7b", [ null, {} ] ], "root-parameters-2.html": [ - "c5f10b7babf5862d6b7e33207091d320cae2bb1e", + "63f4e3c7cdcecbd75e0c2683eeaf0a36b4065f7e", [ null, {} @@ -515116,35 +523779,35 @@ }, "scripts": { "cramped-001.html": [ - "06a0d5fa5ca31de320303aefd696231a2664aae2", + "9b1e1a7e6e693825209aefe90ecc8eaa574561f1", [ null, {} ] ], "empty-underover.html": [ - "054e8ee06ed3ba3f9a25c9b4fac227279759961b", + "ce66af39b15cf92fd5fc49ccb366711b669e4ec0", [ null, {} ] ], "subsup-1.html": [ - "1c3b04dd4169de3c7a01d8e107bc6cea767b36f0", + "092f2285423320fb237e065b791ab3c82c4ed77d", [ null, {} ] ], "subsup-2.html": [ - "d6a48b94f128be2869adb1dfadd24942662d6f71", + "bb45d2ce4bb141887b3287b055da2a28a1cb1834", [ null, {} ] ], "subsup-3.html": [ - "37815cba78ccd589f222a4300844ac9b2822e05d", + "ed7e1606b48af84bd118499fc0bebc587e4d1306", [ null, {} @@ -515165,49 +523828,49 @@ ] ], "subsup-parameters-1.html": [ - "0c6610cc18fe6f71523f6c2209b8f02328ffa634", + "b6cc3d0a89538f548aea49dad2f688b8bb608763", [ null, {} ] ], "subsup-parameters-2.html": [ - "021512f940f97b7d8071b754ec2775a2c9c9868f", + "e88f6b8044df77c7f6f9b2e9170c02cc72863dc9", [ null, {} ] ], "underover-1.html": [ - "ef5fa1e949bafb87e674ce20be8cf5d498bf18d3", + "1f8171221a9f3138adbff05c6f5ec67ba699eab5", [ null, {} ] ], "underover-parameters-1.html": [ - "9217488a561735c75798e2c05197f5a84b233237", + "a732b042a2a67e8322a0048601eed5df7428294d", [ null, {} ] ], "underover-parameters-2.html": [ - "6f9aa4763a9b1a902224bb7e7902eceb80cada45", + "57bcc04ed9175b1c707698cab57ace4de4e7a723", [ null, {} ] ], "underover-parameters-3.html": [ - "80ca630a080b6cd8f50a0752535b9b67ec93ee89", + "3289502889f624be7050e3d01752b135d9beed3f", [ null, {} ] ], "underover-parameters-4.tentative.html": [ - "f7c968dd34300becc9ae1311d8aadc6919eb746c", + "efa95e3abc7434e7321faa8744b34c79851cabf1", [ null, {} @@ -515274,7 +523937,7 @@ ] ], "table-axis-height.html": [ - "f9354266a7c6c42a75519e9771eb2c61536ad8e5", + "59a96ed4157212c91f9eee88b2339f12c4c25109", [ null, {} @@ -515327,21 +523990,21 @@ ] ], "displaystyle-1.html": [ - "19494a3e17a0bd822a87ffa1cd105a48c85f7e58", + "64682f2113ddd9de039401e1371ab482f2bcfca6", [ null, {} ] ], "displaystyle-2.html": [ - "e544f4534dd31463e6d0c3374aff1498991a5b46", + "a048c0e5101502841914440089013b5645c30136", [ null, {} ] ], "displaystyle-3.html": [ - "544590cf9e10c623739e2c5a49cd60f5a3ed7477", + "0512cb0cdd0f179714610d2c76c4adce2fc26c35", [ null, {} @@ -515355,7 +524018,7 @@ ] ], "lengths-2.html": [ - "90b0887d03137e454b9d2e871de722594155b9b1", + "ceccedfba90f13d4757fee519e410fb9de6fe6f6", [ null, {} @@ -515573,7 +524236,7 @@ }, "measure-memory": { "detached.https.window.js": [ - "430cb2dbb701bd88683782169840cab41fbbd733", + "1fcedef54c787bbcab39508a8c266a8bfa439227", [ "measure-memory/detached.https.window.html", { @@ -515582,6 +524245,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515618,7 +524285,7 @@ ] ], "iframe.cross-origin.https.window.js": [ - "d977c3a84ee950915e41ce576e86359a3eb7cb63", + "de256ad83f83b486931bddc6931462f980b7ae51", [ "measure-memory/iframe.cross-origin.https.window.html", { @@ -515627,6 +524294,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515641,7 +524312,7 @@ ] ], "iframe.cross-site.https.window.js": [ - "919bc3e215a62fa1c03aca3d5142ae00431a5b8d", + "a4c50a5687e4bc75c6e127874a56668e8354a19b", [ "measure-memory/iframe.cross-site.https.window.html", { @@ -515650,6 +524321,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515664,7 +524339,7 @@ ] ], "iframe.same-origin.https.window.js": [ - "10fad71a750edfc5ac72d79b8d5fb4baf650515f", + "5d710bd1dd89d7ccdea956a29b0eebc095c286d8", [ "measure-memory/iframe.same-origin.https.window.html", { @@ -515673,6 +524348,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515687,7 +524366,7 @@ ] ], "main-frame-and-worker.https.window.js": [ - "43c27904e644b77b1152658d6087e78f5c7ba5ba", + "a1a5a5a6c3ad7c28692d830ea6357c6c30743d98", [ "measure-memory/main-frame-and-worker.https.window.html", { @@ -515696,6 +524375,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515710,7 +524393,7 @@ ] ], "main-frame.https.window.js": [ - "750017095f6d09bf515d07c5d1fdd4d9540a826b", + "1119ca4446451d3004543e257482a203f17a87e3", [ "measure-memory/main-frame.https.window.html", { @@ -515719,6 +524402,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515733,7 +524420,7 @@ ] ], "randomized-breakdown.https.window.js": [ - "2ad8535476b2db14e8c4f2d99d65a41c22d6a2a7", + "09937d51158d32bd67f5d95df033a87c3134fd27", [ "measure-memory/randomized-breakdown.https.window.html", { @@ -515742,6 +524429,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515756,7 +524447,7 @@ ] ], "redirect.client.https.window.js": [ - "9cad328bd92d6f5164c96ce8cb050b398e8f3428", + "a78a7ddfdc95404ca05a03b473fc03740e6a2e0e", [ "measure-memory/redirect.client.https.window.html", { @@ -515765,6 +524456,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515779,7 +524474,7 @@ ] ], "redirect.server.https.window.js": [ - "2c32de2d0dbd62371d546677bead76dad0d73496", + "98273edec27f40ffd5b228a9ab11038081e2d7c7", [ "measure-memory/redirect.server.https.window.html", { @@ -515788,6 +524483,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515801,8 +524500,49 @@ } ] ], + "service-worker.https.any.js": [ + "c0251114dd6ae5760667422a237e04ea03162887", + [ + "measure-memory/service-worker.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "script", + "./resources/checker.js" + ], + [ + "timeout", + "long" + ], + [ + "global", + "serviceworker" + ] + ], + "timeout": "long" + } + ] + ], + "shared-worker.https.any.js": [ + "4e359ad3fe6cbe528d6377a273afa0df0bbaeec5", + [ + "measure-memory/shared-worker.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "script", + "./resources/checker.js" + ], + [ + "global", + "sharedworker" + ] + ] + } + ] + ], "window-open.cross-origin.https.window.js": [ - "9a054301e8fe8747aa13e0941b60e1548a4bee35", + "5305b1c0b0796ee3f96d73702a2154377b301a0b", [ "measure-memory/window-open.cross-origin.https.window.html", { @@ -515811,6 +524551,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515825,7 +524569,7 @@ ] ], "window-open.cross-site.https.window.js": [ - "a5fc1d31bd9d2a8c79595da9bd0b27045bf55cf4", + "3a9481fae6b13c1e4afa704de65052c88b5cdfb0", [ "measure-memory/window-open.cross-site.https.window.html", { @@ -515834,6 +524578,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515848,7 +524596,7 @@ ] ], "window-open.mix.https.window.js": [ - "91d13a5009e64954f4c4f8032bf142690b4e54a1", + "2b4c9e57aadadbe5f6fa5f94e0274c0ee821ca5c", [ "measure-memory/window-open.mix.https.window.html", { @@ -515857,6 +524605,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515871,7 +524623,7 @@ ] ], "window-open.same-origin.https.window.js": [ - "ee4a59e5bc74cb466533b9688dd095a3399fede5", + "f0ff6f2cd765622466e01e8a167cb25ea47b6795", [ "measure-memory/window-open.same-origin.https.window.html", { @@ -515880,6 +524632,10 @@ "script", "/common/get-host-info.sub.js" ], + [ + "script", + "./resources/checker.js" + ], [ "script", "./resources/common.js" @@ -515922,6 +524678,13 @@ } ] ], + "decodingInfo.webrtc.html": [ + "91f03bd692ba70510e3e77704c85d8395d4c1d92", + [ + null, + {} + ] + ], "decodingInfoEncryptedMedia.http.html": [ "267b23431b7fdf3baf3d4843d68778bb1cc15c85", [ @@ -515930,7 +524693,7 @@ ] ], "decodingInfoEncryptedMedia.https.html": [ - "09422840093cd13ac09c9eaf5120a558ba29099a", + "7ac914de89ddc0f7bee0169a7c7cee04ab261f2b", [ null, { @@ -515939,7 +524702,14 @@ ] ], "encodingInfo.html": [ - "cfcd79d12bcec1f68e322a5190df4eb55f25fb73", + "fc2f0f5add33a740d78dc9a201c37f8f97d92868", + [ + null, + {} + ] + ], + "encodingInfo.webrtc.html": [ + "63edc0641059ecf63d1d8e0676b9f43c81fb711d", [ null, {} @@ -515979,15 +524749,6 @@ ] ] }, - "media-feeds": { - "link-rel-media-feed.html": [ - "e266e5ae8abc0da60672ba9fde30d64616624da3", - [ - null, - {} - ] - ] - }, "media-playback-quality": { "idlharness.window.js": [ "2444e30c704457353145c252dcd7adf3432d35f0", @@ -516061,22 +524822,29 @@ ] ], "dedicated-worker": { + "mediasource-worker-detach-element.html": [ + "7b00c59a07be9f2b7599ad2efcb1de22f509cd10", + [ + null, + {} + ] + ], "mediasource-worker-objecturl.html": [ - "378bd9fb2fd49b3096f8959ae2d1840938f4e6a9", + "5553b5c631e8919f1159c605b4ae3fadbe11ff7c", [ null, {} ] ], "mediasource-worker-play-terminate-worker.html": [ - "138e9ecfe6efcc4508717d4b2ea9edcb786e9222", + "ca8b6970f89576a508a7b7ac5e9d6232f4d76963", [ null, {} ] ], "mediasource-worker-play.html": [ - "336cb8f3f655761e59acb50dadd4204c6ac4235c", + "07317e6d0c9f0b4def138e93cabf83e7f511c5a6", [ null, {} @@ -516416,7 +525184,7 @@ ] ], "mediasource-is-type-supported.html": [ - "f7c6bdc223d3387604f1b465e7d4c0f4f6c9618e", + "1981af7b94138840d269e27d42d31896233dfd85", [ null, {} @@ -516618,6 +525386,13 @@ {} ] ], + "cross-origin.html": [ + "14d92c8fc8193ea8321519f97f9d4d661664db4d", + [ + null, + {} + ] + ], "ended.html": [ "845fbcbaa6e798daeb64f3c6cc69e8b6cc1edff6", [ @@ -516839,7 +525614,7 @@ }, "mediacapture-insertable-streams": { "MediaStreamTrackGenerator-audio.https.html": [ - "8fdb353a00ec8f8f3ce7de71f1c0f4d9a818be1e", + "d89d0ac79d7cd938068bb8ede3781505e037ac38", [ null, {} @@ -516853,7 +525628,7 @@ ] ], "MediaStreamTrackProcessor-audio.https.html": [ - "8487f7d297fb1127bd6f6d703e6bc0aa8395b0b9", + "516f267b161cff26abc8f1e50f72c305b5194e6b", [ null, {} @@ -518999,7 +527774,7 @@ ] ], "idlharness.window.js": [ - "0d9137dc6fb91b1499d922e01d6ad96049f5757b", + "ef0e5e981233d9940616854f791d8626c7a48e6b", [ "mst-content-hint/idlharness.window.html", { @@ -519085,6 +527860,69 @@ } ] ], + "capacity_allocation_async_failure_handling.tentative.https.any.js": [ + "8bbeef5f29cbf69632b92c3487b035d668d1e949", + [ + "native-io/capacity_allocation_async_failure_handling.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Failure handling for capacity allocation." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "native-io/capacity_allocation_async_failure_handling.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Failure handling for capacity allocation." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "native-io/capacity_allocation_async_failure_handling.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Failure handling for capacity allocation." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "native-io/capacity_allocation_async_failure_handling.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Failure handling for capacity allocation." + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ], "capacity_allocation_sync_basic.tentative.https.any.js": [ "3ec2db383efda674f5c1df16c964d57fd20da5c8", [ @@ -519103,8 +527941,26 @@ } ] ], + "capacity_allocation_sync_failure_handling.tentative.https.any.js": [ + "82ba65890b634b74fde17ad7fcd67904912d3d6a", + [ + "native-io/capacity_allocation_sync_failure_handling.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Failure handling for capacity allocation." + ], + [ + "global", + "dedicatedworker" + ] + ] + } + ] + ], "close_async.tentative.https.any.js": [ - "30b46594aff85872e0b6330f7017b349292a6f8a", + "6913762e0cc191729628ab6bd508eb03ac1fe276", [ "native-io/close_async.tentative.https.any.html", { @@ -519203,7 +528059,7 @@ ] ], "close_sync.tentative.https.any.js": [ - "c298a79ede1cacebc7805e19cae41b59c5784f39", + "a063842451f8b7a32158de2ea41d313aae942d26", [ "native-io/close_sync.tentative.https.any.worker.html", { @@ -519226,7 +528082,7 @@ ], "concurrent_io": { "concurrent_io_flush_async.tentative.https.any.js": [ - "1eb031ce6a11e8e6dc88c0b2ab418343eb90878b", + "ea51f878ad05b3d66f730a634a1fa4537f89f33e", [ "native-io/concurrent_io/concurrent_io_flush_async.tentative.https.any.html", { @@ -519321,7 +528177,7 @@ ] ], "concurrent_io_getLength_async.tentative.https.any.js": [ - "eee22bf4d8061045a1f389c2bb2bc3d12dc0f971", + "e34018507efd1f442c17071fddc650c01b022381", [ "native-io/concurrent_io/concurrent_io_getLength_async.tentative.https.any.html", { @@ -519416,7 +528272,7 @@ ] ], "concurrent_io_read_async.tentative.https.any.js": [ - "bf76fb11337f9d82ad98ad2935053fcd8d9dc778", + "a680ff5c8f46f12dd683a1fd9337cef70d9a624c", [ "native-io/concurrent_io/concurrent_io_read_async.tentative.https.any.html", { @@ -519531,7 +528387,7 @@ ] ], "concurrent_io_setLength_async.tentative.https.any.js": [ - "79f7e799596f2de9bb0397de8acbcf36182ffc3e", + "39b42163562f7312df260c3c4374ef2514656cc2", [ "native-io/concurrent_io/concurrent_io_setLength_async.tentative.https.any.html", { @@ -519646,7 +528502,7 @@ ] ], "concurrent_io_write_async.tentative.https.any.js": [ - "2fe9cb396af0225859b5db37821e92aa6a9e3a3c", + "e71186d31169eebf172258742051288fbbb69ae6", [ "native-io/concurrent_io/concurrent_io_write_async.tentative.https.any.html", { @@ -519842,8 +528698,26 @@ } ] ], + "detached_iframe.https.window.js": [ + "e36327a72860018a8a28be2170de00db7baf1b61", + [ + "native-io/detached_iframe.https.window.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Do not crash in detached iframes." + ], + [ + "global", + "window" + ] + ] + } + ] + ], "flush_async_basic.tentative.https.any.js": [ - "d5ed466dab1a4c73eca321656715c375b373c9a4", + "eb091d237bd3a87c98470f51c70e08707adf1eed", [ "native-io/flush_async_basic.tentative.https.any.html", { @@ -519942,7 +528816,7 @@ ] ], "flush_sync_basic.tentative.https.any.js": [ - "128dcede7a9aa7e38391fed6e0e80596f9c0669e", + "8d125e2908ec8a1a524fe6f4f1bff53edee7ca91", [ "native-io/flush_sync_basic.tentative.https.any.worker.html", { @@ -519964,7 +528838,7 @@ ] ], "getLength_setLength_async_basic.tentative.https.any.js": [ - "bd3f9b3a148cc85276a93e2d427084592d167158", + "5c6f231cba207f087cec4b0a8195f20b3c8965ea", [ "native-io/getLength_setLength_async_basic.tentative.https.any.html", { @@ -520043,7 +528917,7 @@ ] ], "getLength_setLength_sync_basic.tentative.https.any.js": [ - "b93ad1558101f0b98b39fe3b10b2c87b4a152d96", + "196b20bfac83a7fe9bc6213b22329109140346b3", [ "native-io/getLength_setLength_sync_basic.tentative.https.any.worker.html", { @@ -520265,7 +529139,7 @@ ] ], "read_write_async_basic.tentative.https.any.js": [ - "59e9094a0287a6e984f5deb70fa9f646fd9c8c4e", + "ef07dfca533ee89ee1facde6916b2e4b42eaf2b1", [ "native-io/read_write_async_basic.tentative.https.any.html", { @@ -520343,8 +529217,109 @@ } ] ], + "read_write_correct_arraybufferview_async_basic.tentative.https.any.js": [ + "46bcc8d5bd85dbb60edc4e824f6bc729f85582f4", + [ + "native-io/read_write_correct_arraybufferview_async_basic.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Transferred buffer is of the same type as input." + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], + [ + "native-io/read_write_correct_arraybufferview_async_basic.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Transferred buffer is of the same type as input." + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], + [ + "native-io/read_write_correct_arraybufferview_async_basic.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Transferred buffer is of the same type as input." + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], + [ + "native-io/read_write_correct_arraybufferview_async_basic.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Transferred buffer is of the same type as input." + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ] + ], + "read_write_correct_arraybufferview_sync_basic.tentative.https.any.js": [ + "82c21ff016ada626a0bf23d0c565cfbdad70fc2d", + [ + "native-io/read_write_correct_arraybufferview_sync_basic.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "NativeIO API: Transferred buffer is of the same type as input." + ], + [ + "global", + "dedicatedworker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ] + ], "read_write_sync_basic.tentative.https.any.js": [ - "7905ff73012c9cce870e1ef4abdf77688fe87706", + "d1db256ba30a58515c097a483cd8a72ca2c43eae", [ "native-io/read_write_sync_basic.tentative.https.any.worker.html", { @@ -520429,7 +529404,7 @@ ] ], "rename_async_failure_handling.tentative.https.any.js": [ - "0067f76b3527dc75f7a2241a0373a3d140eeee24", + "59f6f83070eb4a1492252e17fdeee8ccaab81fe4", [ "native-io/rename_async_failure_handling.tentative.https.any.html", { @@ -520546,7 +529521,7 @@ ] ], "rename_sync_failure_handling.tentative.https.any.js": [ - "583584b1d427454780ca7e2dc1ed3ad3c6ebd4e4", + "b113741981f465ce31e801777402061822b4afc1", [ "native-io/rename_sync_failure_handling.tentative.https.any.worker.html", { @@ -520783,7 +529758,7 @@ ] ], "write_capacity_allocation_async.tentative.https.any.js": [ - "5ea8043612e9ec888abdfb05306c232abaa16abe", + "91544fe7cf37ba747e29de10f79220a9496d7385", [ "native-io/write_capacity_allocation_async.tentative.https.any.html", { @@ -520846,7 +529821,7 @@ ] ], "write_capacity_allocation_sync.tentative.https.any.js": [ - "ec28fbe254d2cd999e10fd143efa6e69c904469c", + "b72b1f645da0146ef1a9804a64a009f853239eed", [ "native-io/write_capacity_allocation_sync.tentative.https.any.worker.html", { @@ -522417,6 +531392,13 @@ }, "paint-timing": { "fcp-only": { + "buffered-flag.window.js": [ + "5c83ac01da457cbd6d48ed97b21269b1b1b0a5cc", + [ + "paint-timing/fcp-only/buffered-flag.window.html", + {} + ] + ], "fcp-background-size.html": [ "25fe986bdede921980b96c10f9d3d26a83558cbc", [ @@ -523068,7 +532050,7 @@ ] ], "updatewith-method.https.html": [ - "acc62f5e2ce980ead15e25a70b90ca4e45d56b3f", + "c1b47d1d93b5bcc12f34263c60a7daf5c0a131ef", [ null, {} @@ -523193,24 +532175,15 @@ } ] ], - "payment-request-constructor-thcrash.https.html": [ - "80ee1606852a9ceb457ff0cf8cb0bce584bf82e2", - [ - null, - { - "timeout": "long" - } - ] - ], "payment-request-constructor.https.sub.html": [ - "9b0ad06454f9330ba4115bff2990647b47adbd2d", + "c1ecc225838b3b663c40cef417ba081d9a2805ef", [ null, {} ] ], "payment-request-ctor-currency-code-checks.https.sub.html": [ - "b4ca2a0c40b39b3c922343a9a74341b69a338459", + "c608608c7ebdeaeeb2b223eb7d216b4708a2c00f", [ null, {} @@ -523262,41 +532235,6 @@ {} ] ], - "payment-request-onshippingaddresschange-attribute.https.html": [ - "5b2538992f76c774259f52b734bc844468fc14f7", - [ - null, - {} - ] - ], - "payment-request-onshippingoptionchange-attribute.https.html": [ - "43ea5dcce87afe9dff0387891d57c3265be303f5", - [ - null, - {} - ] - ], - "payment-request-shippingAddress-attribute.https.html": [ - "08918356b6fea393fd993f7ce7b2c7871892a98b", - [ - null, - {} - ] - ], - "payment-request-shippingOption-attribute.https.html": [ - "b5f9ea65c6c8e0deff02f12e529f09ba96720571", - [ - null, - {} - ] - ], - "payment-request-shippingType-attribute.https.html": [ - "11f75b1c862224b5655cb724d8c8f5b25ab1af00", - [ - null, - {} - ] - ], "payment-request-show-method.https.html": [ "e5ee5eed01b26c872d01f801bb0739f791b5be58", [ @@ -523334,7 +532272,7 @@ ] ], "show-method-optional-promise-rejects.https.html": [ - "3b42965503922d88213409dc814300c05b3a672f", + "4a41f28fc9be1612ec06a71b9fce641b1dfd688d", [ null, { @@ -523972,7 +532910,7 @@ ] }, "idlharness.window.js": [ - "2546061c52c5b39266b44b8725206b5dd50b81a5", + "90dbb4961ac67081c2c424a19f0bd08920059406", [ "permissions-policy/idlharness.window.html", { @@ -524037,7 +532975,7 @@ ] ], "permissions-policy-frame-policy-allowed-for-all.https.sub.html": [ - "fc851df7bbfb20b1fb21f6f9c9dec54dba7eba3f", + "329b6a9ea9dbb2ad2651cd7f4ad60453e1b07522", [ null, { @@ -524914,7 +533852,7 @@ ] ], "pointerevent_click_is_a_pointerevent.html": [ - "022fcffabfd98ff85f753ab7dc9bee9b8aa52a0f", + "0ce9f0736090576c55f192e2da7f8c683e0fbac6", [ "pointerevents/pointerevent_click_is_a_pointerevent.html?mouse", { @@ -524926,6 +533864,33 @@ { "testdriver": true } + ], + [ + "pointerevents/pointerevent_click_is_a_pointerevent.html?touch", + { + "testdriver": true + } + ] + ], + "pointerevent_click_is_a_pointerevent_multiple_clicks.html": [ + "fe18302ae4b914effd584b4ab192aa90f4d2ea69", + [ + "pointerevents/pointerevent_click_is_a_pointerevent_multiple_clicks.html?mouse", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_click_is_a_pointerevent_multiple_clicks.html?pen", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_click_is_a_pointerevent_multiple_clicks.html?touch", + { + "testdriver": true + } ] ], "pointerevent_coalesced_events_attributes.html": [ @@ -525801,6 +534766,15 @@ "testdriver": true } ] + ], + "pointerevent_pointerrawupdate_in_pointerlock.html": [ + "73aa4e5a58a2f86ac99ceed3525d03589dc36dbd", + [ + null, + { + "testdriver": true + } + ] ] } }, @@ -525928,6 +534902,24 @@ {} ] ], + "idlharness.window.js": [ + "b43d17dc5623bd7e48cae5908df1085cb296bfac", + [ + "portals/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], "no-portal-in-sandboxed-popup.html": [ "b26b836467a31ea5e4720559e8081b4a0c39c9e8", [ @@ -526285,7 +535277,7 @@ ] ], "modulepreload.html": [ - "8950daf1f87403e8799570cb8019a2af03bda0c6", + "919762618f38714e2090ecf606ebb159a116c023", [ null, {} @@ -526508,6 +535500,26 @@ ] ] }, + "private-click-measurement": { + "idlharness.window.js": [ + "1d0539a7bf56d071d247cded4ed2f4555b34bf6f", + [ + "private-click-measurement/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ] + }, "proximity": { "ProximitySensor-iframe-access.https.html": [ "0ceba805be3ae0f012153ca4696a9190a6a1aa7d", @@ -538282,7 +547294,7 @@ ] ], "iframe-inheritance-srcdoc.html": [ - "5b76f8efccb25ef488fbff2ef2a45f4081fae199", + "6904374b63fbb78cca000e496897752bdd635350", [ null, {} @@ -538294,6 +547306,13 @@ null, {} ] + ], + "workers.html": [ + "0bd75a1d15551cc4db8f623b055d53b00d748d19", + [ + null, + {} + ] ] }, "link-rel-prefetch.html": [ @@ -538303,6 +547322,13 @@ {} ] ], + "meta-referrer-outofhead-fetch.http.html": [ + "1b7a7bada512112f95121afb124b26df82d0b0d4", + [ + null, + {} + ] + ], "meta-tag-in-svg-image.html": [ "5bdc2c1abfa82777bac25b03a583898c51585ff6", [ @@ -538570,7 +547596,7 @@ ] ], "path-absolute-endpoint.https.sub.html": [ - "6abc5ee5a3280005fe0c68835fd40e82363d78b5", + "ecd44c35ddf23e8e5d5cc14e86e8ef619709db2b", [ null, {} @@ -538579,7 +547605,7 @@ }, "requestidlecallback": { "basic.html": [ - "429134ec4360f1bbbae4db608a93a6ba25930604", + "df9c9ef9775f6b6d403b28350e4dfa2f2944bad4", [ null, {} @@ -538755,6 +547781,13 @@ ] }, "resource-timing": { + "SO-XO-SO-redirect-chain-tao.https.html": [ + "e6568910e4fe7b61dc8a869dfd4fcff0750e7265", + [ + null, + {} + ] + ], "TAO-case-insensitive-null-opaque-origin.sub.html": [ "5d58f1c54664cdf5a2c91e523f6cd786148beeef", [ @@ -538762,8 +547795,8 @@ {} ] ], - "TAO-crossorigin-port.sub.html": [ - "0601217d0ae3a7bc057853dd23901650ccfe4633", + "TAO-match.html": [ + "a2645a638bef26a655ef253f655c95ac9607fff5", [ null, {} @@ -538776,78 +547809,94 @@ {} ] ], + "TAO-port-mismatch-means-crossorigin.html": [ + "f1218d17a0a44f013a01a9b1a28b3ab19f91c91d", + [ + null, + {} + ] + ], "buffer-full-add-after-full-event.html": [ - "84d257e4f4527b7ddf199dfbc91b59183651099f", + "43dc3d84fd3dd1b6263dfdf961113edb9e1a0da6", [ null, {} ] ], "buffer-full-add-entries-during-callback-that-drop.html": [ - "d61d2af05c6730c57703e7ba9482067689e78fbb", + "b00185c5b6c8810fdd18ef6c92febf4fcb065de1", [ null, {} ] ], "buffer-full-add-entries-during-callback.html": [ - "b37c47b23fb5026480683594b964ee712abbe708", + "d5883d33d5d780708a11167731cd7070f0105edb", [ null, {} ] ], "buffer-full-add-then-clear.html": [ - "710852ced55f716a348cc9e6865d7a8b7048a46a", + "5617c30b8850d8d8550561c79f69ea02c691d134", [ null, {} ] ], "buffer-full-decrease-buffer-during-callback.html": [ - "e6de33ded1b73345a763692a1bac9138c8f208de", + "3091fcf4269192d909b87dc33559c3f18881c37d", [ null, {} ] ], + "buffer-full-eventually.html": [ + "6e9d5db48399034d0ec2ab01903700e92d047992", + [ + null, + { + "timeout": "long" + } + ] + ], "buffer-full-increase-buffer-during-callback.html": [ - "b46d2d65690a886837b8ea7621f3926081552d97", + "dd12dd7afa9be18bbde464212dc08177968da7d6", [ null, {} ] ], "buffer-full-inspect-buffer-during-callback.html": [ - "d46d4692a55b9cbef1aa5f882f38887e1f7940e9", + "d5cc8e6ecd8d1130411b4ebddadfdfe6c7832d87", [ null, {} ] ], "buffer-full-set-to-current-buffer.html": [ - "1e5486ec2cdfc442876ba1f5b2c524985e70e5b5", + "dc527b9a32f5149fde4be86d3b2ae5d81fd2d4c7", [ null, {} ] ], "buffer-full-store-and-clear-during-callback.html": [ - "f0791cba6b39fb4b7e1af09077772f1ee3b42744", + "3ea0577256c85b35453358d18c970e4fb3045c4c", [ null, {} ] ], "buffer-full-then-increased.html": [ - "2265077fc15a277c3352da215fa5ac8a276c60aa", + "de517bf405c66e94e72f942de33ac6ab72807e2d", [ null, {} ] ], "buffer-full-when-populate-entries.html": [ - "00d2ae0e4426f4644f70e921751fffc327de46d6", + "f4b1a2e7e7abba25c78e4c1dbe0b1aba29061d47", [ null, {} @@ -538871,6 +547920,20 @@ {} ] ], + "connection-reuse.html": [ + "a1bc927cfd3f2bdd960c4f686951b826f75e8fc8", + [ + null, + {} + ] + ], + "connection-reuse.https.html": [ + "3461eed47249df338805f5006bb6f38e38d58772", + [ + null, + {} + ] + ], "cors-preflight.any.js": [ "5bbf3d2a2345ed4a5202d64b241468614352b0a8", [ @@ -538905,56 +547968,42 @@ ] ], "cross-origin-redirects.html": [ - "44132500e37eab03734eebbd869242df135ad326", - [ - null, - {} - ] - ], - "cross-origin-status-codes.html": [ - "197a7663396ef66c7764d6599b03854d138f2e60", - [ - null, - {} - ] - ], - "crossorigin-sandwich-TAO.sub.html": [ - "695bd654bb57d35edbcdf8409aaf9c09af9f620e", + "affc4a05b39cfcf6578c34d9738a1109012811e9", [ null, {} ] ], - "crossorigin-sandwich-no-TAO.sub.html": [ - "0c1d09684c7cef7d4c7f8b56b0cdbffebd5bad04", + "cross-origin-start-end-time-with-redirects.html": [ + "1b107d3aef7764d9b9603ea2658cf469cf285980", [ null, {} ] ], - "crossorigin-sandwich-partial-TAO.sub.html": [ - "2f44b78d2785e4d01a4dba8fe807d5fc57b9b9b3", + "cross-origin-status-codes.html": [ + "197a7663396ef66c7764d6599b03854d138f2e60", [ null, {} ] ], - "document-domain-no-impact-loader.sub.html": [ - "8a1c433a5c3a7b79d92b797ee1057c624d4a9866", + "document-domain-no-impact-opener.html": [ + "69df2f27fa5b195f7b956714cf816a61e18258b8", [ null, {} ] ], "entry-attributes.html": [ - "1115b7f56f721ae8cfa8ef054338a49cedff4f9e", + "689b4e74c8551875c503133ad6652c8a8b6c5938", [ null, {} ] ], "fetch-cross-origin-redirect.https.html": [ - "e11f21a45755b3fa6da42025d1730d23e8fc4bfb", + "4193422653a5954ff033518c690f65460bc5433b", [ null, {} @@ -539011,7 +548060,14 @@ ] ], "iframe-failed-commit.html": [ - "56fe1d594f9479e3be31292147876741aebc7fa3", + "49bd93427c1d39ac5aed928caa3d0253557dd416", + [ + null, + {} + ] + ], + "initiator-type-for-script.html": [ + "72173398d56aa48fd3d9817a058c19115e7df9dd", [ null, {} @@ -539044,13 +548100,11 @@ } ] ], - "nextHopProtocol-tao-protected.https.html": [ - "1b2b03016af147588fe4b208dc2f76f7a7ea44b4", + "nextHopProtocol-is-tao-protected.https.html": [ + "e0e96af8e80cf4fb06d7f1b3393f2191265b23ce", [ null, - { - "timeout": "long" - } + {} ] ], "no-entries-for-cross-origin-css-fetched.sub.html": [ @@ -539067,134 +548121,71 @@ {} ] ], - "redirects.html": [ - "f0fe409bfc0cee8326ad21d038fc1f101cf8cb39", - [ - null, - {} - ] - ], - "resource-reload-TAO.sub.html": [ - "48ab84bf964ef4ae2a0f3adc8fdd81867918c4f0", - [ - null, - {} - ] - ], - "resource-timing-level1.sub.html": [ - "093d2542218fbe48b134230b4d9d65e1ef1d4c10", - [ - null, - { - "timeout": "long" - } - ] - ], - "resource-timing-tojson.html": [ - "77094f4b843a43fb30aeca48c505337b4322ca81", - [ - null, - {} - ] - ], - "resource_TAO_cross_origin_redirect_chain.html": [ - "292878bdde5f8f4e8f152b28c7658933e9432b4c", + "object-not-found-after-TAO-cross-origin-redirect.html": [ + "d0dad9381ba42bc848ebeca86acaf7f10a7a1e82", [ null, {} ] ], - "resource_TAO_match_origin.htm": [ - "4793dbf91d65f823885cdf38fcab90f83da0cf7a", + "object-not-found-after-cross-origin-redirect.html": [ + "a455ec406b3e9519d99bbfeb12a44e7214c66e6b", [ null, {} ] ], - "resource_TAO_match_wildcard.htm": [ - "fe812f86774443cc40fc0abf40418fa95fda4763", - [ - null, - {} - ] - ], - "resource_TAO_multi.htm": [ - "bb774abc6021a4abd041076afeee3e9d38acc7e0", - [ - null, - {} - ] - ], - "resource_TAO_multi_wildcard.html": [ - "844896087d45a45369243ce80987876970f40620", - [ - null, - {} - ] - ], - "resource_TAO_null.htm": [ - "1a86e09c56753f0bb4319637a601b0acb09ac62e", + "redirects.html": [ + "ba69907a5f6e46a3e8a79041da17039d14d20feb", [ null, {} ] ], - "resource_TAO_origin.htm": [ - "a0c0465e72660fb8aec6625493a0e0e183d6bc18", + "resource-ignore-data-url.html": [ + "a7056a80807967d9b94b1d4c54c0620dc2a4bad8", [ null, {} ] ], - "resource_TAO_origin_uppercase.htm": [ - "1a03c71410643866b9073db5d7b4c3402ea47fec", + "resource-reload-TAO.sub.html": [ + "48ab84bf964ef4ae2a0f3adc8fdd81867918c4f0", [ null, {} ] ], - "resource_TAO_space.htm": [ - "9efefe15a4f1d43d2b0f16e9636759338a4c2afc", + "resource-timing-level1.sub.html": [ + "093d2542218fbe48b134230b4d9d65e1ef1d4c10", [ null, - {} + { + "timeout": "long" + } ] ], - "resource_TAO_wildcard.htm": [ - "df278534cc49d46bad7967084b011cf6e93e3876", + "resource-timing-tojson.html": [ + "77094f4b843a43fb30aeca48c505337b4322ca81", [ null, {} ] ], - "resource_TAO_zero.htm": [ - "a15f54d0134a82be3c4987ac09017fe317d2fc3a", + "resource_TAO_cross_origin_redirect_chain.html": [ + "292878bdde5f8f4e8f152b28c7658933e9432b4c", [ null, {} ] ], - "resource_cached.htm": [ + "resource_cached.html": [ "fd61d639616b1802ff4b63de82a01ffd701f814e", [ null, {} ] ], - "resource_connection_reuse.html": [ - "f347a0b23e15e9134ba2bf37fdafa4cab5e8d809", - [ - null, - {} - ] - ], - "resource_connection_reuse.https.html": [ - "86864090a2eea7e62f7f204ec7baf4eccc9f6771", - [ - null, - {} - ] - ], "resource_connection_reuse_mixed_content.html": [ "51c04ee604c963cb248ca6cb6b536ef9bf21ee12", [ @@ -539223,15 +548214,8 @@ {} ] ], - "resource_ignore_data_url.html": [ - "f8ca2f1187e934fc9b07b5dbc31769f887528b51", - [ - null, - {} - ] - ], "resource_initiator_types.html": [ - "9912da7c3400138d73245acc372463ca174e6f58", + "2e52f0e4cd09ec9e0d26e2494ac5e20b58ce62b9", [ null, {} @@ -539258,13 +548242,6 @@ {} ] ], - "resource_script_types.html": [ - "898fa0cee2cb29f69c11d70d831c2eade5b75036", - [ - null, - {} - ] - ], "resource_subframe_self_navigation.html": [ "5843f88307233e9326c84106f460039baf09162e", [ @@ -539286,15 +548263,6 @@ {} ] ], - "resource_timing_buffer_full_eventually.html": [ - "140973156fbd85b7228c7dc6e2b36866bbcd2975", - [ - null, - { - "timeout": "long" - } - ] - ], "resource_timing_buffer_full_when_shrink_buffer_size.html": [ "e42c19d05e081ec3673606b4f0d686f0e69e65d8", [ @@ -539309,8 +548277,8 @@ {} ] ], - "resource_timing_cross_origin_redirect_chain.html": [ - "f8d39e7bfa4a5d07e99cd82d8d0b7a5f3158d594", + "same-origin-from-cross-origin-redirect.html": [ + "8740b81b13fd8aa7a269a10cf2dd3023a0fbc2a5", [ null, {} @@ -539325,6 +548293,171 @@ } ] ], + "sizes-cache.any.js": [ + "af70e5a6ded3e63d158fd929feacf0827b3cafc9", + [ + "resource-timing/sizes-cache.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/sizes-cache.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/sizes-cache.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/sizes-cache.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ] + ], + "sizes-redirect-img.html": [ + "786018d0c4634c3d8c6df2c4003b201e6e4bc4e1", + [ + null, + {} + ] + ], + "sizes-redirect.any.js": [ + "e483a4d409c6c2deee73fa213d698b95b865d0c8", + [ + "resource-timing/sizes-redirect.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ] + ] + } + ], + [ + "resource-timing/sizes-redirect.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ] + ] + } + ], + [ + "resource-timing/sizes-redirect.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ] + ] + } + ], + [ + "resource-timing/sizes-redirect.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" + ] + ] + } + ] + ], "status-codes-create-entry.html": [ "cc0cd8ccb88250331186c38554b09ff8515cacee", [ @@ -539358,7 +548491,7 @@ ] ], "workerStart-tao-protected.https.html": [ - "f9b50f70360dd6e09908bc2d81dff13735aad236", + "4856f467f16f6e3821d48ea7542d154b3de53bd7", [ null, { @@ -539387,21 +548520,21 @@ ] ], "sanitizer-config.https.tentative.html": [ - "e4dc40a8c632098a7f47b72a3b5a783dffa02119", + "06f41b261295a6dbea99a6ec719807badeb307d5", [ null, {} ] ], "sanitizer-sanitize.https.tentative.html": [ - "32b7424a22507c341454807e7b7f96e64e809775", + "a577a1e36b7a316cafd21f07c88d7970209d206f", [ null, {} ] ], "sanitizer-sanitizeToString.https.tentative.html": [ - "bb805a4c919209e404261cd94062b505975f0b52", + "f76560d447b96c022abc10f522b121be9384a427", [ null, {} @@ -539595,7 +548728,7 @@ }, "screen-wake-lock": { "idlharness.https.window.js": [ - "11b83c29bd0dae7207fd633860772d44bdac6d97", + "6509d9c70e25785ef5779e954c834f567fbdb42c", [ "screen-wake-lock/idlharness.https.window.html", { @@ -539654,7 +548787,7 @@ ] ], "wakelock-enabled-by-feature-policy.https.sub.html": [ - "53e92f55167f68c0e902dc017833b6a2c04b0bad", + "6e522cc52882dcff7e179c7e046eedd41cc65c5f", [ null, { @@ -539663,7 +548796,7 @@ ] ], "wakelock-enabled-on-self-origin-by-feature-policy.https.sub.html": [ - "b15289beff4853765fdc30dfd0a3b35d48fd8619", + "e74436a76cf6b3f312a042a5525ecfb051de3a8e", [ null, { @@ -539697,7 +548830,7 @@ ] ], "wakelock-onrelease.https.html": [ - "c6af6bee3704f11e53dd25a0e71e7d56ab334e89", + "fb071b3763d6e1060e7b616da5102c3d463de163", [ null, { @@ -539706,7 +548839,7 @@ ] ], "wakelock-released.https.html": [ - "c000283ce652eb80b19c448716939c4366693aff", + "8d351e3e6825226f564c5647eca040155c493276", [ null, { @@ -539715,7 +548848,7 @@ ] ], "wakelock-request-denied.https.html": [ - "b222ef342a6566a9d424044713b1acf2666679eb", + "f3fede6e104bdcd041caf758608eaf72fc89b628", [ null, { @@ -539745,7 +548878,7 @@ ] ], "wakelock-type.https.window.js": [ - "67e935be8e1d20940827c814bdfdf8b879841b5a", + "5008064684e21563c02792f74103fa189fbe325d", [ "screen-wake-lock/wakelock-type.https.window.html", { @@ -539763,7 +548896,7 @@ ] ], "wakelockpermissiondescriptor.https.html": [ - "e6d0d0b07edda3a98381e00fc51d39469f0bf318", + "252aa3ce2816fc91d5a114a3cc2f799e43a04bf9", [ null, { @@ -539884,7 +549017,7 @@ ] ], "constructor.html": [ - "1f5a8b5740eaab9bf67db421dc8a4107162622c6", + "87b0bc2faf7d395f308ea0a198212d7009ca7222", [ null, {} @@ -539920,7 +549053,7 @@ ] ], "animation-timeline-none.html": [ - "d5d585366c9e3c451f9d19f0c573798d1413644e", + "a8e07a44d6de1337005bc64bf41f5acbaf026ad4", [ null, {} @@ -539948,7 +549081,7 @@ ] ], "at-scroll-timeline-dynamic.tentative.html": [ - "0722115593c4800aac8b613be936e5aa71d7d4c4", + "e8ce88ea9e3b5e5bc5955e6ad5503a01492be6cd", [ null, {} @@ -539962,7 +549095,7 @@ ] ], "at-scroll-timeline-ignored.tentative.html": [ - "1ea61f44e3fdffe064a02b21bfcab36f911a2747", + "7c06b4e3540855f6f7b9874421ed33c1d3712498", [ null, {} @@ -540114,7 +549247,7 @@ ] ], "multiple-scroll-offsets.html": [ - "026b2e7673c8b863dc27072a9a4b06664f46d051", + "87dc885e99d7d5ae569142510630cb383969dcd9", [ null, {} @@ -540222,6 +549355,13 @@ {} ] ], + "source-quirks-mode.html": [ + "0614509e4583897bbc82798160c4f8b34a31f118", + [ + null, + {} + ] + ], "update-playback-rate.html": [ "82cf69999f6860604aae540ffda91f4d809498ed", [ @@ -540275,6 +549415,13 @@ } ] ], + "iframes.sub.html": [ + "ea7ee75a9fa968ce464b7e6cd2719c4bfdf73bfc", + [ + null, + {} + ] + ], "redirects.html": [ "5ad910affe55f6dd5ff63cdd3e019cf969fc6653", [ @@ -540294,7 +549441,7 @@ ] ], "scroll-to-text-fragment-same-doc.html": [ - "ff339521ddbd917b6647cf9c5c9f80a7b71928a4", + "378e373575ea27d488dc168b685295267f4c6204", [ null, { @@ -540382,7 +549529,7 @@ }, "secure-payment-confirmation": { "secure-payment-confirmation.tenative.https.html": [ - "1eabdd41145b3edae1a5b68c0219fd5e178f7a71", + "93a3d17c993f0ffdee0ce2835f433ca2c0b3fe49", [ null, { @@ -540636,11 +549783,29 @@ ] ], "modify.tentative.html": [ - "aaedc72644bd6420bc723f287b78c4fd2bd9a1a9", + "a3afd52ea2ebe54cb2c296b953573813392f6bbe", [ null, {} ] + ], + "modifying-selection-with-middle-mouse-button.tentative.html": [ + "54c3c848012ad9701558ef0f866ebe703c8f8581", + [ + null, + { + "testdriver": true + } + ] + ], + "modifying-selection-with-primary-mouse-button.tentative.html": [ + "4955689fe8158603e2f93903d60919097fc0b474", + [ + null, + { + "testdriver": true + } + ] ] }, "deleteFromDocument.html": [ @@ -540785,7 +549950,7 @@ ] ], "selectionchange.tentative.html": [ - "adec8b31f3e096eb28ae0246164d637da10bd5ee", + "5d4e3304c52e1dbda8b711ea9fd08c6b3790f5fb", [ null, {} @@ -542612,7 +551777,7 @@ ] ], "data-transfer-files.https.html": [ - "cc8ab6e672726e168b44dfee5b4720012fffee0a", + "c503a28f965b296b346de237aee77b46414bb7cd", [ null, {} @@ -542869,7 +552034,7 @@ ] ], "fetch-event.https.html": [ - "31a2cb05e2ccb44b6de35beb8000599a516368ee", + "771f1e319ca47e6cfe60db83fc7d42c2c55cb649", [ null, { @@ -543054,6 +552219,20 @@ } ] ], + "historical.https.any.js": [ + "20b3ddfbf7b883026b70692cf0f907dc93f5ad2b", + [ + "service-workers/service-worker/historical.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "serviceworker" + ] + ] + } + ] + ], "http-to-https-redirect-and-register.https.html": [ "5626237dcccbf279029ca072b8a0bc9e845fbb1c", [ @@ -543332,7 +552511,7 @@ ] ], "no-dynamic-import-in-module.any.js": [ - "84b17629ccddc984003f266d6a0d1bee09d29c5a", + "f7c2ef37b8b938df9b8ccae12511dfbe58d8e694", [ "service-workers/service-worker/no-dynamic-import-in-module.any.serviceworker-module.html", { @@ -543877,6 +553056,15 @@ {} ] ], + "update-module-request-mode.https.html": [ + "b3875d207bc252dea8e43c1b585febe6d6a10f0b", + [ + null, + { + "timeout": "long" + } + ] + ], "update-no-cache-request-headers.https.html": [ "6ebad4b7b10bcdf176c1543fd711aee31d5547b7", [ @@ -543995,10 +553183,10 @@ } ] ], - "xhr-content-length.window.js": [ + "xhr-content-length.https.window.js": [ "1ae320e9c3c5713a2d47291d83ba7d72dc03c152", [ - "service-workers/service-worker/xhr-content-length.window.html", + "service-workers/service-worker/xhr-content-length.https.window.html", { "script_metadata": [ [ @@ -544124,6 +553312,15 @@ {} ] ], + "accesskey.tentative.html": [ + "c517830226c20103eae522cf51462ae8002159d5", + [ + null, + { + "testdriver": true + } + ] + ], "capturing-and-bubbling-event-listeners-across-shadow-trees.html": [ "bcb4ee62e0c61c488791f5ac045908eacad79596", [ @@ -544139,6 +553336,13 @@ {} ] ], + "declarative-parser-interaction.tentative.html": [ + "473131ed251588f7fab7f729eee1bf5823ca1426", + [ + null, + {} + ] + ], "declarative-shadow-dom-attachment.tentative.html": [ "081f9b2d8f38fc8a4f9c70968ece3b323ba89160", [ @@ -544160,6 +553364,13 @@ {} ] ], + "declarative-with-disabled-shadow.tentative.html": [ + "e075a4f8a7d1638214238bb78c89346c482cbcdb", + [ + null, + {} + ] + ], "getinnerhtml.tentative.html": [ "52a484760d956776b3e34d0053f78f341d31dc4a", [ @@ -544269,6 +553480,13 @@ } ] ], + "ShadowRoot-delegatesFocus.html": [ + "4b7fe4e50e72b94b690f8a6e44892a66a17fa404", + [ + null, + {} + ] + ], "click-focus-delegatesFocus-click-method.html": [ "92212cd85b86615db21192faa731799218a08d67", [ @@ -544449,6 +553667,20 @@ {} ] ], + "imperative-slot-api-slotchange.html": [ + "1aa6a786760f81fdd37628fe6863717a4cfa7cb8", + [ + null, + {} + ] + ], + "imperative-slot-api.html": [ + "8133d7e8ebe5e2c90ddd893ffd0b60552ba9c5f1", + [ + null, + {} + ] + ], "innerHTML-setter.xhtml": [ "0122707e2a917e4b52142733995cfedc1e777edc", [ @@ -544542,20 +553774,6 @@ {} ] ], - "slots-imperative-api-slotchange.tentative.html": [ - "43627a246cce9d92fdb3e758c113c5fde8e198fb", - [ - null, - {} - ] - ], - "slots-imperative-slot-api.tentative.html": [ - "2ffb08fba1b70e1ead9681c2c586720415d33ff3", - [ - null, - {} - ] - ], "slots-outside-shadow-dom.html": [ "a6fa2b27f760d1daf6e7390c6e582108b035e57e", [ @@ -544575,7 +553793,7 @@ "extensions-to-element-interface": { "attributes": { "test-006.html": [ - "7b5a08d3c33b1dae71218b71999d1acc2120ea53", + "bfbfde36e2ac8184ba0a24f9724ae947101c3c49", [ null, {} @@ -544584,14 +553802,14 @@ }, "methods": { "test-001.html": [ - "d226c5918a2ddc8f267d0023328c0c9fa0d03bac", + "c1c44980e1bceabecc416ee33591f687dfb03fff", [ null, {} ] ], "test-002.html": [ - "40e527c8f4a6b311c69b774bbb6fce09a3b6224a", + "f7e1595a013509992a336b790cbdb51d98b28774", [ null, {} @@ -544602,49 +553820,49 @@ "shadowroot-object": { "shadowroot-attributes": { "activeElement-confirm-return-null.html": [ - "f0c55ff0156ae519cbf0d3cfe90ec579cf798158", + "417995d75e299d7b8a641a55a651c79022179eed", [ null, {} ] ], "test-007.html": [ - "b7f1f5c2d8fbd5c22a95812b29aa8b1590780367", + "d8868f56950081feae71f03a62ec11449cd87e1e", [ null, {} ] ], "test-009.html": [ - "db02a42c3f6fccd16a79b1ceb7bf56813759495b", + "219c57826680f3d777cf81a2ec868615bc9239cc", [ null, {} ] ], "test-010.html": [ - "2248d6898862a7a07bd0955f0b6270d8a626296a", + "4207065867c79c607e16c649f11c523df4f89f18", [ null, {} ] ], "test-011.html": [ - "48d22926cdaed8c4f66ea7edd147ee66ccaaa60c", + "74c2c9877f4799184206b6959f58bd94de2959f2", [ null, {} ] ], "test-012.html": [ - "e87443cb54e25495f2c65310f8c889987b4e182d", + "af06e4fafb42e043aec7f793269fb168c692c3ae", [ null, {} ] ], "test-013.html": [ - "6086ed1794ab7498605f897de26c57e4c9de2222", + "3f754c0381067a6c3eb4c21de155bb27caf4cabb", [ null, {} @@ -544653,35 +553871,35 @@ }, "shadowroot-methods": { "test-001.html": [ - "56f89dd3d454d07c482b68b836a7dea29adffa77", + "6093313a0e099b3036c68e67da24c644d2814c9c", [ null, {} ] ], "test-004.html": [ - "1cd62c4a5ac46cae4b21edbf9f4f5026d76a30eb", + "dc087680ddf21992df8722e232edd4d270543acb", [ null, {} ] ], "test-006.html": [ - "38229ebbaded5bf39d5d928c6a23b53d450f08c6", + "cf10846cc9765a397f2b99d053f433689938c05a", [ null, {} ] ], "test-007.html": [ - "fc29b256f9619c75bd1dbc8393f5daefb7335599", + "371c5fa851e4cc9015cdf62b1f1bfab90f71ad4f", [ null, {} ] ], "test-010.html": [ - "c183962d718ccaccccae1324bc6261a50abbfc79", + "8e11f739cef27a21fe390d138f874bd7df9a8f67", [ null, {} @@ -544693,14 +553911,14 @@ "events": { "event-dispatch": { "test-002.html": [ - "512bee77b35ab08c2629db77e213c9b8b0e142bc", + "663337526a2c51c9b1a94fab37cef7c749f5c6ce", [ null, {} ] ], "test-003.html": [ - "20c00318c231d84386e2504eda7810f209737757", + "bd81521018357307989c27e0a7544fc3714a128b", [ null, {} @@ -544709,14 +553927,14 @@ }, "event-retargeting": { "test-001.html": [ - "227d9e18b3f31a754049e47c9eecac9d7964d1e9", + "4ad3ac5ce9612786d52ca0a9cd018bfc929d542c", [ null, {} ] ], "test-003.html": [ - "5e1d9bb321e3beedc522ada22e3ec3be90fe71d1", + "23ee9ad723cabf7c810a82f371a1631764a5aaaa", [ null, {} @@ -544725,21 +553943,21 @@ }, "retargeting-focus-events": { "test-001.html": [ - "296346bf1201f2a8ca07051310afa90af6d7406f", + "ce21769e3a3136aabb28a4be17b8971cc37e8fc0", [ null, {} ] ], "test-002.html": [ - "0e22dd6fbd860a8076d9a391f9f198d0b06f1893", + "9c0eb23ae4c4614b4eb85785954d4e0fd2cf406e", [ null, {} ] ], "test-003.html": [ - "19e4b9967ceb0ca9c5443a3d575b5ce322aa2235", + "55fdde130742caa50803eff9826aa8169b4065ea", [ null, {} @@ -544748,21 +553966,21 @@ }, "retargeting-relatedtarget": { "test-001.html": [ - "ef9a24113f937ea96c1e4806fbbbb4abf17bed84", + "5b0ed3fddd566f032b540881184dbf3ffa5edfd8", [ null, {} ] ], "test-002.html": [ - "22be13713229bc12dbb0eead8d3737fedac3c96c", + "3a8ea47e76b2c772bd40f8d1963a14d7690083ff", [ null, {} ] ], "test-003.html": [ - "3e8d6709e4083818b8717d8ea7b081396894d1cc", + "900a3ac7fe1c63d3290a4aa3926bf269230872f2", [ null, {} @@ -544770,7 +553988,7 @@ ] }, "test-001.html": [ - "4e56c405105b292a4c2e702686c4566912a7ee7d", + "b150f282f4e66d50de04d8c72b2292f37f26155b", [ null, {} @@ -544780,21 +553998,21 @@ "html-elements-in-shadow-trees": { "html-forms": { "test-001.html": [ - "c8cfeceee6a9a0868a0d0aaf5f1a6deaade1499a", + "2783e5f15ef8bf5f4db44d522fdd1b665a3f8048", [ null, {} ] ], "test-002.html": [ - "2d063c06a142bc6afd7135f662bf33cc12202139", + "597d985bee165cf3da7dc95b907e2cb004531ce1", [ null, {} ] ], "test-003.html": [ - "b795fc38f9ca9358ea26c774ded8784314f835d7", + "96c10274739899ecb74ef52529263d84aa63df4c", [ null, {} @@ -544803,14 +554021,14 @@ }, "inert-html-elements": { "test-001.html": [ - "9be80bde95b00161411cda8e646161581f838469", + "f8dd40ea2aeb01853f2e40eecb13689d64eac5f5", [ null, {} ] ], "test-002.html": [ - "2263cd6125a4258a6407823a747027767d691d05", + "397acd83e7e4c23fc8fcee315d2e7dc4d826ff5e", [ null, {} @@ -544821,98 +554039,98 @@ "shadow-trees": { "upper-boundary-encapsulation": { "dom-tree-accessors-001.html": [ - "71421481e0739e566ea71e1cf59ba8457ce90197", + "3007fafc546d78b9115f36d2d27e0a43d1c3ab61", [ null, {} ] ], "dom-tree-accessors-002.html": [ - "7a8f9f3d2b2fdca3eac6cf5d431c56fd5ed5ea80", + "88a2efc2d30aaf477b9b7ab1647baa7885903c93", [ null, {} ] ], "ownerdocument-001.html": [ - "3a184f46cb7a9b26ef5389fb0f04ce035bd096ac", + "58c8adc087441b8fb964e9d8952b002c18ac5514", [ null, {} ] ], "ownerdocument-002.html": [ - "0b4de7f7ffe9cb1593f9f245cf4d9ba54a6fa7b1", + "aa44ba7a6a53043ea78c8deed27ad84b9d78a2d7", [ null, {} ] ], "selectors-api-001.html": [ - "1ce5c65bdf970a490fcd63bb8f6a0461dc45967a", + "f3ca2b786f9e12eef17d97fa8dd4aee148f202ef", [ null, {} ] ], "selectors-api-002.html": [ - "1737280426aeab3f8d7870d9ee72e733ffb16832", + "6167f57e4e53630fa7ce66bcb0153d905dc8f05d", [ null, {} ] ], "shadow-root-001.html": [ - "8e40fb23edd9f6cc5537067b3144c3debe23ef35", + "97f5c35717813105654ce94589f57a9bc4a58b29", [ null, {} ] ], "test-005.html": [ - "0cf978a2699f8d9460c84851129cdb68415a4cb7", + "b82a9523a9eeec6c22f41a9e6d9126a222f4201e", [ null, {} ] ], "test-007.html": [ - "77f100d630564958af379030e2497138824ebf0c", + "0cfe169b441ceab9e681ed4cd63ce7266e82468f", [ null, {} ] ], "test-009.html": [ - "57d8ec8be9cf823ceec71e17fbd08c8fe7a7947b", + "f37f17bc1a3947d70a6086b1427f471ba94e6a73", [ null, {} ] ], "test-011.html": [ - "58135b107304c9f6001d2d550c6e062e8c7c9470", + "48ac1c7540ca66230284c1f7cfc4dc17f437d30b", [ null, {} ] ], "window-named-properties-001.html": [ - "f0aefee379a5314fe242d0eb731b226a5731e9b0", + "6e4cbbd9b7e4d286b9ceb1280175aaf3fe6fb426", [ null, {} ] ], "window-named-properties-002.html": [ - "45c0bf6a673d588da9e91a70620442e5e957cc16", + "957e087e86012d2b2b7967389c2140bf715b35a7", [ null, {} ] ], "window-named-properties-003.html": [ - "b34f766f85c1c56dc22506cd9e556f2982deb107", + "539692b417c9dd3a26758b6886a7aabedea0c4b5", [ null, {} @@ -544922,28 +554140,28 @@ }, "styles": { "test-001.html": [ - "fd91574b6578eafe45d9c7b239ca01ea98983651", + "d773d248c12c35eaa5609d473cbc2fc010c6a033", [ null, {} ] ], "test-003.html": [ - "ab30e0cc67ae43262baea4305edf079ff6628368", + "b5b2529861c10ec3f88f653c170e5f90c1b1fe30", [ null, {} ] ], "test-005.html": [ - "0debdec5fcb335183546164134b168ab13915b58", + "94dbb551dc00461584dbed522eb3533d25478f52", [ null, {} ] ], "test-008.html": [ - "b84ca4df7d728fa2c8564bab19220dc858c48d40", + "4b810af1c86bac738e4fcc374e3d144738887cd8", [ null, {} @@ -544953,14 +554171,14 @@ "user-interaction": { "active-element": { "test-001.html": [ - "0c3b033da99631c32137d4ce5f3321966cdd3fa3", + "9d4b026ad810307b02a4814c2a52c1000c69d4fa", [ null, {} ] ], "test-002.html": [ - "ed679ee91a399f4168d339051414e7b6a7cc4b3c", + "af3165afebc31a47cda7163a5d4f240c8d3b0298", [ null, {} @@ -544969,7 +554187,7 @@ }, "editing": { "inheritance-of-content-editable-001.html": [ - "28225ac4a43454cc4cd03ad6c2b66977c17cab7a", + "c09832cd7e73749d9a91f14c8850b6f06396c7bd", [ null, {} @@ -544978,14 +554196,14 @@ }, "ranges-and-selections": { "test-001.html": [ - "2df78d8a628b9e714cff7d678ebd31b071302c00", + "3a234e8b817855ad08296a700b71d218af955f3a", [ null, {} ] ], "test-002.html": [ - "76ff0f5dd68c0a1e6c577c67b4aa369d294a3ceb", + "55cd91e458fc8e44ad59c5a9ed047272f5b79cf1", [ null, {} @@ -547470,7 +556688,7 @@ ], "readable-byte-streams": { "bad-buffers-and-views.any.js": [ - "d4ad483d9c39566b8bc5b4d09676d05eac8879e5", + "eed3a5ed4f8d020869870999438282db1be078bb", [ null, { @@ -547607,8 +556825,15 @@ } ] ], + "enqueue-with-detached-buffer.window.js": [ + "15400f69340451458bca4dc24277d7887797c349", + [ + "streams/readable-byte-streams/enqueue-with-detached-buffer.window.html", + {} + ] + ], "general.any.js": [ - "bbcae335b11cb51dbf3e6581ee692d459ff1c826", + "db8ac3a39983fddbcc70f81c9fe3bb784a41f279", [ null, { @@ -547705,6 +556930,65 @@ ] } ] + ], + "non-transferable-buffers.any.js": [ + "2dcab69f42db0ddae10f8b8ee9457784c8bc44ba", + [ + null, + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,worker,jsshell" + ] + ] + } + ], + [ + "streams/readable-byte-streams/non-transferable-buffers.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell" + ] + ] + } + ], + [ + "streams/readable-byte-streams/non-transferable-buffers.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell" + ] + ] + } + ], + [ + "streams/readable-byte-streams/non-transferable-buffers.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell" + ] + ] + } + ], + [ + "streams/readable-byte-streams/non-transferable-buffers.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell" + ] + ] + } + ] ] }, "readable-streams": { @@ -548657,7 +557941,7 @@ ] ], "tee.any.js": [ - "e77bfe0cc15e605238d1f7d45c4c0bb5b8b97cfc", + "761f6e9c3599c19f78d7635eeca5cbe3bef2a4b7", [ null, { @@ -553177,14 +562461,14 @@ ] ], "getComputedStyle.svg": [ - "392c570e3525062886f7d4bda0ab7e006e3e370c", + "400f92ec84179ec140ecd2314ceae3341cd415ba", [ null, {} ] ], "serialization.svg": [ - "297f8ede687a28a12ced98a4b89051dd9ddf5090", + "3199beb92b2e86270799828ef3c3c4ab21bf0a53", [ null, {} @@ -553547,6 +562831,13 @@ ] }, "scripted": { + "getrotationofchar.html": [ + "766afe5f96da16565052449581f9b1e86604d43a", + [ + null, + {} + ] + ], "getsubstringlength-emoji-ligatures.html": [ "2b6061be5dbde360f259a3b3d3076ef21668961f", [ @@ -554464,7 +563755,7 @@ ] ], "idlharness.tentative.window.js": [ - "5a854a12b78026a3318dad70ffa0d6a690e39f55", + "07847fdb39ea21b3feeebc10501d3aa6bdf97881", [ "trusted-types/idlharness.tentative.window.html", { @@ -554716,8 +564007,15 @@ ] ] }, + "historical.html": [ + "d2d33b44c7050e2b5d235347b194f6acecdfbfdd", + [ + null, + {} + ] + ], "idlharness.window.js": [ - "f6a74b8a3a7ac579d1246938eb7419774d0ad821", + "c3919e355835cd9d7264a95efa5bc09ecc6a5e8d", [ "uievents/idlharness.window.html", { @@ -554741,14 +564039,14 @@ ], "interface": { "click-event.htm": [ - "ff78ae95a083ad6f74697b8adc3a0abb904d1cf8", + "b45dc29063e62eafffa8690a86dfeca3eb768c48", [ null, {} ] ], "keyboard-accesskey-click-event.html": [ - "fa1dc120ea715de81da8524c3ca33b9532826db3", + "9113d033791090ce36c25b29913995da663264b2", [ null, { @@ -554757,7 +564055,7 @@ ] ], "keyboard-click-event.html": [ - "d70b8cce6aba3662611c8dfde71a5b328770b257", + "2b5e06d9c1167ff762e38c36315d9e993ed9d243", [ null, { @@ -557093,7 +566391,7 @@ ] ], "failure.html": [ - "8f3d0299a40fdbff76e286cf45bc739cf2f3cf84", + "c22357b6c10749744ff079a84ab0f1e2c7c7f1b7", [ null, { @@ -557208,6 +566506,13 @@ {} ] ], + "url-setters-a-area.window.js": [ + "8c66f2883d3c2e864f4b3da3da9d5b48a4027136", + [ + "url/url-setters-a-area.window.html", + {} + ] + ], "url-setters-stripping.any.js": [ "3413c6cd5ad21d1913c00269ae054fdc2c7750d9", [ @@ -557219,10 +566524,14 @@ {} ] ], - "url-setters.html": [ - "db30cf0774da445a18d9a6755b97ad1e13083b99", + "url-setters.any.js": [ + "1cddf94a8ecca9766638160d3770e6c7160cbbdc", [ - null, + "url/url-setters.any.html", + {} + ], + [ + "url/url-setters.any.worker.html", {} ] ], @@ -557348,7 +566657,7 @@ ] ], "urlsearchparams-stringifier.any.js": [ - "bc7bedd533f58d526b1f16d288b8ec544dba992b", + "6187db64b1747d294a18cf0d2182b2f045d29a7b", [ "url/urlsearchparams-stringifier.any.html", {} @@ -557361,7 +566670,7 @@ }, "urlpattern": { "urlpattern.https.any.js": [ - "183e401f0ad735f4ac29d0fe64245ed8210e7cf5", + "1fa535a846fc568518e63a0c0f427eeb1c8c3762", [ "urlpattern/urlpattern.https.any.html", { @@ -558019,7 +567328,7 @@ ] ], "request-video-frame-callback.html": [ - "afc6b834d44b3e1e400c09f1c74dbfbb159fea3d", + "a4404143fa408ebbb8f49cc3180e065d200ffa4a", [ null, {} @@ -558071,6 +567380,13 @@ {} ] ], + "viewport-resize-event-on-iframe-size-change.html": [ + "802fee7879200a8e9352a54ba0a5f9719ca5f401", + [ + null, + {} + ] + ], "viewport-resize-event-on-load-overflowing-page.html": [ "d5dc1deae7279d3dc1b8c67a3a92e65c7a5e409d", [ @@ -561459,7 +570775,7 @@ ] ], "constructor.html": [ - "fcbaab1e8dbad3a64852c67931ba7be97b94b0d3", + "d599fd72ea6d1d429dad30008d11305afba52052", [ null, {} @@ -561882,14 +571198,14 @@ "web-bundle": { "subresource-loading": { "csp-allowed.https.tentative.html": [ - "72a7593c4a47cc343a805748f1c60f7bb55844eb", + "ceec6456405e20c6be25d7321584bc5549afcfb7", [ null, {} ] ], "csp-blocked.https.tentative.html": [ - "dc5ffb82f43812ace8f5b0347aa9be35f9c92829", + "319ae65c96776d6a8f13d50c836e9f7dd4e253c6", [ null, {} @@ -561910,21 +571226,21 @@ ] ], "subframe-from-web-bundle.https.tentative.html": [ - "f6f2b769d0f1230f225c8625a3982fea1bd4b15e", + "a5bd9bc2eb89e663391ce2b047f7648952f10360", [ null, {} ] ], "subresource-loading-cors-error.https.tentative.html": [ - "306ccb4ba2ff65720c8ddc92f3662ea67aae498b", + "43b1f36386f9196030e1a94d21ff7443a394aa90", [ null, {} ] ], "subresource-loading-cors.https.tentative.html": [ - "e65c50c9d1623608821aa40a9cd5dab21e03e49f", + "afbe3430a7df3e90d0657a9101f702fe42945f7d", [ null, {} @@ -561938,7 +571254,14 @@ ] ], "subresource-loading-from-web-bundle.https.tentative.html": [ - "77985fcb51b9347ce3d5923937367c6e1701cea1", + "bf432e3718ed4a689300ccc6d9f3ccca1386e117", + [ + null, + {} + ] + ], + "subresource-loading-link-element-is-removed.https.tentative.html": [ + "48f3587e663078d262f64325a2317261f9da4c36", [ null, {} @@ -561951,6 +571274,13 @@ {} ] ], + "subresource-loading-network-error.https.tentative.sub.html": [ + "23e71409b849fd73225ea3cdff556b9a21519d31", + [ + null, + {} + ] + ], "subresource-loading-path-restriction.https.tentative.html": [ "f7b50095652ae462f8cf524cded09718e92811d6", [ @@ -561965,6 +571295,13 @@ {} ] ], + "subresource-loading-resource-timing.https.tentative.html": [ + "7c0856fb01553bcb2452a0c4723ed8e7e532372e", + [ + null, + {} + ] + ], "subresource-loading-static-element-with-base.https.tentative.html": [ "d0a60a2f121de9ef59f682218c2fc0797f0932b0", [ @@ -561978,6 +571315,13 @@ null, {} ] + ], + "subresource-loading-webbundle-not-found.https.tentative.html": [ + "d54ffe095f17d6ffe6c8e4375610e527cb0acb0b", + [ + null, + {} + ] ] }, "wbn-from-network": { @@ -562078,7 +571422,7 @@ ] ], "frames.tentative.https.html": [ - "84760f2f40577bfed660fc29bc74feaeac04ea90", + "e88f6c082f419dca7f63585d96d08a3c25c38573", [ null, {} @@ -563345,7 +572689,7 @@ ] ], "realtimeanalyser-fft-scaling.html": [ - "6a0ab7d06eda5a67ca4262ea1ded49b03cc356b9", + "043bd5890a04c162720b401f2482bd6c1f26bcbc", [ null, {} @@ -563458,7 +572802,7 @@ ] ], "audiobuffersource-duration-loop.html": [ - "5fb8536b137ea7c18ff6d77bc29855e772e669f6", + "abb8983cc0b1b1306faff44239050af91b655153", [ null, {} @@ -563710,6 +573054,13 @@ {} ] ], + "audioparam-cancel-and-hold.html": [ + "0a8e7a7f2f67ab837a6ca17577afa018858e86bf", + [ + null, + {} + ] + ], "audioparam-close.html": [ "b5555b0137af4c1c8f6c5578de4bc9c5eedfe405", [ @@ -563759,6 +573110,13 @@ {} ] ], + "audioparam-nominal-range.html": [ + "517fc6e956745aeb27ab151305a81abbb637fb64", + [ + null, + {} + ] + ], "audioparam-setTargetAtTime.html": [ "faf00c007b375a365bbb6b00e4051d44852d0fdc", [ @@ -563774,7 +573132,7 @@ ] ], "audioparam-setValueCurve-exceptions.html": [ - "37062993f9dc8d90e2d418c842b30e20517bd21d", + "ed0c15fb9b3bdf5a9c79e48f97949b21ac05a952", [ null, {} @@ -563802,14 +573160,14 @@ ] ], "cancel-scheduled-values.html": [ - "0174922fe8a1a9afc4c504a21482767f88a81aeb", + "ac1da8cd51badb3243d32dc8f15a494f1866f583", [ null, {} ] ], "event-insertion.html": [ - "2eef895c8e8750bc25c45ba67c8c67c60e2f17bc", + "b846f982ab29faf2010dfac249f7ba031dcba172", [ null, {} @@ -564034,6 +573392,13 @@ {} ] ], + "audioworklet-registerprocessor-called-on-globalthis.https.html": [ + "718cadffc716f04548af6caeeca9e075846b6d46", + [ + null, + {} + ] + ], "audioworklet-suspend.https.html": [ "685546aeb5e2f96e77e9c88cec19946f2b0fcb16", [ @@ -564041,6 +573406,13 @@ {} ] ], + "audioworklet-throw-onmessage.https.html": [ + "3a480464e9d8ff9b8747eb02ada05c52f4d118e0", + [ + null, + {} + ] + ], "audioworkletglobalscope-sample-rate.https.html": [ "84458d0aaa77788b6de7ccd09b64f18a6bf9ede4", [ @@ -564864,6 +574236,13 @@ {} ] ], + "pannernode-setposition-throws.html": [ + "2053411943719d647ac0f17ac71d0beb742102c9", + [ + null, + {} + ] + ], "test-pannernode-automation.html": [ "ce474b10b5122eaf40b8b6d1af874ad7ec9bff70", [ @@ -564874,7 +574253,7 @@ }, "the-periodicwave-interface": { "periodicWave.html": [ - "bd42453001498c990bea27424eb4164d3196aee0", + "9048b7f5dad775cfa55e4749ad7057bf1636efc5", [ null, {} @@ -565113,6 +574492,26 @@ } ] ], + "credblob-not-supported.https.html": [ + "0f9514ba5e4022770cd9059f61c0581b3e0cd56c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "credblob-supported.https.html": [ + "c69091fbc4019038531de326c59141a09cea9a00", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "getcredential-badargs-rpid.https.html": [ "3f9d3f2177fd9624da6bebfabedae7c57f3152a8", [ @@ -565245,8 +574644,52 @@ ] }, "webcodecs": { + "audio-data-serialization.any.js": [ + "3d42aec8edf16a428c94cd0f06185af3df98d22a", + [ + "webcodecs/audio-data-serialization.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-data.any.js": [ + "e196cb8d8e896dbe7c8fa00b1945b2f7dbddfdcf", + [ + "webcodecs/audio-data.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], "audio-decoder.any.js": [ - "17f5520d2c7bfd40d2949d96d452f3142c70f438", + "b5f3b59fe6beacc38002c36e67ad652c13b6bb78", [ "webcodecs/audio-decoder.any.html", { @@ -565278,15 +574721,15 @@ } ] ], - "audio-encoder.any.js": [ - "0f1fe2e4cc9887c8ea12ffd810418a420673b97f", + "audio-encoder-config.any.js": [ + "a847473fbb52ca1d8307c83d1032b12e76f444d1", [ - "webcodecs/audio-encoder.any.html", + "webcodecs/audio-encoder-config.any.html", { "script_metadata": [ [ "global", - "window" + "window,dedicatedworker" ], [ "script", @@ -565294,21 +574737,32 @@ ] ] } - ] - ], - "audio-frame-serialization.any.js": [ - "a16207ff777037afded82f006dfb252b382a2b63", + ], [ - "webcodecs/audio-frame-serialization.any.html", + "webcodecs/audio-encoder-config.any.worker.html", { "script_metadata": [ [ "global", - "window" + "window,dedicatedworker" ], [ "script", - "/common/media.js" + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-encoder.any.js": [ + "7785b17d06c9549a1ce0f93229eb540c52a88e03", + [ + "webcodecs/audio-encoder.any.html", + { + "script_metadata": [ + [ + "global", + "window" ], [ "script", @@ -565326,7 +574780,7 @@ ] ], "image-decoder.any.js": [ - "c1780d5d2a0135351578ca26d1d26bff01438d48", + "1912e63f8c7c06786eb8b368796d65243de02f36", [ "webcodecs/image-decoder.any.html", { @@ -565359,7 +574813,7 @@ ] ], "video-decoder.any.js": [ - "48568c170fc6195d924ac2b14be85dff00d3709d", + "565134271d6dd4b1f7b60a31e1562837e2836072", [ "webcodecs/video-decoder.any.html", { @@ -565391,8 +574845,41 @@ } ] ], + "video-encoder-config.any.js": [ + "374d1e24cd782777545726f39508f4b6c3cf50c8", + [ + "webcodecs/video-encoder-config.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ], + [ + "webcodecs/video-encoder-config.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], "video-encoder.any.js": [ - "a7fc327e979c1caad54bdb55a8350d5e117fb1bd", + "f872b79fc8cfc9ced2de63e6bd566ba0f8631335", [ "webcodecs/video-encoder.any.html", { @@ -565433,7 +574920,7 @@ ] ], "video-frame-serialization.any.js": [ - "a0b28a299fbbf42711ae9b13be017cd175b29545", + "83b5ad060a09b10648eea6b07fd72303e9064c58", [ "webcodecs/video-frame-serialization.any.html", { @@ -565474,7 +574961,7 @@ ] ], "video-frame.any.js": [ - "07ab30c03272cca52611b211c42a79b27a02c80f", + "a3768a56677f21b7f1b77f99aa7a7a76e5cb8f9f", [ "webcodecs/video-frame.any.html", { @@ -565506,6 +574993,319 @@ } ] ], + "videoDecoder-codec-specific.any.js": [ + "e0820f1b8afa65415907d47962e30378a9d4d03a", + [ + "webcodecs/videoDecoder-codec-specific.any.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.html?h264_annexb", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.html?h264_avc", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.html?vp8", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.html?vp9", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.worker.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.worker.html?h264_annexb", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.worker.html?h264_avc", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.worker.html?vp8", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.any.worker.html?vp9", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ] + } + ] + ], "videoFrame-canvasImageSource.html": [ "78572693536f8362a7996e529ca30a0400acffce", [ @@ -565547,7 +575347,7 @@ ] ], "videoFrame-drawImage.any.js": [ - "bac4c8901907cbc7fd51138cd737180967249d64", + "1bd5f53af633b604ca5c2d9c82c8654773bb111e", [ "webcodecs/videoFrame-drawImage.any.html", { @@ -565579,8 +575379,33 @@ } ] ], + "videoFrame-readInto.any.js": [ + "c94252c87eeacf149f158dcf219f628efe09e671", + [ + "webcodecs/videoFrame-readInto.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } + ], + [ + "webcodecs/videoFrame-readInto.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } + ] + ], "videoFrame-texImage.any.js": [ - "4bb8ce1e5ed47e25452a30f2f809ec41697d39da", + "71a164e0ed997590013269f31f79e03b81fcdc2f", [ "webcodecs/videoFrame-texImage.any.html", { @@ -565897,10 +575722,14 @@ ] ], "broadcastchannel": { - "basics.html": [ - "3d8ba76fb1ba35658c44702059925fe53e3fb6f6", + "basics.any.js": [ + "68b4706028f5aaf29a78b123ad144a72656cfbe1", [ - null, + "webmessaging/broadcastchannel/basics.any.html", + {} + ], + [ + "webmessaging/broadcastchannel/basics.any.worker.html", {} ] ], @@ -565911,10 +575740,14 @@ {} ] ], - "interface.html": [ - "1733d2d17fafd84553c6da2ab6360a23167f7fda", + "interface.any.js": [ + "35e09d34b418d3c6d2a574bfdedc9e6632a6c09f", [ - null, + "webmessaging/broadcastchannel/interface.any.html", + {} + ], + [ + "webmessaging/broadcastchannel/interface.any.worker.html", {} ] ], @@ -566786,7 +576619,7 @@ ] ], "RTCDataChannel-send.html": [ - "1952921fbf26f2c6e9546000a1e9843b440824e8", + "d75245c3475c56cc98365876a3bdc4a666fb6308", [ null, { @@ -566978,7 +576811,7 @@ ] ], "RTCPeerConnection-getStats.https.html": [ - "49f88131c3e1f75b8b7cb926792f9ac71f41e8ee", + "f26a93ea28999e241e7374ff9d07f39412816aa1", [ null, {} @@ -567024,7 +576857,7 @@ ] ], "RTCPeerConnection-mandatory-getStats.https.html": [ - "7da14cd5e0f3f5c7e807b61cb0e7ecc7216ff007", + "f80fa5fe1f465cf946347f30d06ef8a9052af45c", [ null, { @@ -567169,7 +577002,7 @@ ] ], "RTCPeerConnection-setLocalDescription-pranswer.html": [ - "e4296aef139f19d08229c9450f61c30706147d24", + "01845f09b16ce1ff03747f039dee5de89b19a5ae", [ null, {} @@ -567501,13 +577334,6 @@ {} ] ], - "datachannel-emptystring.html": [ - "a9741c143f5e399abd334a54f5227a09c43396f3", - [ - null, - {} - ] - ], "getstats.html": [ "d6a692bb7860b9c6bd7699ba4e99ea8010922c08", [ @@ -567830,80 +577656,74 @@ ] } }, - "webrtc-extensions": { - "RTCOAuthCredential.html": [ - "63e92c6d087d3f3395651b9fd8ea583736bf7030", + "webrtc-encoded-transform": { + "RTCEncodedAudioFrame-serviceworker-failure.https.html": [ + "ea44485fe6f99b878d1bcd36343f5d46c382dae0", [ null, {} ] ], - "RTCRtpParameters-maxFramerate.html": [ - "c1d472386009d693835263483959a83d0e898048", + "RTCEncodedVideoFrame-serviceworker-failure.https.html": [ + "1d92302746b3ab4768441f157e20153077302120", [ null, {} ] ], - "RTCRtpReceiver-playoutDelayHint.html": [ - "29dfc19a6b68900679b06b3c3527c177c4e38b48", + "RTCPeerConnection-insertable-streams-audio.https.html": [ + "04282d0942cc1f8b733d9a48cab3a77a264b7f34", [ null, {} ] ], - "RTCRtpSynchronizationSource-captureTimestamp.html": [ - "11f2540c94602a9b4e685b9a5a309466c47fcccf", + "RTCPeerConnection-insertable-streams-errors.https.html": [ + "7eb0c71785790b884a81db18ab2ac820e5f648a8", [ null, - { - "timeout": "long" - } + {} ] ], - "RTCRtpTransceiver-headerExtensionControl.html": [ - "e823bd830c6e34c159dc511c05721a40b69586b1", + "RTCPeerConnection-insertable-streams-legacy.https.html": [ + "3138f1878ef64452eab56ba09cb5478dfca75b3b", [ null, {} ] - ] - }, - "webrtc-ice": { - "RTCIceTransport-extension.https.html": [ - "bb4d52adce5673bab5d527536d67f89a03a48cd2", + ], + "RTCPeerConnection-insertable-streams-simulcast.https.html": [ + "a34f4da5a94704ae02b5329cca87a7773af81ae3", [ null, {} ] - ] - }, - "webrtc-identity": { - "RTCPeerConnection-constructor.html": [ - "e7b7016338d8b8865b95098a0ec6f7eb2b65c4fb", + ], + "RTCPeerConnection-insertable-streams-video-frames.https.html": [ + "136f4ec9f4c2fec25e2ec4c95877dbf162162ffa", [ null, {} ] ], - "RTCPeerConnection-getIdentityAssertion.sub.https.html": [ - "57d7b16165ed365b439e68c9c1467123eb3d2f39", + "RTCPeerConnection-insertable-streams-video.https.html": [ + "25a41d320ef379b4c00dda17d3caedceedd071fe", [ null, {} ] ], - "RTCPeerConnection-peerIdentity.https.html": [ - "268e40621149e0d3aa00613f7f42e2ca6b5efdb0", + "RTCPeerConnection-insertable-streams-worker.https.html": [ + "04c9c106b873058176298d8deca1cad06ffc8049", [ null, {} ] ], "idlharness.https.window.js": [ - "8c7bf665ef69487f396519e9e6b45a010854bb3a", + "2c6ef19ca82a56c799b97b5eb9af3edb900a40b5", [ - "webrtc-identity/idlharness.https.window.html", + "webrtc-encoded-transform/idlharness.https.window.html", { "script_metadata": [ [ @@ -567913,80 +577733,183 @@ [ "script", "/resources/idlharness.js" + ], + [ + "script", + "./RTCPeerConnection-helper.js" ] ] } ] - ] - }, - "webrtc-insertable-streams": { - "RTCEncodedAudioFrame-serviceworker-failure.https.html": [ - "ea44485fe6f99b878d1bcd36343f5d46c382dae0", + ], + "script-audio-transform.https.html": [ + "ada05e49ef005d828762e7517706c2bf75c8c337", [ null, {} ] ], - "RTCEncodedVideoFrame-serviceworker-failure.https.html": [ - "1d92302746b3ab4768441f157e20153077302120", + "script-change-transform.https.html": [ + "bb878c5c196911b069241f411f644a1742381734", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-audio.https.html": [ - "04282d0942cc1f8b733d9a48cab3a77a264b7f34", + "script-late-transform.https.html": [ + "69ad0e199925275893ed6c733d6c05bde7032886", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-errors.https.html": [ - "7eb0c71785790b884a81db18ab2ac820e5f648a8", + "script-metadata-transform.https.html": [ + "e8e2b1289966d1216ea0befd616b36b003137791", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-legacy.https.html": [ - "3138f1878ef64452eab56ba09cb5478dfca75b3b", + "script-transform.https.html": [ + "29edd8af940091eedfde074111df4eac3343c2ad", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-simulcast.https.html": [ - "a34f4da5a94704ae02b5329cca87a7773af81ae3", + "script-write-twice-transform.https.html": [ + "3060aac9962818dfea5abfc4a880bfb0a4fdf149", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-video-frames.https.html": [ - "136f4ec9f4c2fec25e2ec4c95877dbf162162ffa", + "sframe-keys.https.html": [ + "5c0aab8d912ac65a159cd0a44c62f972545bbc98", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-video.https.html": [ - "25a41d320ef379b4c00dda17d3caedceedd071fe", + "sframe-transform-buffer-source.html": [ + "99b45f22c97e77a3f5bec7b8c321f383d867a1a7", [ null, {} ] ], - "RTCPeerConnection-insertable-streams-worker.https.html": [ - "04c9c106b873058176298d8deca1cad06ffc8049", + "sframe-transform-in-worker.https.html": [ + "471aff219a5c61b821e2b06326f63e42547286a5", + [ + null, + {} + ] + ], + "sframe-transform-readable.html": [ + "e6618250bd1873614b720d3d20244b5a9a21d67d", + [ + null, + {} + ] + ], + "sframe-transform.html": [ + "2e40135b04f4f85ba679b018028b3954257c17a8", + [ + null, + {} + ] + ] + }, + "webrtc-extensions": { + "RTCOAuthCredential.html": [ + "63e92c6d087d3f3395651b9fd8ea583736bf7030", + [ + null, + {} + ] + ], + "RTCRtpParameters-adaptivePtime.html": [ + "a0cc989c13da0b6533faadfa3ac123e6df898862", + [ + null, + {} + ] + ], + "RTCRtpParameters-maxFramerate.html": [ + "c1d472386009d693835263483959a83d0e898048", + [ + null, + {} + ] + ], + "RTCRtpReceiver-playoutDelayHint.html": [ + "29dfc19a6b68900679b06b3c3527c177c4e38b48", + [ + null, + {} + ] + ], + "RTCRtpSynchronizationSource-captureTimestamp.html": [ + "60b4ed0a74f556f149b308d0389d334dc5d5fda9", + [ + null, + { + "timeout": "long" + } + ] + ], + "RTCRtpSynchronizationSource-senderCaptureTimeOffset.html": [ + "63ad9bf888c3815b6a4c5d6b494077273aaf3dec", + [ + null, + { + "timeout": "long" + } + ] + ], + "RTCRtpTransceiver-headerExtensionControl.html": [ + "e823bd830c6e34c159dc511c05721a40b69586b1", + [ + null, + {} + ] + ] + }, + "webrtc-ice": { + "RTCIceTransport-extension.https.html": [ + "bb4d52adce5673bab5d527536d67f89a03a48cd2", + [ + null, + {} + ] + ] + }, + "webrtc-identity": { + "RTCPeerConnection-constructor.html": [ + "e7b7016338d8b8865b95098a0ec6f7eb2b65c4fb", + [ + null, + {} + ] + ], + "RTCPeerConnection-getIdentityAssertion.sub.https.html": [ + "57d7b16165ed365b439e68c9c1467123eb3d2f39", + [ + null, + {} + ] + ], + "RTCPeerConnection-peerIdentity.https.html": [ + "268e40621149e0d3aa00613f7f42e2ca6b5efdb0", [ null, {} ] ], "idlharness.https.window.js": [ - "86feb5277242a8ef8da5741bcb86e0f7cb2db2f9", + "8c7bf665ef69487f396519e9e6b45a010854bb3a", [ - "webrtc-insertable-streams/idlharness.https.window.html", + "webrtc-identity/idlharness.https.window.html", { "script_metadata": [ [ @@ -567996,10 +577919,6 @@ [ "script", "/resources/idlharness.js" - ], - [ - "script", - "./RTCPeerConnection-helper.js" ] ] } @@ -568060,7 +577979,7 @@ }, "webrtc-svc": { "RTCRtpParameters-scalability.html": [ - "98a8b3da81f70c9539b55d6f51dbfa9fc5cf183b", + "3a732f0cf77ff336eb91062c1e8cb2d692246b82", [ null, {} @@ -568069,2091 +577988,8494 @@ }, "websockets": { "Close-1000-reason.any.js": [ - "e8b49b5875bafe8e4e29b275c8d4709fea1e352f", + "6fc3c1fade8e70ca67fae93501e08b05624fefe6", [ "websockets/Close-1000-reason.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Close-1000-reason.any.worker.html", + "websockets/Close-1000-reason.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Close-1000.any.js": [ - "bcfceffbd54d3e71f7e45b03f703f01f8ad370a4", + ], [ - "websockets/Close-1000.any.html", + "websockets/Close-1000-reason.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Close-1000.any.worker.html", + "websockets/Close-1000-reason.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Close-Reason-124Bytes.any.js": [ - "d7fcdcb10c9474bd0b2cd4a5293991711f144918", + ], [ - "websockets/Close-Reason-124Bytes.any.html", + "websockets/Close-1000-reason.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Close-Reason-124Bytes.any.worker.html", + "websockets/Close-1000-reason.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Close-reason-unpaired-surrogates.any.js": [ - "0b2e6813cbcf106ed67020e142a9fbaeb2793842", + "Close-1000-verify-code.any.js": [ + "de50130660291f9cabb2db5f6780ac0189cda83a", [ - "websockets/Close-reason-unpaired-surrogates.any.html", + "websockets/Close-1000-verify-code.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Close-reason-unpaired-surrogates.any.worker.html", + "websockets/Close-1000-verify-code.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Close-undefined.any.js": [ - "67bc9b219c13353104a7e3e1b93905f26b4a6523", + ], [ - "websockets/Close-undefined.any.html", + "websockets/Close-1000-verify-code.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Close-undefined.any.worker.html", + "websockets/Close-1000-verify-code.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-Secure-extensions-empty.any.js": [ - "e5f2ff5ae6a7ea01b0e76db8eae0c36d33c5599b", + ], [ - "websockets/Create-Secure-extensions-empty.any.html", + "websockets/Close-1000-verify-code.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ - "timeout", - "long" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/Create-Secure-extensions-empty.any.worker.html", + "websockets/Close-1000-verify-code.any.worker.html?wss", { "script_metadata": [ [ - "timeout", - "long" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ] ], - "Create-Secure-url-with-space.any.js": [ - "1ff0d25927114c7c6064ad4080378e391e919520", + "Close-1000.any.js": [ + "f3100c6caaa3d2524be6721e41153a123f86ef2d", [ - "websockets/Create-Secure-url-with-space.any.html", + "websockets/Close-1000.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-url-with-space.any.worker.html", + "websockets/Close-1000.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-Secure-valid-url-array-protocols.any.js": [ - "b0ebe6a0dbe454e12a1040db90f4310c9bdeba3d", + ], [ - "websockets/Create-Secure-valid-url-array-protocols.any.html", + "websockets/Close-1000.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-valid-url-array-protocols.any.worker.html", + "websockets/Close-1000.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-Secure-valid-url-binaryType-blob.any.js": [ - "a639ee88ab290241696b498bb46501e515ee1235", + ], [ - "websockets/Create-Secure-valid-url-binaryType-blob.any.html", + "websockets/Close-1000.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-valid-url-binaryType-blob.any.worker.html", + "websockets/Close-1000.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-Secure-valid-url-protocol-setCorrectly.any.js": [ - "768e1bc46f6b81825ef997b4b8702b666207686c", + "Close-1005-verify-code.any.js": [ + "afa7d7b0d983fca5892cc602eae955f790a6b57f", [ - "websockets/Create-Secure-valid-url-protocol-setCorrectly.any.html", + "websockets/Close-1005-verify-code.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-valid-url-protocol-setCorrectly.any.worker.html", + "websockets/Close-1005-verify-code.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-Secure-valid-url-protocol-string.any.js": [ - "e1e661cf56771408bf8f8c038945431f5d315986", + ], [ - "websockets/Create-Secure-valid-url-protocol-string.any.html", + "websockets/Close-1005-verify-code.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-valid-url-protocol-string.any.worker.html", + "websockets/Close-1005-verify-code.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-Secure-valid-url.any.js": [ - "ab02a19e1374bf6561687f27594360bf50f71856", + ], [ - "websockets/Create-Secure-valid-url.any.html", + "websockets/Close-1005-verify-code.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-valid-url.any.worker.html", + "websockets/Close-1005-verify-code.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-Secure-verify-url-set-non-default-port.any.js": [ - "8ed985b58e2bd9fb33bfd39683a9f0504084fd62", + "Close-1005.any.js": [ + "514d03ac632431737e821619a54309b8a250b41d", [ - "websockets/Create-Secure-verify-url-set-non-default-port.any.html", + "websockets/Close-1005.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-Secure-verify-url-set-non-default-port.any.worker.html", + "websockets/Close-1005.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-asciiSep-protocol-string.any.js": [ - "e3f55fbc93020a85ee351334a5b4bcab19756b25", + ], [ - "websockets/Create-asciiSep-protocol-string.any.html", + "websockets/Close-1005.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-asciiSep-protocol-string.any.worker.html", + "websockets/Close-1005.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-blocked-port.any.js": [ - "53aa84d6cf5224cc757df427ee53c295405c33b1", + ], [ - "websockets/Create-blocked-port.any.html", + "websockets/Close-1005.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-blocked-port.any.worker.html", + "websockets/Close-1005.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-invalid-urls.any.js": [ - "5fe0bf4fba82fccdb129ae144d495c592eff1223", + "Close-2999-reason.any.js": [ + "95e481e53cf38c805b8af0c15a594296981289bf", [ - "websockets/Create-invalid-urls.any.html", + "websockets/Close-2999-reason.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-invalid-urls.any.worker.html", + "websockets/Close-2999-reason.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-non-absolute-url.any.js": [ - "543ba3731675c6866dbe9f3c4778414fb12c92f2", + ], [ - "websockets/Create-non-absolute-url.any.html", + "websockets/Close-2999-reason.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-non-absolute-url.any.worker.html", + "websockets/Close-2999-reason.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-nonAscii-protocol-string.any.js": [ - "85a8d368917c466dc6ca3b6d3dac0bfe801fb58d", + ], [ - "websockets/Create-nonAscii-protocol-string.any.html", + "websockets/Close-2999-reason.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-nonAscii-protocol-string.any.worker.html", + "websockets/Close-2999-reason.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-on-worker-shutdown.any.js": [ - "15f0368d93313a6b10ae85d87829faa0613a917b", + "Close-3000-reason.any.js": [ + "2db122934c787abab8a4c4a7b398c54f763b9991", [ - "websockets/Create-on-worker-shutdown.any.html", + "websockets/Close-3000-reason.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-on-worker-shutdown.any.worker.html", + "websockets/Close-3000-reason.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-protocol-with-space.any.js": [ - "e7c1bea4de345a81ce2da4f17d98ca737634ae7f", + ], [ - "websockets/Create-protocol-with-space.any.html", + "websockets/Close-3000-reason.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-protocol-with-space.any.worker.html", + "websockets/Close-3000-reason.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-protocols-repeated-case-insensitive.any.js": [ - "0b9bfecdc724f10d0c251bf897999e1ffd19bef6", + ], [ - "websockets/Create-protocols-repeated-case-insensitive.any.html", + "websockets/Close-3000-reason.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-protocols-repeated-case-insensitive.any.worker.html", + "websockets/Close-3000-reason.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-protocols-repeated.any.js": [ - "67cfa1f122ff4eea01b38e9fb2247bb005bc4689", + "Close-3000-verify-code.any.js": [ + "bfa441f1ee4d6161c7c8f29a8d27d4145aef6795", [ - "websockets/Create-protocols-repeated.any.html", + "websockets/Close-3000-verify-code.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-protocols-repeated.any.worker.html", + "websockets/Close-3000-verify-code.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-valid-url-array-protocols.any.js": [ - "f8161334e5e0f3cd739daa4bf6ca3ed871d95b8a", + ], [ - "websockets/Create-valid-url-array-protocols.any.html", + "websockets/Close-3000-verify-code.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-valid-url-array-protocols.any.worker.html", + "websockets/Close-3000-verify-code.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-valid-url-protocol-empty.any.js": [ - "0bf2ff53bbc8e1fa84fa4b2728c7a3f24cd14ef8", + ], [ - "websockets/Create-valid-url-protocol-empty.any.html", + "websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-valid-url-protocol-empty.any.worker.html", + "websockets/Close-3000-verify-code.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-valid-url-protocol.any.js": [ - "2dcae27f1a66e52ee2674b7a08216bc5abdae87d", + "Close-4999-reason.any.js": [ + "3516dc2f462d97aa52a21f2d4d308c422423d12c", [ - "websockets/Create-valid-url-protocol.any.html", + "websockets/Close-4999-reason.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-valid-url-protocol.any.worker.html", + "websockets/Close-4999-reason.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-valid-url.any.js": [ - "b84e2118a1d6d98b8b717f38360181b1100fb606", + ], [ - "websockets/Create-valid-url.any.html", + "websockets/Close-4999-reason.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-valid-url.any.worker.html", + "websockets/Close-4999-reason.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Create-verify-url-set-non-default-port.any.js": [ - "56116719682f11349e0bee4a12219c8a2f90905a", + ], [ - "websockets/Create-verify-url-set-non-default-port.any.html", + "websockets/Close-4999-reason.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Create-verify-url-set-non-default-port.any.worker.html", + "websockets/Close-4999-reason.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Create-wrong-scheme.any.js": [ - "affe346d6e1caa6347abb165e3774d08ed45bf42", + "Close-Reason-124Bytes.any.js": [ + "aa7fc8ffe83818daeb7faf630e2196f454d0735c", [ - "websockets/Create-wrong-scheme.any.html", + "websockets/Close-Reason-124Bytes.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Create-wrong-scheme.any.worker.html", + "websockets/Close-Reason-124Bytes.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Close-1000-reason.any.js": [ - "8f289875d9ff3e428ff34cd45a32888041dd80c9", + ], [ - "websockets/Secure-Close-1000-reason.any.html", + "websockets/Close-Reason-124Bytes.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Close-1000-reason.any.worker.html", + "websockets/Close-Reason-124Bytes.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Close-1000-verify-code.any.js": [ - "a812e0d62c8792945c6c62bafb5f591759a2f624", + ], [ - "websockets/Secure-Close-1000-verify-code.any.html", + "websockets/Close-Reason-124Bytes.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Close-1000-verify-code.any.worker.html", + "websockets/Close-Reason-124Bytes.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ] ], - "Secure-Close-1000.any.js": [ - "2c7e5e9c63d53125ffe7a55929635ce334d988a8", + "Close-onlyReason.any.js": [ + "7c5d10d2a833b97a32863e498f30c225774828ba", [ - "websockets/Secure-Close-1000.any.html", + "websockets/Close-onlyReason.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-1000.any.worker.html", + "websockets/Close-onlyReason.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-1005-verify-code.any.js": [ - "aa8e37ea2245cff6bee993a080aa437f1abe48e3", + ], [ - "websockets/Secure-Close-1005-verify-code.any.html", + "websockets/Close-onlyReason.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-1005-verify-code.any.worker.html", + "websockets/Close-onlyReason.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-1005.any.js": [ - "dc0d0550f23aa20b36893df00465b21a31e924ad", + ], [ - "websockets/Secure-Close-1005.any.html", + "websockets/Close-onlyReason.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-1005.any.worker.html", + "websockets/Close-onlyReason.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Close-2999-reason.any.js": [ - "f90a95acf7fa0ea52d26bd727a46adbd5e38e3f5", + "Close-readyState-Closed.any.js": [ + "bfd61c48c14aa28ca61f703937432a181f22cbd0", [ - "websockets/Secure-Close-2999-reason.any.html", + "websockets/Close-readyState-Closed.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-2999-reason.any.worker.html", + "websockets/Close-readyState-Closed.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-3000-reason.any.js": [ - "d2266ddc0222efe2c2a0c589c65bace0264861f9", + ], [ - "websockets/Secure-Close-3000-reason.any.html", + "websockets/Close-readyState-Closed.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-3000-reason.any.worker.html", + "websockets/Close-readyState-Closed.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-3000-verify-code.any.js": [ - "bbd5bbb22a897ed303aa71dd174b12dfbe39301b", + ], [ - "websockets/Secure-Close-3000-verify-code.any.html", + "websockets/Close-readyState-Closed.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-3000-verify-code.any.worker.html", + "websockets/Close-readyState-Closed.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Close-4999-reason.any.js": [ - "b8429cf97b5b1654a0d93f53c4421435e132e514", + "Close-readyState-Closing.any.js": [ + "554744d6297e3b843a288393c9c0969dce7ca96b", [ - "websockets/Secure-Close-4999-reason.any.html", + "websockets/Close-readyState-Closing.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-4999-reason.any.worker.html", + "websockets/Close-readyState-Closing.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-Reason-124Bytes.any.js": [ - "aaaac8e113b66d8f512fb9be19a22a03a3c15fea", + ], [ - "websockets/Secure-Close-Reason-124Bytes.any.html", + "websockets/Close-readyState-Closing.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-Reason-124Bytes.any.worker.html", + "websockets/Close-readyState-Closing.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-Reason-Unpaired-surrogates.any.js": [ - "a7b9ea4bb6424160ced80e726cac835961a19b3b", + ], [ - "websockets/Secure-Close-Reason-Unpaired-surrogates.any.html", + "websockets/Close-readyState-Closing.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-Reason-Unpaired-surrogates.any.worker.html", + "websockets/Close-readyState-Closing.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Close-onlyReason.any.js": [ - "66e8a7f68861ddb12dc266641f580d95cb35982b", + "Close-reason-unpaired-surrogates.any.js": [ + "647a1216b99ce4f89fe8f2bac65aa2f2bd35c1f6", [ - "websockets/Secure-Close-onlyReason.any.html", + "websockets/Close-reason-unpaired-surrogates.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-onlyReason.any.worker.html", + "websockets/Close-reason-unpaired-surrogates.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-readyState-Closed.any.js": [ - "0dd46f14be148357c02e8878b77ddc66360b968c", + ], [ - "websockets/Secure-Close-readyState-Closed.any.html", + "websockets/Close-reason-unpaired-surrogates.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-readyState-Closed.any.worker.html", + "websockets/Close-reason-unpaired-surrogates.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Close-readyState-Closing.any.js": [ - "690ca83a2b3fbc4a850626167395625b38da919b", + ], [ - "websockets/Secure-Close-readyState-Closing.any.html", + "websockets/Close-reason-unpaired-surrogates.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Close-readyState-Closing.any.worker.html", + "websockets/Close-reason-unpaired-surrogates.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Close-server-initiated-close.any.js": [ - "800fbc40e1d15ef407ba824a6424de91dc22188c", + "Close-server-initiated-close.any.js": [ + "c86793b23a1d8c9592d74c3f5e13dacd57e9a643", [ - "websockets/Secure-Close-server-initiated-close.any.html", + "websockets/Close-server-initiated-close.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Close-server-initiated-close.any.worker.html", + "websockets/Close-server-initiated-close.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Close-undefined.any.js": [ - "31b36e4d955d4c2a5d6a3e54867f47efd97253a6", + ], [ - "websockets/Secure-Close-undefined.any.html", + "websockets/Close-server-initiated-close.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Close-undefined.any.worker.html", + "websockets/Close-server-initiated-close.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Send-65K-data.any.js": [ - "ca876534339d7b61eef58552bf8e028f3b9caa7b", + ], [ - "websockets/Secure-Send-65K-data.any.html", + "websockets/Close-server-initiated-close.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Send-65K-data.any.worker.html", + "websockets/Close-server-initiated-close.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ] ], - "Secure-Send-binary-65K-arraybuffer.any.js": [ - "0627e7554e6e77d2e4ce1bee28cb2d0022b4ae77", + "Close-undefined.any.js": [ + "a8106c6f155a7aa8357529be3f39c1195ce686b9", [ - "websockets/Secure-Send-binary-65K-arraybuffer.any.html", + "websockets/Close-undefined.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Send-binary-65K-arraybuffer.any.worker.html", + "websockets/Close-undefined.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Send-binary-arraybuffer.any.js": [ - "5778a241fffd2c1c3eab0fff86a4b089c403d137", + ], [ - "websockets/Secure-Send-binary-arraybuffer.any.html", + "websockets/Close-undefined.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Send-binary-arraybuffer.any.worker.html", + "websockets/Close-undefined.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Secure-Send-binary-arraybufferview-float32.any.js": [ - "2672319d40e0dbe976386ce82543b63171526b5a", + ], [ - "websockets/Secure-Send-binary-arraybufferview-float32.any.html", + "websockets/Close-undefined.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-float32.any.worker.html", + "websockets/Close-undefined.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ] ], - "Secure-Send-binary-arraybufferview-float64.any.js": [ - "993d5fc07e7167939678496cbf4e7ce467161527", + "Create-asciiSep-protocol-string.any.js": [ + "1221c5611459199e77f0e3dc67aadcb9292dfc45", [ - "websockets/Secure-Send-binary-arraybufferview-float64.any.html", + "websockets/Create-asciiSep-protocol-string.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-float64.any.worker.html", + "websockets/Create-asciiSep-protocol-string.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-binary-arraybufferview-int32.any.js": [ - "58fe02b2505902823fc94b020db0ceea1652a647", + ], [ - "websockets/Secure-Send-binary-arraybufferview-int32.any.html", + "websockets/Create-asciiSep-protocol-string.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-int32.any.worker.html", + "websockets/Create-asciiSep-protocol-string.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-binary-arraybufferview-uint16-offset-length.any.js": [ - "26231b411f0256c65c25de8b854688713e2d9b7e", + ], [ - "websockets/Secure-Send-binary-arraybufferview-uint16-offset-length.any.html", + "websockets/Create-asciiSep-protocol-string.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-uint16-offset-length.any.worker.html", + "websockets/Create-asciiSep-protocol-string.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Send-binary-arraybufferview-uint32-offset.any.js": [ - "d2995ae539f156e01ba71b910346be2586ca7aaa", + "Create-blocked-port.any.js": [ + "4e5af19794f5a78f18301644c53b9bfdedc439bc", [ - "websockets/Secure-Send-binary-arraybufferview-uint32-offset.any.html", + "websockets/Create-blocked-port.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-uint32-offset.any.worker.html", + "websockets/Create-blocked-port.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-binary-arraybufferview-uint8-offset-length.any.js": [ - "90d9d9d51f85a58e48869fb0c2173c14808f2ff9", + ], [ - "websockets/Secure-Send-binary-arraybufferview-uint8-offset-length.any.html", + "websockets/Create-blocked-port.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-uint8-offset-length.any.worker.html", + "websockets/Create-blocked-port.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-binary-arraybufferview-uint8-offset.any.js": [ - "ce2e6081dd2bbacec91e588f024d8e5eb7967ad6", + ], [ - "websockets/Secure-Send-binary-arraybufferview-uint8-offset.any.html", + "websockets/Create-blocked-port.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-binary-arraybufferview-uint8-offset.any.worker.html", + "websockets/Create-blocked-port.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Secure-Send-binary-blob.any.js": [ - "f532dfbf83ab91f429eb793d5f95fe8d8856baa9", + "Create-extensions-empty.any.js": [ + "1fba4bd2cc5a61556256167a97613d51517b210e", [ - "websockets/Secure-Send-binary-blob.any.html", + "websockets/Create-extensions-empty.any.html", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } ], [ - "websockets/Secure-Send-binary-blob.any.worker.html", + "websockets/Create-extensions-empty.any.html?wpt_flags=h2", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } - ] - ], - "Secure-Send-data.any.js": [ - "78de87cc78be78c60237c24a0f1d744f5bdb1249", + ], [ - "websockets/Secure-Send-data.any.html", + "websockets/Create-extensions-empty.any.html?wss", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } ], [ - "websockets/Secure-Send-data.any.worker.html", + "websockets/Create-extensions-empty.any.worker.html", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } - ] - ], - "Secure-Send-null.any.js": [ - "bf644c6de880bd17a8781b5f20103a297424c9c7", + ], [ - "websockets/Secure-Send-null.any.html", + "websockets/Create-extensions-empty.any.worker.html?wpt_flags=h2", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } ], [ - "websockets/Secure-Send-null.any.worker.html", + "websockets/Create-extensions-empty.any.worker.html?wss", { "script_metadata": [ + [ + "timeout", + "long" + ], [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] - ] + ], + "timeout": "long" } ] ], - "Secure-Send-paired-surrogates.any.js": [ - "f53b9d522acc50a6dd86c1269a828b2abe5ec094", + "Create-invalid-urls.any.js": [ + "89783a9ea7439ca1c9c7eb7ed74b5a05792e3842", [ - "websockets/Secure-Send-paired-surrogates.any.html", + "websockets/Create-invalid-urls.any.html", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-paired-surrogates.any.worker.html", + "websockets/Create-invalid-urls.any.html?wpt_flags=h2", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-unicode-data.any.js": [ - "7156698510b9a54f6c0369bb41306ac1a1717961", + ], [ - "websockets/Secure-Send-unicode-data.any.html", + "websockets/Create-invalid-urls.any.html?wss", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-unicode-data.any.worker.html", + "websockets/Create-invalid-urls.any.worker.html", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Secure-Send-unpaired-surrogates.any.js": [ - "00d8589ed7fde5d9e2e6012c307ac3144a9acb12", + ], [ - "websockets/Secure-Send-unpaired-surrogates.any.html", + "websockets/Create-invalid-urls.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Secure-Send-unpaired-surrogates.any.worker.html", + "websockets/Create-invalid-urls.any.worker.html?wss", { "script_metadata": [ [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Send-0byte-data.any.js": [ - "b335a1fc151655b598b878b020e40eee0fd36ab8", + "Create-non-absolute-url.any.js": [ + "8d533fd2e04f14274c6639e68fc9a3ae9dd8fe90", [ - "websockets/Send-0byte-data.any.html", + "websockets/Create-non-absolute-url.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-0byte-data.any.worker.html", + "websockets/Create-non-absolute-url.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-65K-data.any.js": [ - "ad74327fa8157c4235ced2459e73d5bc216dd5b3", + ], [ - "websockets/Send-65K-data.any.html", + "websockets/Create-non-absolute-url.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-65K-data.any.worker.html", + "websockets/Create-non-absolute-url.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-Unpaired-Surrogates.any.js": [ - "820fb3115714a37d42df0bd3008daae1cd494b34", + ], [ - "websockets/Send-Unpaired-Surrogates.any.html", + "websockets/Create-non-absolute-url.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-Unpaired-Surrogates.any.worker.html", + "websockets/Create-non-absolute-url.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Send-before-open.any.js": [ - "fed8f519932a156fbe63eac240351e693636b2b3", + "Create-nonAscii-protocol-string.any.js": [ + "1b56cc914b7d4a2a311c0969791118c67ba51b7b", [ - "websockets/Send-before-open.any.html", + "websockets/Create-nonAscii-protocol-string.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-before-open.any.worker.html", + "websockets/Create-nonAscii-protocol-string.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-binary-65K-arraybuffer.any.js": [ - "394a902c8d70258e482c650baafd3509ee3a73d9", + ], [ - "websockets/Send-binary-65K-arraybuffer.any.html", + "websockets/Create-nonAscii-protocol-string.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-binary-65K-arraybuffer.any.worker.html", + "websockets/Create-nonAscii-protocol-string.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-binary-arraybuffer.any.js": [ - "24618293fb8ba537321bd4d7d3b552e00d2d0fa2", + ], [ - "websockets/Send-binary-arraybuffer.any.html", + "websockets/Create-nonAscii-protocol-string.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-binary-arraybuffer.any.worker.html", + "websockets/Create-nonAscii-protocol-string.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Send-binary-arraybufferview-int16-offset.any.js": [ - "a32b1391dc79693cf5779c00809650ee1782cc5e", + "Create-on-worker-shutdown.any.js": [ + "218bf7cf196c6df3c193e4a8c53f57a769328d74", [ - "websockets/Send-binary-arraybufferview-int16-offset.any.html", + "websockets/Create-on-worker-shutdown.any.html", + {} + ], + [ + "websockets/Create-on-worker-shutdown.any.worker.html", + {} + ] + ], + "Create-protocol-with-space.any.js": [ + "f49d1fec0c392f83e9c01f2ff6ca59d4df782d84", + [ + "websockets/Create-protocol-with-space.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Send-binary-arraybufferview-int16-offset.any.worker.html", + "websockets/Create-protocol-with-space.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Send-binary-arraybufferview-int8.any.js": [ - "d9e50b511d44164af55c486d1da78a19c4bb7eb1", + ], [ - "websockets/Send-binary-arraybufferview-int8.any.html", + "websockets/Create-protocol-with-space.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Send-binary-arraybufferview-int8.any.worker.html", + "websockets/Create-protocol-with-space.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "Send-binary-blob.any.js": [ - "12d2a83785dde0eb752907a45992f8752d70102b", + ], [ - "websockets/Send-binary-blob.any.html", + "websockets/Create-protocol-with-space.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/Send-binary-blob.any.worker.html", + "websockets/Create-protocol-with-space.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ] ], - "Send-data.any.js": [ - "98a866b29493145b34738c2db187d670e7f27318", + "Create-protocols-repeated-case-insensitive.any.js": [ + "41f78396fc3b77ad795eda099a87206e2411281d", [ - "websockets/Send-data.any.html", + "websockets/Create-protocols-repeated-case-insensitive.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-data.any.worker.html", + "websockets/Create-protocols-repeated-case-insensitive.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-data.worker.js": [ - "6d4f693d053266f9982ff2eabcac617d61019857", - [ - "websockets/Send-data.worker.html", - {} - ] - ], - "Send-null.any.js": [ - "ac1a1b29826652e35c384653aacf79cbee2de7c3", + ], [ - "websockets/Send-null.any.html", + "websockets/Create-protocols-repeated-case-insensitive.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-null.any.worker.html", + "websockets/Create-protocols-repeated-case-insensitive.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "Send-paired-surrogates.any.js": [ - "003b04010a8affbf61f32ab3a7974f5b278977a9", + ], [ - "websockets/Send-paired-surrogates.any.html", + "websockets/Create-protocols-repeated-case-insensitive.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-paired-surrogates.any.worker.html", + "websockets/Create-protocols-repeated-case-insensitive.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "Send-unicode-data.any.js": [ - "59292546db11f69b3b25ca7cce37f029f928ea33", + "Create-protocols-repeated.any.js": [ + "fc7d1b6ad2ffd65c507670f67bd198057aedbc88", [ - "websockets/Send-unicode-data.any.html", + "websockets/Create-protocols-repeated.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/Send-unicode-data.any.worker.html", + "websockets/Create-protocols-repeated.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "basic-auth.any.js": [ - "447bcdefbe5fb786de31faffc9c4462948f4e2ba", + ], [ - "websockets/basic-auth.any.html", + "websockets/Create-protocols-repeated.any.html?wss", { "script_metadata": [ [ - "global", - "window,worker" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/basic-auth.any.serviceworker.html", + "websockets/Create-protocols-repeated.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/basic-auth.any.sharedworker.html", + "websockets/Create-protocols-repeated.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ - "global", - "window,worker" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/basic-auth.any.worker.html", + "websockets/Create-protocols-repeated.any.worker.html?wss", { "script_metadata": [ [ - "global", - "window,worker" + "script", + "constants.sub.js" ], [ - "script", - "websocket.sub.js" + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], - "binary": { - "001.html": [ - "4ac6738414f80f3f1506882a0cb0e39bac0dc617", - [ - null, - {} - ], - [ - "websockets/binary/001.html?wpt_flags=h2", - {} - ], - [ - "websockets/binary/001.html?wss", - {} - ] - ], - "002.html": [ - "1ba35c4641a201e347a2f889573d6451e79a4a3d", - [ - null, - { - "timeout": "long" - } - ], - [ - "websockets/binary/002.html?wpt_flags=h2", - { - "timeout": "long" - } - ], - [ - "websockets/binary/002.html?wss", - { - "timeout": "long" - } - ] - ], - "004.html": [ - "3318eac0a96b49dec4f856d5dc94982908c1b41f", - [ - null, - { - "timeout": "long" - } - ], - [ - "websockets/binary/004.html?wpt_flags=h2", - { - "timeout": "long" - } - ], - [ - "websockets/binary/004.html?wss", - { - "timeout": "long" - } - ] + "Create-url-with-space.any.js": [ + "d1e1ea1cba924970db4755eccc83f79b166038aa", + [ + "websockets/Create-url-with-space.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } ], - "005.html": [ - "22ff127a1e205fdd507b5e36660fc9a3a26280b3", - [ - null, - {} - ], - [ - "websockets/binary/005.html?wpt_flags=h2", - {} - ], - [ - "websockets/binary/005.html?wss", - {} - ] - ] - }, - "binaryType-wrong-value.any.js": [ - "61ac6a19ffd07bf6cb942bc325282ff0b902ace1", [ - "websockets/binaryType-wrong-value.any.html", + "websockets/Create-url-with-space.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/binaryType-wrong-value.any.worker.html", + "websockets/Create-url-with-space.any.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "bufferedAmount-unchanged-by-sync-xhr.any.js": [ - "53ca67e269bfe6adab16bb2d67c5b6cd4f799876", + ], [ - "websockets/bufferedAmount-unchanged-by-sync-xhr.any.html", + "websockets/Create-url-with-space.any.worker.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" ], [ - "global", - "window,dedicatedworker,sharedworker" + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/bufferedAmount-unchanged-by-sync-xhr.any.sharedworker.html", + "websockets/Create-url-with-space.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" ], [ - "global", - "window,dedicatedworker,sharedworker" + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html", + "websockets/Create-url-with-space.any.worker.html?wss", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" ], [ - "global", - "window,dedicatedworker,sharedworker" + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ] ], - "close-invalid.any.js": [ - "32d6d5d3e295baa9523cad4f3becb6ffb72125a7", + "Create-valid-url-array-protocols.any.js": [ + "00ab1ca9873248013dfaab04720befb8c0083f1f", [ - "websockets/close-invalid.any.html", + "websockets/Create-valid-url-array-protocols.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } ], [ - "websockets/close-invalid.any.worker.html", + "websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" ] ] } - ] - ], - "closing-handshake": { - "002.html": [ - "c5c8ac5d336d73160aeba8d588278dd3f3f2d991", - [ - null, - {} - ], - [ - "websockets/closing-handshake/002.html?wpt_flags=h2", + ], + [ + "websockets/Create-valid-url-array-protocols.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-array-protocols.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-array-protocols.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-array-protocols.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-valid-url-binaryType-blob.any.js": [ + "59eec8e29d3e52648e21ace92a81df64bb65b1da", + [ + "websockets/Create-valid-url-binaryType-blob.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-binaryType-blob.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-binaryType-blob.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-binaryType-blob.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-binaryType-blob.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-binaryType-blob.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-valid-url-protocol-empty.any.js": [ + "9e1de6dab46c5d7e3bc8bcaf2a49bb227e7c2411", + [ + "websockets/Create-valid-url-protocol-empty.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-empty.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-empty.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-empty.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-empty.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-empty.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-valid-url-protocol-setCorrectly.any.js": [ + "bb1f32fbce1fa6a823db5947cc691e52ae02d8b9", + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-valid-url-protocol-string.any.js": [ + "4f730db94f7ef2720f7d564e13b3740bd9554ba2", + [ + "websockets/Create-valid-url-protocol-string.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-string.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-string.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-string.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol-string.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Create-valid-url-protocol.any.js": [ + "599a9eb8f1b350cf79900620002c183aef4dd1d9", + [ + "websockets/Create-valid-url-protocol.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url-protocol.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-valid-url.any.js": [ + "edb27f61d3c33c9028e4fd178d5a3d795ca23b1a", + [ + "websockets/Create-valid-url.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Create-valid-url.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Create-wrong-scheme.any.js": [ + "00cfffece601c7f136d08ace80ea957e2db1ff10", + [ + "websockets/Create-wrong-scheme.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-wrong-scheme.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-wrong-scheme.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-wrong-scheme.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-wrong-scheme.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Create-wrong-scheme.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-0byte-data.any.js": [ + "b984b641084a3cddbf1b757aa794532ab708000c", + [ + "websockets/Send-0byte-data.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-0byte-data.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-0byte-data.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-0byte-data.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-0byte-data.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-0byte-data.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-65K-data.any.js": [ + "5c3437999b99a40e0676534a9748e4d503b34f3e", + [ + "websockets/Send-65K-data.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-65K-data.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-65K-data.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-65K-data.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-65K-data.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-65K-data.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-before-open.any.js": [ + "5982535583fbb5da6d9889450597314c5c29060c", + [ + "websockets/Send-before-open.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-before-open.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-before-open.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-before-open.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-before-open.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-before-open.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-binary-65K-arraybuffer.any.js": [ + "1e02ac2d37f99c5ab4d4d8b3639786b1a738db46", + [ + "websockets/Send-binary-65K-arraybuffer.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-65K-arraybuffer.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-65K-arraybuffer.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-65K-arraybuffer.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-65K-arraybuffer.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybuffer.any.js": [ + "5c985edd61638688eb73dd4ca7912372d123cac9", + [ + "websockets/Send-binary-arraybuffer.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybuffer.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybuffer.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybuffer.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybuffer.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybuffer.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-float32.any.js": [ + "9a8e3426f49c3ae6815f2a672be0c716569fdd0c", + [ + "websockets/Send-binary-arraybufferview-float32.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float32.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float32.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float32.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float32.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float32.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-float64.any.js": [ + "d71d2d8c58f5d5d0d285320d59e0f42c13e4031c", + [ + "websockets/Send-binary-arraybufferview-float64.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float64.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float64.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float64.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float64.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float64.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-int16-offset.any.js": [ + "bb77d300ad1f9c1d435a0c5e7b648b8e4d1f2b60", + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-int32.any.js": [ + "f4312e410ab738f086b576fe656c9a4046fff266", + [ + "websockets/Send-binary-arraybufferview-int32.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int32.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int32.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int32.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int32.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int32.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-int8.any.js": [ + "f2374fb413908548f9d9d5e4ada145dbac4af4cb", + [ + "websockets/Send-binary-arraybufferview-int8.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int8.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int8.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-int8.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-uint16-offset-length.any.js": [ + "f917a3af007d8ca29df385c1397dbcb6378f526f", + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-uint32-offset.any.js": [ + "33758dc65449e5fd662abd042be6373a1fd1abbe", + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-uint8-offset-length.any.js": [ + "1d256dbdca128771040325541ecb61f72a3e42c5", + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-arraybufferview-uint8-offset.any.js": [ + "43e9fe6849919049af67a66c8b71cc3b5f159c14", + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-binary-blob.any.js": [ + "56c89a1b53c4e5e87fa30c3b64f669f7dfe94d78", + [ + "websockets/Send-binary-blob.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-blob.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-blob.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-blob.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-blob.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-blob.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-data.any.js": [ + "203ab54dffc62b9b7b28e8344d573a0e911b9570", + [ + "websockets/Send-data.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-data.worker.js": [ + "b141fb382070307751b742f6f5f516fc32872264", + [ + "websockets/Send-data.worker.html", + { + "script_metadata": [ + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-data.worker.html?wss", + { + "script_metadata": [ + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "Send-null.any.js": [ + "a12eaf9c591af8ddfe95c75aef34cb5fd309d160", + [ + "websockets/Send-null.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-null.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-null.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-null.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-null.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-null.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-paired-surrogates.any.js": [ + "e2dc004bfcf4e9e5d1b71d65d8c69b2fd6efc715", + [ + "websockets/Send-paired-surrogates.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-paired-surrogates.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-paired-surrogates.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-paired-surrogates.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-paired-surrogates.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-paired-surrogates.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-unicode-data.any.js": [ + "f22094a243c96d1cb0777db3cfa975bf0fbff9e3", + [ + "websockets/Send-unicode-data.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-unicode-data.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-unicode-data.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-unicode-data.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-unicode-data.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-unicode-data.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], + "Send-unpaired-surrogates.any.js": [ + "1cb5d0ac9cd49647fc384c077dbbc194a4edb051", + [ + "websockets/Send-unpaired-surrogates.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-unpaired-surrogates.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-unpaired-surrogates.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-unpaired-surrogates.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/Send-unpaired-surrogates.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "basic-auth.any.js": [ + "9fbdc5d5cede4050d414bed45a3b8c55689c6c08", + [ + "websockets/basic-auth.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.html?wss", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.serviceworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.serviceworker.html?wss", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.sharedworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.sharedworker.html?wss", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/basic-auth.any.worker.html?wss", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "binary": { + "001.html": [ + "21ffff40eb0f3fb225cecc2b698c54d779ab8d0b", + [ + null, + {} + ], + [ + "websockets/binary/001.html?wpt_flags=h2", + {} + ], + [ + "websockets/binary/001.html?wss", + {} + ] + ], + "002.html": [ + "ffd1ee7a7a27510d88c23501791adef70e57572d", + [ + null, + { + "timeout": "long" + } + ], + [ + "websockets/binary/002.html?wpt_flags=h2", + { + "timeout": "long" + } + ], + [ + "websockets/binary/002.html?wss", + { + "timeout": "long" + } + ] + ], + "004.html": [ + "76bb902cf95b258d802a8c315179179cfd5a7822", + [ + null, + { + "timeout": "long" + } + ], + [ + "websockets/binary/004.html?wpt_flags=h2", + { + "timeout": "long" + } + ], + [ + "websockets/binary/004.html?wss", + { + "timeout": "long" + } + ] + ], + "005.html": [ + "9b8b2c4edfd54049044e77e9d9d9ec0309c567a5", + [ + null, + {} + ], + [ + "websockets/binary/005.html?wpt_flags=h2", + {} + ], + [ + "websockets/binary/005.html?wss", + {} + ] + ] + }, + "binaryType-wrong-value.any.js": [ + "007510d030bff14d1cc0d5198f850d5ad5e96a48", + [ + "websockets/binaryType-wrong-value.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/binaryType-wrong-value.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/binaryType-wrong-value.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/binaryType-wrong-value.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/binaryType-wrong-value.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/binaryType-wrong-value.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "bufferedAmount-unchanged-by-sync-xhr.any.js": [ + "b247ee56f62f3f82e6bbae4f42022afcf6ffa6ff", + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.sharedworker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.sharedworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.sharedworker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "close-invalid.any.js": [ + "3223063765ab09f26fdbbe43b13aa0b04322368a", + [ + "websockets/close-invalid.any.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/close-invalid.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/close-invalid.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/close-invalid.any.worker.html", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/close-invalid.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/close-invalid.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ] + ], + "closing-handshake": { + "002.html": [ + "b0e39a955ce415fcd1b8e228de1a0560862c28b9", + [ + null, + {} + ], + [ + "websockets/closing-handshake/002.html?wpt_flags=h2", {} ], [ @@ -570162,7 +586484,7 @@ ] ], "003.html": [ - "67d6a52c08f015c9ad2a225cc9c957634a7c5ad1", + "72eb09d8337c8d3760257a34b719a3e3f8f345c6", [ null, {} @@ -570177,7 +586499,7 @@ ] ], "004.html": [ - "dc064198a60b642dee6bca73cc4d30658f73d9db", + "eb89ad33857c45f4f0043e19b369bd17e0b662ac", [ null, {} @@ -570194,7 +586516,7 @@ }, "constructor": { "001.html": [ - "fb8804021337093c76fd35a80f6b775589231198", + "0c39a0ee71b5968a0c4643a947771a87e2ea22e5", [ null, {} @@ -570209,7 +586531,7 @@ ] ], "002.html": [ - "f86fe0c25e848bf250517d6e913aa1f6628e06a4", + "8c80c23735f1cc32e0ed9e7ff30504514c837245", [ null, {} @@ -570224,7 +586546,7 @@ ] ], "004.html": [ - "4a4883c6fec6cc4b390ff0c75c5964b00d9765ab", + "e599bf224ae0fe7667bfa08ff2d92be206648d0b", [ null, {} @@ -570239,7 +586561,7 @@ ] ], "005.html": [ - "66d58d7815b21d8e09b82bff5cfef0cb6dc47a16", + "377d9c4217a8cb6fbe447f766d3315b5681979ff", [ null, {} @@ -570254,7 +586576,7 @@ ] ], "006.html": [ - "5f24633112cf1447e148e283a010f6067600506b", + "65178e001652a8ea9c56dcf8df0263c058b8d489", [ null, {} @@ -570269,7 +586591,7 @@ ] ], "007.html": [ - "8ff96db93f7f625999eaa4ca72753ea594257e3b", + "647f4202a1743b79fb8c17985d1c79d491076aeb", [ null, {} @@ -570284,7 +586606,7 @@ ] ], "008.html": [ - "f425ff058f401e2ae03624b082739c8f1e0ba308", + "de7fb457bae97024bc3a331eeab23886e4d8c15b", [ null, {} @@ -570295,7 +586617,7 @@ ] ], "009.html": [ - "c350cb7781d00e02d06eeb1c48532367859626df", + "4e69a839ebdeeaff58b361091563601722f5f4ae", [ null, {} @@ -570310,7 +586632,7 @@ ] ], "010.html": [ - "d619ec65bf56eef50fa74db975241acc3f514f1b", + "0adf2b13f9bdaea74a8f150990242b47d8227630", [ null, {} @@ -570325,7 +586647,7 @@ ] ], "011.html": [ - "b77f34133ffb3895c861a6e9d3124d3cc4c2ae6b", + "9b7f114dc034f92f76863b368a60132c6cd9006d", [ null, {} @@ -570340,7 +586662,7 @@ ] ], "012.html": [ - "a5679bfb295bd7b09ae0af5d7d3cdac287225b48", + "34723616728e47abbe3513ca80928a9b38873ed1", [ null, {} @@ -570355,7 +586677,7 @@ ] ], "013.html": [ - "c56aa3cd065f5ef9298e0643260cb83b9142bbde", + "53b0400a2d64627f51060b21e56eddfd62af2614", [ null, { @@ -570376,7 +586698,7 @@ ] ], "014.html": [ - "e668d3a1909e062fe8711cef45a0ef11693cf624", + "f3f38ad2788bf75a0cbb9da1e461c67315506f6f", [ null, { @@ -570391,7 +586713,7 @@ ] ], "016.html": [ - "9673df9c8ae1e4707621124432bd45b7f2f0b3f9", + "7a5c9a9e0721c68c6e3b3b5c16b5aac4386ad24a", [ null, {} @@ -570406,7 +586728,7 @@ ] ], "017.html": [ - "c69f1939f9047dc25b7ce68c5c4f3230bf9c3a16", + "5087290f3ca0445620fe4d0430756b0fd9f729d8", [ null, {} @@ -570421,7 +586743,7 @@ ] ], "018.html": [ - "be02a9b2955dfe2d9446e4aad9ad036813adfc0b", + "f4d6ab30d9532df78e81bbb31c2b1a5f1bb41cd2", [ null, {} @@ -570436,7 +586758,7 @@ ] ], "019.html": [ - "46be5e4f8386f53512e730dff236ff67499f1cab", + "a0ec6c3ad78304ff0858c57fe0271b37fd2c4065", [ null, {} @@ -570451,7 +586773,7 @@ ] ], "020.html": [ - "b258e2dcaec3ab828b621bedb52ae9f39a5c3735", + "f050a1b8fa97e24d06b26e505f77e6fa8744bc23", [ null, {} @@ -570466,7 +586788,7 @@ ] ], "021.html": [ - "ff41da25ddfac1ec8d3287705675f148a502532c", + "039d74b0430fe2b653ef2dba15a71b49a1f289e9", [ null, {} @@ -570481,7 +586803,7 @@ ] ], "022.html": [ - "22866ec924bf255f32ed010a0a570f5dad4d8083", + "a55d8f349d7d71c9605da2e3e37bb6c66e9ea717", [ null, {} @@ -570497,14 +586819,72 @@ ] }, "constructor.any.js": [ - "0605d5e5efc23da1a97a455548509e32cadceddd", + "c92dda4567c5a0399cc0b6eb84d71c523b3c7ee8", [ "websockets/constructor.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/constructor.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/constructor.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } @@ -570515,7 +586895,65 @@ "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/constructor.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/constructor.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } @@ -570523,7 +586961,7 @@ ], "cookies": { "001.html": [ - "2aed5253d13525d62063164b2b78cc085890f9aa", + "c43947fa877c76e87f3a393dff363cf0d5fd2d57", [ null, {} @@ -570538,7 +586976,7 @@ ] ], "002.html": [ - "8decc88b18ad3b06750ca3580fc728277cc108a7", + "1a5e03e335146e2832f1e43450d8e15e5b495a54", [ null, {} @@ -570553,7 +586991,7 @@ ] ], "003.html": [ - "b7b85a7226f0f0794cc2897a8fd6af7214c93c91", + "ceed0e91e3cba54e83b32f73eca607dda2376429", [ null, {} @@ -570568,7 +587006,7 @@ ] ], "004.html": [ - "2e2cc75a5efa19b9da98f1c8cb9417331d3c7159", + "efc3a9f84d4937a9dffe131faa693c3943b4ac97", [ null, {} @@ -570579,7 +587017,7 @@ ] ], "005.html": [ - "19f79237066136364b277a837383ef020afcd222", + "8940d95127ff0b504380e6c4c39109c13661b1d7", [ null, { @@ -570594,7 +587032,7 @@ ] ], "006.html": [ - "2c25bb5163ef75244869b525076247b8eeaeedfb", + "3c74363a4324fc16353712e492ce2f4e9a80d1c7", [ null, {} @@ -570609,7 +587047,7 @@ ] ], "007.html": [ - "0ffcdb7c245a8300ee6bbc16c717255aac7ad742", + "2c214a1dbb0d19ea63b7f7af483eb7c686341513", [ null, { @@ -570638,14 +587076,72 @@ ] }, "eventhandlers.any.js": [ - "b30b0b693f49a8bfecfa52db1c32c45b8fc25fed", + "7bccd47139b1056a4e9cf3f6cf51e2fd26f072bc", [ "websockets/eventhandlers.any.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/eventhandlers.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/eventhandlers.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } @@ -570656,14 +587152,72 @@ "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/eventhandlers.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/eventhandlers.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], "extended-payload-length.html": [ - "d88af02937f13c84a45f5341d29d49c165741dd7", + "23caedc461c475da25b5dea07aa6a8399c9183e1", [ null, { @@ -570686,7 +587240,7 @@ "interfaces": { "CloseEvent": { "clean-close.html": [ - "b3fc5ad8609d37e6e5f6bdabf13e4be141ee5f2b", + "db253761f63700b7bf3012a4879edeaa76f62135", [ null, {} @@ -570718,7 +587272,7 @@ "WebSocket": { "bufferedAmount": { "bufferedAmount-arraybuffer.html": [ - "8774797178b05ac59af92b669b562c28baa897ae", + "258eaa782797bf94a5a7ce4030a4d64f5eb60cc9", [ null, {} @@ -570733,7 +587287,7 @@ ] ], "bufferedAmount-blob.html": [ - "3c2bb75c1dd392014f47b355710dd8410b391d3e", + "ac5140de6cc572f1a0b1f9fcf23a4e3722667440", [ null, {} @@ -570748,7 +587302,7 @@ ] ], "bufferedAmount-defineProperty-getter.html": [ - "b564da2396790500888fe154f1eb5b8a819e2f73", + "df1c3a5bb22bc9b77215792b0aefdd1dd60b18e8", [ null, {} @@ -570759,7 +587313,7 @@ ] ], "bufferedAmount-defineProperty-setter.html": [ - "feddfb90ee683b13a3a8b3eb6988664450adf17f", + "b65ed9e9b72b894ca2122916d45b6c7db7da4a6b", [ null, {} @@ -570770,7 +587324,7 @@ ] ], "bufferedAmount-deleting.html": [ - "68c47e4901e2a84fe71085c9e2ecd89f5afdbd76", + "0d8c456e5ca4be48e64df59dfb4f473ebcbc37a0", [ null, {} @@ -570781,7 +587335,7 @@ ] ], "bufferedAmount-getting.html": [ - "f151e6efe540cb765d0659503c133a9fee6048b3", + "307f595ec2dd7effcdf94bcd6a57918e2b830baa", [ null, {} @@ -570796,7 +587350,7 @@ ] ], "bufferedAmount-initial.html": [ - "55e9cf9e99c03e7348d705355fb9764a4f6feb36", + "7c66d20282613c24464b17a42464be486762e99c", [ null, {} @@ -570807,7 +587361,7 @@ ] ], "bufferedAmount-large.html": [ - "ecf3d573540d3ffbeb7a977367b94f50f4b617a1", + "e599614103b4d3abafdda20db8176dee1578380e", [ null, { @@ -570828,7 +587382,7 @@ ] ], "bufferedAmount-readonly.html": [ - "8200b7504ccc279eece5739d0cd74f395986ed37", + "951aaea57b760bdcce0f14c143c4002d46f9bcd0", [ null, {} @@ -570839,7 +587393,7 @@ ] ], "bufferedAmount-unicode.html": [ - "e32d3f61b371f69cdd80be38a4d2855667ac5a0c", + "ba25caeb220e5d201d62616ea31a5b8e5f5007cc", [ null, {} @@ -570856,7 +587410,7 @@ }, "close": { "close-basic.html": [ - "673f730cfaee082c33bfc4083e474876fa3db7a7", + "b9059414954f0450d633cd47b17cc6165a43d16e", [ null, {} @@ -570867,7 +587421,7 @@ ] ], "close-connecting.html": [ - "3e9e51b319e5273025dc17c339991d1ba47705cd", + "6151b7b1a765db538daa10072c5ea3eafa2eb913", [ null, { @@ -570882,7 +587436,7 @@ ] ], "close-multiple.html": [ - "c6da41ac588c5e44b9325f9cafc5bb4b0e499519", + "7c6192555a939f7620b082ca224ec283eee93b26", [ null, {} @@ -570893,7 +587447,7 @@ ] ], "close-nested.html": [ - "3ba99af966f407a428b61880125d75ea0343755a", + "0a1c86ccd0381dba9efdee5864158a2e94478651", [ null, {} @@ -570904,7 +587458,7 @@ ] ], "close-replace.html": [ - "a3d29d0c94d7ec22af1781cd8fe6f9e8eb8349ac", + "3607f8d8c313a0815dd191610cad1e2ca7c2a191", [ null, {} @@ -570915,7 +587469,7 @@ ] ], "close-return.html": [ - "c752c4224820e99c4493d8b2618be1b7035affbc", + "5988605cf6ce848b68bc7d2aa8a1344ae9515d1e", [ null, {} @@ -570928,7 +587482,7 @@ }, "constants": { "001.html": [ - "efc249aab15391e835b4be33598cd147e2d7a0ce", + "9701047662f0a1ff75e76ea6fe23587e2b06d7c5", [ null, {} @@ -570939,7 +587493,7 @@ ] ], "002.html": [ - "7280e09b4a860b988601717c7b8a5a05dee9230d", + "46ad3b1fb1aa343acb41a18e8bb5ecf65142fc86", [ null, {} @@ -570950,7 +587504,7 @@ ] ], "003.html": [ - "cdb06e5ebb0007d1e3d524c5359467cc869798bd", + "01127e023553cf351639ab94c22ec9469dae7160", [ null, {} @@ -570961,7 +587515,7 @@ ] ], "004.html": [ - "a5b7649dffa1759f3a6570e07af77afc82624a4c", + "035e099b65626fc7850fed2984f217465d8bde27", [ null, {} @@ -570972,7 +587526,7 @@ ] ], "005.html": [ - "8f17deb3785fc0f8856db9b2dac2073bd896a352", + "8e3de05a6097f7583a9b0e791255e546b6e4ae30", [ null, {} @@ -570983,7 +587537,7 @@ ] ], "006.html": [ - "0396687736a25eca203d514e6aa302bca3b2d2b8", + "9dcd1941593f2d0123ed3ca977ba6f57be6262a0", [ null, {} @@ -570996,7 +587550,7 @@ }, "events": { "001.html": [ - "f898421da66434a27e618907c3a0d76beda64903", + "2043f0dd84715eff0bbd0ecc3c05bf17b2c78521", [ null, {} @@ -571011,7 +587565,7 @@ ] ], "002.html": [ - "70478a465b1a834578028b4666c86642c1ad76e8", + "df8e9f73d54508b72a0875fe9231fbdf4b8a785c", [ null, {} @@ -571026,7 +587580,7 @@ ] ], "003.html": [ - "430ea14f6775be3189f3a44fe7d1cd1b8274d13c", + "f03ab49be6702749b33d751f565fc91817f797ce", [ null, {} @@ -571037,7 +587591,7 @@ ] ], "004.html": [ - "0c384a6cfa2fc9248524d295974d403bf1517c2b", + "f3698263ed526252dab3a7fb7cdff4e45e615a0d", [ null, {} @@ -571048,7 +587602,7 @@ ] ], "006.html": [ - "f7ccf1030e39b4ce91961feb8dd2f70af1ebcf1c", + "76930516c85b8442f73ec3b588c23840489ee559", [ null, {} @@ -571059,7 +587613,7 @@ ] ], "007.html": [ - "23ec0db008c4c943daccbc44e6ea3e46e5679a97", + "c009f48a97b852b2ea629eb2514c6e789e0b0ba1", [ null, {} @@ -571074,7 +587628,7 @@ ] ], "008.html": [ - "dd06f0d18839588e94a325d912adac2fa88c4708", + "eb46efbb1a3e0abe217605449c82b275232cd4e6", [ null, {} @@ -571085,7 +587639,7 @@ ] ], "009.html": [ - "58df1d618172b95558880a7f5f43eaa816c16c65", + "1194fb8b090a6b02d8c5e6ff61ba7cbe765e2b9e", [ null, {} @@ -571096,7 +587650,7 @@ ] ], "010.html": [ - "f4a4850d66ff9165992939e73b9b69093b51b4ec", + "ccdbc4dbf98bb98b69fa69b14eafb246c5fb9790", [ null, {} @@ -571107,7 +587661,7 @@ ] ], "011.html": [ - "918becc1033da080e34ed2773dbeab89b0183e9e", + "4bb0ef391c2b8cc047bf4f65620d5fcedce550a5", [ null, {} @@ -571118,7 +587672,7 @@ ] ], "012.html": [ - "633f02c4acbed2ba36ba37f79c8f0291f9b454ba", + "d2f39194fd96b83f54ee06502614ae3f4b30ddc9", [ null, {} @@ -571129,7 +587683,7 @@ ] ], "013.html": [ - "465505128e53cc8c3f05cb7a2485fffcffc92ecb", + "121f6e6c3048af9789a25d42548b427021361a6c", [ null, {} @@ -571140,7 +587694,7 @@ ] ], "014.html": [ - "9250fb26731980e87840c6a746d174bd5a346506", + "a427ce98c58e2d19439889dd69200103b7dd40fe", [ null, {} @@ -571151,7 +587705,7 @@ ] ], "015.html": [ - "d11febcd1265ad26836cfc26c550ca49e364e1c8", + "663ccca80d0cec8949a1e9114bbfdb7b1cfe3e55", [ null, {} @@ -571166,7 +587720,7 @@ ] ], "016.html": [ - "3af8f617a50ffbbee8aecf2d3c3f45533171f54a", + "fcd14c854cefe400b12038078c7bfd788f6c0a0e", [ null, { @@ -571187,7 +587741,7 @@ ] ], "017.html": [ - "4fa3aa5e05e2a10b6916270a8cef25dd9281e06a", + "9208261c1212478638676bc4886bbf84eb6876c6", [ null, {} @@ -571202,7 +587756,7 @@ ] ], "018.html": [ - "1357b9bb8654bfd43dfb12c31ad63b8592ebdff7", + "3dc36d0c5f118bf9b8f0e0e0f593fbf14b82a0ff", [ null, {} @@ -571217,7 +587771,7 @@ ] ], "019.html": [ - "f975a809808bcae05da8d7f4d9099918b2d26849", + "cbc271d9e63a95286b3536692820fd99675cb3ec", [ null, {} @@ -571228,7 +587782,7 @@ ] ], "020.html": [ - "54d96fe638f46ebf160c45981fb15c27b03f9fc7", + "34c1f35312bdc5b2701382e8b36fddeb71a6a054", [ null, {} @@ -571241,7 +587795,7 @@ }, "extensions": { "001.html": [ - "f5003868e8fee3a814a3aedc58c030f2459f44cf", + "4f86da57b8da9c839d642f27981cd26d737a6e1c", [ null, {} @@ -571254,7 +587808,7 @@ }, "protocol": { "protocol-initial.html": [ - "ba27228ec9122ecca6656433a18c30766fcdb914", + "33c123abacbfa0f0e32fbbe9aec51c294bc274ad", [ null, {} @@ -571267,7 +587821,7 @@ }, "readyState": { "001.html": [ - "aa5d9fdf19490be809b825c673f1bf9b17662bc8", + "b8f96740cafbafb2931862ae25ceafc8a30878e8", [ null, {} @@ -571278,7 +587832,7 @@ ] ], "002.html": [ - "9e97416f36ec81f374bf3b53d8899d0db5618b1a", + "b86e128059c2f3047cfe4e40d8a78f79a635cfa1", [ null, {} @@ -571289,7 +587843,7 @@ ] ], "003.html": [ - "93d72b64bf2394402df448679677ef87d3b59d05", + "0143480721717284a648fcb58a72d160cb449732", [ null, {} @@ -571300,7 +587854,7 @@ ] ], "004.html": [ - "fbe326a103d0b4520d0c7784845664abd9678829", + "7864f0e853d80708b2148c330067fb142324dbd3", [ null, {} @@ -571311,7 +587865,7 @@ ] ], "005.html": [ - "3ca8705296e4b1b653000e227e2e37558523a52f", + "c42939316a576d027becb48a53e4595ddae11b9b", [ null, {} @@ -571322,7 +587876,7 @@ ] ], "006.html": [ - "e0be938abc8d3554513646a3d6c1363ca4d245d6", + "993655abd93bc793094c65ca1bd752dd3ab1db58", [ null, {} @@ -571333,7 +587887,7 @@ ] ], "007.html": [ - "12a4cd087bc9937b5a6ff70c09f4854a805ca802", + "f9ab27a40536d0b0c69bd0b89e413e025f152129", [ null, {} @@ -571344,7 +587898,7 @@ ] ], "008.html": [ - "c83ead4e7be554f3e2e09a860a7f427471333a92", + "5dcd362ce9a33393067d21b04c06e2927792a362", [ null, {} @@ -571357,7 +587911,7 @@ }, "send": { "001.html": [ - "829a4ed7610f8db52fa0c736d5c7984b6526c522", + "e99ce7722f3859c1cacadeadd948591d6db10f5c", [ null, {} @@ -571368,7 +587922,7 @@ ] ], "002.html": [ - "f5c7e4feb63b65e282222de5693938417b87534a", + "8a384df32db1ec4a6cd278fff9726c700a7523f6", [ null, {} @@ -571379,7 +587933,7 @@ ] ], "003.html": [ - "0077b4020055dd7ca8941cbb85540f913a6b0370", + "d5aa6c57667e8cea54d5704cfa9baf1958bd9081", [ null, {} @@ -571390,7 +587944,7 @@ ] ], "004.html": [ - "f454f0cda59b152f1fff42f51def6adf21588a0d", + "63fd83a7e9fa3acc2506be006756d68dcfbd5030", [ null, {} @@ -571401,7 +587955,7 @@ ] ], "005.html": [ - "aef5c1c9d3c05ae4818906bf69ef4caf72dc4990", + "ddba5bf4a3eafad4648f628fc4d25c933c9045aa", [ null, { @@ -571416,7 +587970,7 @@ ] ], "006.html": [ - "8dbd947eb89b6c0262280e7e14b60afc0e6ac75e", + "a7c00b154f12898e2f2a022aa9c23434d8d595f1", [ null, {} @@ -571431,7 +587985,7 @@ ] ], "007.html": [ - "87513d440edb08142255ebb0f00a237fabc05fbb", + "e2a8999e2fa6e3d025f26b6e856c2a0275bf9d01", [ null, {} @@ -571446,7 +588000,7 @@ ] ], "008.html": [ - "084e05088bcd83f61257659f82a0bf066d36babe", + "7b6125b8c8ef11e4bfbc3942d21a0133050f2b97", [ null, {} @@ -571457,7 +588011,7 @@ ] ], "009.html": [ - "7469631bb698958f8185107ed0c6fc84a8d4f551", + "65d9270ecb36c82f83b2162332104546e6d3f754", [ null, {} @@ -571472,7 +588026,7 @@ ] ], "010.html": [ - "3688ec417983abdf79279f36d74d719000713156", + "4e4f5c57b825fe1d6d458a4222c57354b5c059da", [ null, { @@ -571487,7 +588041,7 @@ ] ], "011.html": [ - "c0e7a8ee3d996659fc58e4d63496d0e53e9f31d4", + "bcf0422a3180b2b82e4a9f7b237952719a28061b", [ null, {} @@ -571502,7 +588056,7 @@ ] ], "012.html": [ - "321b5578964ca4c6d95c1fa0888181d4116cf34d", + "058ab9f6214bfbae8c831c5016340f819704ddf0", [ null, {} @@ -571519,7 +588073,7 @@ }, "url": { "001.html": [ - "3d1e5e5b89c4d8e45ea26c2116d4ff4702ed7d8a", + "76f68b9093348f7735b907ced7479caa1162acf9", [ null, {} @@ -571530,7 +588084,7 @@ ] ], "002.html": [ - "aa11664020ac412995f6b82824a8f969b8d924fe", + "b7e74eecea9a283207891b055554e81d34dc6413", [ null, {} @@ -571541,7 +588095,7 @@ ] ], "003.html": [ - "8cc0b79194379851c9c3eb08f0dbc21ff843298e", + "5a98b50f55b790e48e96bde9c097c7c7f31327fe", [ null, {} @@ -571552,7 +588106,7 @@ ] ], "004.html": [ - "908e2cd9eb1b25bb2bd2d9455c24556f7684e2fd", + "a3c90c73d9104311f7d3b8af96f8c44e7fb8e910", [ null, {} @@ -571563,7 +588117,7 @@ ] ], "005.html": [ - "f3d89cf2eaed63821dd1cf4cb944243798e0eb2e", + "f897b88de0d8ec99fc382b7fb68b1d0fbc0aba57", [ null, {} @@ -571574,7 +588128,7 @@ ] ], "006.html": [ - "124bdbc19e5bab4f1cf73707f73deda1daec1d2d", + "8c4e29aa83645b059451ebcf3d6c0841a400c8d4", [ null, {} @@ -571585,7 +588139,7 @@ ] ], "resolve.html": [ - "ad7db147f2f74dea31b9eb563ba8727ebdf415b0", + "0526872d56f836e62e4ab61cc5f1b2ef7343648e", [ null, {} @@ -571600,7 +588154,7 @@ }, "keeping-connection-open": { "001.html": [ - "e31f9bc57de4811079d3139e5ba7a66e3ffb99fc", + "a5d7207dec4bf07aef054284a3453f97c3b4f756", [ null, { @@ -571623,7 +588177,7 @@ }, "multi-globals": { "message-received.html": [ - "58d8d84c6ea8f58c6ef60d52db79cb1a40d190ec", + "704b1e357b8ee2b37653888f6f9f456571a0ae58", [ null, {} @@ -571632,7 +588186,7 @@ }, "opening-handshake": { "001.html": [ - "0f6830cb1bf24bb420ac77e6099a823df0efe225", + "cbc0355e2bd6c1a42e1eb54b183f7d5edfaf672c", [ null, {} @@ -571647,7 +588201,7 @@ ] ], "002.html": [ - "c8a13682f9907428b116fbe4a95ac968608f909e", + "27b85602d44da1d2e33b2b8a3f0e4df07280850c", [ null, { @@ -571668,14 +588222,14 @@ ] ], "003-sets-origin.worker.js": [ - "cc54f2b88416e6b2f665a576e32fd6ae301df54f", + "d10e8cb4c49f1252337730d45ea49dd64978702b", [ "websockets/opening-handshake/003-sets-origin.worker.html", {} ] ], "003.html": [ - "bc8a9e51d19c10cb2f9041efb6915a66a355c34b", + "f21219f5b5abca260e12a96907ea9463b255c4fb", [ null, { @@ -571690,7 +588244,7 @@ ] ], "005.html": [ - "e7cec47eae17a0049b26f2d925be09fac00207e8", + "219760c51898e0d0f56ca42b6cf8725c34db14c2", [ null, {} @@ -571702,14 +588256,14 @@ ] }, "referrer.any.js": [ - "914af77e6780b68ffdad8ab357c76ab0e2a2f1c6", + "0972a1dc4dfd237b6cfd91e6b1edf3760cdb14dd", [ "websockets/referrer.any.html", { "script_metadata": [ [ "script", - "constants.js?pipe=sub" + "constants.sub.js" ] ] } @@ -571720,25 +588274,93 @@ "script_metadata": [ [ "script", - "constants.js?pipe=sub" + "constants.sub.js" ] ] } ] ], "remove-own-iframe-during-onerror.window.js": [ - "31c21b4ff93bd95b5b1a83abf96b04d331909a03", + "c3d5235e7c573706fbf2ae19083b1c7ae0b6da71", [ "websockets/remove-own-iframe-during-onerror.window.html", { "script_metadata": [ [ "script", - "websocket.sub.js" + "constants.sub.js" ], [ "timeout", "long" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/remove-own-iframe-during-onerror.window.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/remove-own-iframe-during-onerror.window.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ], "timeout": "long" @@ -571747,7 +588369,7 @@ ], "security": { "001.html": [ - "4cc24598bd31ea466b5f71979c61e6eb42e12b0d", + "106c5dca6290e8fecdc258b17c39eb172f2e7153", [ null, {} @@ -571758,7 +588380,7 @@ ] ], "002.html": [ - "2bdc133ec2390789c2533d12a42121dab2e786dc", + "402af947c50d80831487ecb0300f65f3fd5b94c5", [ null, {} @@ -571772,14 +588394,76 @@ "stream": { "tentative": { "abort.any.js": [ - "9d64899c551129ba1c4436f954a571f6624cc96a", + "6742bf2b38fb1d0121982fa1ba689534d0b7182d", + [ + "websockets/stream/tentative/abort.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/stream/tentative/abort.any.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], [ - "websockets/stream/tentative/abort.any.html", + "websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571792,17 +588476,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/abort.any.serviceworker.html", + "websockets/stream/tentative/abort.any.serviceworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571815,17 +588507,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/abort.any.sharedworker.html", + "websockets/stream/tentative/abort.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571838,17 +588538,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/abort.any.worker.html", + "websockets/stream/tentative/abort.any.sharedworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571861,20 +588569,122 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/stream/tentative/abort.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/stream/tentative/abort.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ] ], "backpressure-receive.any.js": [ - "662a6a2871b8f0c390c5ba1dfb85f742a6549186", + "cce5bf2a47eb88518c34e049fdf3ea67a52aa1bb", + [ + "websockets/stream/tentative/backpressure-receive.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], [ - "websockets/stream/tentative/backpressure-receive.any.html", + "websockets/stream/tentative/backpressure-receive.any.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571887,18 +588697,445 @@ [ "timeout", "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.sharedworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.sharedworker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-receive.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ] + ], + "backpressure-send.any.js": [ + "c17f1cc2b8b16e2e4733c23328313851529a2d07", + [ + "websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.sharedworker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ], + "timeout": "long" + } + ], + [ + "websockets/stream/tentative/backpressure-send.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ], "timeout": "long" } ], [ - "websockets/stream/tentative/backpressure-receive.any.serviceworker.html", + "websockets/stream/tentative/backpressure-send.any.worker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571911,18 +589148,56 @@ [ "timeout", "long" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ], "timeout": "long" } + ] + ], + "close.any.js": [ + "0ed91cc8a64390c00662b23837ec0b2411adee8a", + [ + "websockets/stream/tentative/close.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } ], [ - "websockets/stream/tentative/backpressure-receive.any.sharedworker.html", + "websockets/stream/tentative/close.any.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571933,20 +589208,23 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.worker.html", + "websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571957,23 +589235,23 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } - ] - ], - "backpressure-send.any.js": [ - "2848a3f1564a4e01ebe861a75511cfe0a83e4435", + ], [ - "websockets/stream/tentative/backpressure-send.any.html", + "websockets/stream/tentative/close.any.serviceworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -571984,20 +589262,23 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.serviceworker.html", + "websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572008,20 +589289,23 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.sharedworker.html", + "websockets/stream/tentative/close.any.sharedworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572032,20 +589316,23 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.worker.html", + "websockets/stream/tentative/close.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572056,23 +589343,53 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] - ], - "timeout": "long" + ] + } + ], + [ + "websockets/stream/tentative/close.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] } ] ], - "close.any.js": [ - "d44883139c6a86c9995f678b2a80194d8737e4da", + "constructor.any.js": [ + "454dd4c09425b00a563eb5c7406546fe1bdaef48", [ - "websockets/stream/tentative/close.any.html", + "websockets/stream/tentative/constructor.any.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572081,17 +589398,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/close.any.serviceworker.html", + "websockets/stream/tentative/constructor.any.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572100,17 +589425,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/close.any.sharedworker.html", + "websockets/stream/tentative/constructor.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572119,17 +589452,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/close.any.worker.html", + "websockets/stream/tentative/constructor.any.serviceworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572138,20 +589479,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } - ] - ], - "constructor.any.js": [ - "a5bea2ac61b4b5e28c11cbceb89669559bafd086", + ], [ - "websockets/stream/tentative/constructor.any.html", + "websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572160,17 +589506,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/constructor.any.serviceworker.html", + "websockets/stream/tentative/constructor.any.sharedworker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572179,17 +589533,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/constructor.any.sharedworker.html", + "websockets/stream/tentative/constructor.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572198,17 +589560,25 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } ], [ - "websockets/stream/tentative/constructor.any.worker.html", + "websockets/stream/tentative/constructor.any.worker.html?wss", { "script_metadata": [ [ "script", - "../../websocket.sub.js" + "../../constants.sub.js" ], [ "script", @@ -572217,6 +589587,14 @@ [ "global", "window,worker" + ], + [ + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" ] ] } @@ -572226,7 +589604,7 @@ }, "unload-a-document": { "001.html": [ - "5e15da594028a6ceaaa234494beed3852260f20e", + "e7cc60d593baa11155aa34dc4a162ad41d2e12cf", [ null, {} @@ -572241,7 +589619,7 @@ ] ], "002.html": [ - "b25c7a9f950f832665d1225f10f7da832cb388c1", + "013f5266bf919a5a13a2be69cd06037e45cf4554", [ null, { @@ -572278,7 +589656,7 @@ ] ], "005.html": [ - "56da18d2fd62ecdd0bd2805eba4b39b82680d64c", + "fc4b02cbb298baf9242cace3b1ea27db10711466", [ null, { @@ -572619,6 +589997,148 @@ ] }, "webtransport": { + "constructor.any.js": [ + "be9b59ea9f3686e91fd7c7b14de0d8a486c107a4", + [ + "webtransport/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "webtransport/constructor.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "webtransport/constructor.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "webtransport/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] + ], + "idlharness.any.js": [ + "56bc1ba0a948929765762603df99a073b7727fad", + [ + "webtransport/idlharness.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "webtransport/idlharness.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "webtransport/idlharness.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "webtransport/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], "quic": { "client-indication.sub.any.js": [ "62f2f3fe4d22bd767db78650c1cc9dda2053e6ce", @@ -572654,69 +590174,6 @@ ] } ] - ], - "constructor.any.js": [ - "393cefd5d30237141096b2b6d919396047fe545c", - [ - "webtransport/quic/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ], - [ - "webtransport/quic/constructor.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ], - [ - "webtransport/quic/constructor.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ], - [ - "webtransport/quic/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ] ] } }, @@ -573288,7 +590745,7 @@ }, "webvr": { "idlharness.https.html": [ - "2a89c575cef57bbf7072b60881c7ab0d7a73d8cd", + "ee991158ef8f9b6800c51375f5af368a23437bf3", [ null, {} @@ -573348,14 +590805,14 @@ ] ], "constructor-exceptions.html": [ - "843cab098456c963912cbe255b23b2f9bef14f67", + "06ad7f041c29c6580438c8920e53069b3054c3a7", [ null, {} ] ], "constructor.html": [ - "255ee8c7d3199ee9208272f54dc54558b2bd488e", + "2937f0cecb562f5baad0ae91ce39bb3e97331efa", [ null, {} @@ -573586,6 +591043,13 @@ {} ] ], + "comment-in-cue-text.html": [ + "d3cd12549b0d6b94c1d9b18627f7d63a4c542a28", + [ + null, + {} + ] + ], "header-garbage.html": [ "4ebace24092dae59971a3b475426dcd37845219a", [ @@ -574351,7 +591815,7 @@ ] ], "xrWebGLBinding_getReflectionCubeMap.https.html": [ - "b46f44881d5e852aa549c1395b70be8cc110e9b1", + "a68a0f2b5125459e6294a75a996a742ad996edde", [ null, {} @@ -574526,6 +591990,13 @@ {} ] ], + "xrFrame_getViewerPose_getPose_identities.https.html": [ + "ba2269147e4cd8bfaca58756d8b47f6c7a354f9a", + [ + null, + {} + ] + ], "xrFrame_lifetime.https.html": [ "e457ef020fd81a77070541c77f7680c99485c556", [ @@ -574835,7 +592306,7 @@ ] ], "xrWebGLLayer_opaque_framebuffer_stencil.https.html": [ - "7eadd005ecf713ade2d67cb6c1308ed0493f93e0", + "17f991f1807e5356b3d789013bfbbfbc2e71040b", [ null, {} @@ -577138,6 +594609,15 @@ ] ] }, + "multi-globals": { + "url-parsing.html": [ + "27bbc0cb50fee4a8ae64f763131a147d53a3bce3", + [ + null, + {} + ] + ] + }, "name-property.html": [ "ccc2a9de3a9c59acc19eefb247b1c92b78a52941", [ @@ -577297,7 +594777,7 @@ ] ], "002.worker.js": [ - "8eb41c23fdcfc2a81a135582648b93ebfde40d22", + "d4f48354eda302ba0d912649c2b9af70aae0d54e", [ "workers/semantics/interface-objects/002.worker.html", {} @@ -577818,10 +595298,12 @@ ] ], "multiple.html": [ - "cc8d6e3fdaa27287cd3287e8bb937e1420606a85", + "13c9cf3a375086e39a914438899fd51e58b63ade", [ null, - {} + { + "timeout": "long" + } ] ], "redirect.html": [ @@ -577840,13 +595322,6 @@ ] }, "xhr": { - "FormData-append.html": [ - "c64b93cbc7ef82c36abced4cc1d5c1cf60f1b2f9", - [ - null, - {} - ] - ], "XMLHttpRequest-withCredentials.any.js": [ "27ffa70d5b9ecb4cb14f1e097347e61e3430adbd", [ @@ -579100,7 +596575,7 @@ ] ], "event-error.sub.any.js": [ - "62a158cdcfbcc80fb6f6a7db6f6ffd88e6074c5a", + "ecc4678e682ee184abe1ae2691a36b1a5dd3bac4", [ "xhr/event-error.sub.any.html", { @@ -579447,64 +596922,252 @@ {} ] ], - "formdata-blob.htm": [ - "92cee55cd2f80f15de2684ebfc129a5a6b1d38f3", - [ - null, - {} - ] - ], - "formdata-constructor.html": [ - "65656cde2ab076102627d79756c4e99295c5aa47", - [ - null, - {} - ] - ], - "formdata-delete.htm": [ - "283b44b5ab01d1aaa51ba8751547d0f5670d6fcb", - [ - null, - {} - ] - ], - "formdata-foreach.html": [ - "3ad184c4d55789a2d2f23db61d41b7ad9c650b0b", - [ - null, - {} - ] - ], - "formdata-get.htm": [ - "b71a72fa9bcc0a4981424fe94f17dc1b7688cfd2", - [ - null, - {} - ] - ], - "formdata-has.htm": [ - "ecd22b4e30b98508b10e54a4d2b356b97f3d1f5e", - [ - null, - {} - ] - ], - "formdata-set-blob.html": [ - "1280ff2a7ce0bbaa636bc7054a6ab8eb9fadd98f", - [ - null, - {} - ] - ], - "formdata-set.htm": [ - "d46e44a916fd20cb9ba94b1ac5c2481659ec7cdc", - [ - null, - {} + "formdata": { + "append-formelement.html": [ + "72c81aa808a2e1fadea44910354fd35cc3dffa30", + [ + null, + {} + ] + ], + "append.any.js": [ + "fb365618d20b281fd59a2c3b2ab4435e323c2f02", + [ + "xhr/formdata/append.any.html", + { + "script_metadata": [ + [ + "title", + "FormData.append" + ] + ] + } + ], + [ + "xhr/formdata/append.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData.append" + ] + ] + } + ] + ], + "constructor-formelement.html": [ + "813e1d2a6c0ef432e743d4d1658deb8acefcbc18", + [ + null, + {} + ] + ], + "constructor.any.js": [ + "43704538ab2489a6cbd7a2449532a040fdb4adbd", + [ + "xhr/formdata/constructor.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: constructor" + ] + ] + } + ], + [ + "xhr/formdata/constructor.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: constructor" + ] + ] + } + ] + ], + "delete-formelement.html": [ + "62862bd571b943962b6b9851638596fcd1226182", + [ + null, + {} + ] + ], + "delete.any.js": [ + "9424614f961b2e4b88ad0355d4da9d9e3ad9bccf", + [ + "xhr/formdata/delete.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: delete" + ] + ] + } + ], + [ + "xhr/formdata/delete.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: delete" + ] + ] + } + ] + ], + "foreach.any.js": [ + "9fc1e2d9b399fe08acf090f0aaa4a9f6bbe33c3f", + [ + "xhr/formdata/foreach.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: foreach" + ] + ] + } + ], + [ + "xhr/formdata/foreach.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: foreach" + ] + ] + } + ] + ], + "get-formelement.html": [ + "801db6c6f64006ae480ebbd8b02760427c2923ec", + [ + null, + {} + ] + ], + "get.any.js": [ + "b307f1edd0ad3b739c1fa44b178d90f4697f465a", + [ + "xhr/formdata/get.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: get and getAll" + ] + ] + } + ], + [ + "xhr/formdata/get.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: get and getAll" + ] + ] + } + ] + ], + "has-formelement.html": [ + "9edbad3665089afe66c869c4a6bb81f48edf0c23", + [ + null, + {} + ] + ], + "has.any.js": [ + "2c1a3fdafe3480732f177be32584a7d8a889e493", + [ + "xhr/formdata/has.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: has" + ] + ] + } + ], + [ + "xhr/formdata/has.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: has" + ] + ] + } + ] + ], + "set-blob.any.js": [ + "1418a3775e60f1158a70891f09f045fc3e9bfc84", + [ + "xhr/formdata/set-blob.any.html", + { + "script_metadata": [ + [ + "title", + "formData.set(blob) and formData.set(file)" + ] + ] + } + ], + [ + "xhr/formdata/set-blob.any.worker.html", + { + "script_metadata": [ + [ + "title", + "formData.set(blob) and formData.set(file)" + ] + ] + } + ] + ], + "set-formelement.html": [ + "d3213f85792d5ca002e127216f4600a291d5b5f5", + [ + null, + {} + ] + ], + "set.any.js": [ + "734e55bb759cad5df13bb4e374a30eac28e85f2a", + [ + "xhr/formdata/set.any.html", + { + "script_metadata": [ + [ + "title", + "FormData: set" + ] + ] + } + ], + [ + "xhr/formdata/set.any.worker.html", + { + "script_metadata": [ + [ + "title", + "FormData: set" + ] + ] + } + ] ] - ], - "formdata.htm": [ - "675203cb1af76d71242381d49efc133a5d5384c1", + }, + "formdata.html": [ + "b308916c5890ea9111ec386b700fcbb4edbe5b1a", [ null, {} @@ -581411,33 +599074,6 @@ {} ] ] - }, - "xslt": { - "idlharness.tentative.window.js": [ - "1da8db8cb208aa278527bbe9192944b68e19340b", - [ - "xslt/idlharness.tentative.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "transformToFragment.tentative.window.js": [ - "7bb6a5685544bfea53613af5a539d870385e6df0", - [ - "xslt/transformToFragment.tentative.window.html", - {} - ] - ] } }, "visual": { @@ -589127,14 +606763,14 @@ ] ], "blocks-027.xht": [ - "7edc61abec86eaba91b88a44ff549f19c9e0ad4a", + "c882c867cd9c5c8efa1ca973a0ba76a4b907801b", [ null, {} ] ], "blocks-028.xht": [ - "b3a7420c630ad4c84e5593ad48f48f3072a88b98", + "c8ca5f19afff1e5694c74b92f5c57e510ae5e3b5", [ null, {} @@ -600494,6 +618130,22 @@ ] }, "css-grid": { + "abspos": { + "absolute-positioning-grid-container-parent-002.html": [ + "22c58c9c806dcc78afc4913638ad599e74a4c2f8", + [ + null, + {} + ] + ], + "positioned-grid-items-019.html": [ + "b26729f1d187e20132c25f6a6dad2261571a70d2", + [ + null, + {} + ] + ] + }, "layout-algorithm": { "grid-automatic-minimum-for-auto-rows-001.html": [ "77e9c22294d9dd11ac5977630696325bc76b913e", @@ -602801,7 +620453,7 @@ }, "add_cookie": { "add.py": [ - "f051537902614f29dc99bfe778c2e146f6853271", + "3a19432fc6a243544bcd6b8d9b13ffc01e185eaf", [ null, {} @@ -602819,7 +620471,7 @@ }, "back": { "back.py": [ - "ee82adf81ca707704743da4c677e74d9450c8bae", + "86ad2278ab3970c892760edc2c764b4e55cea91f", [ null, {} @@ -602982,7 +620634,7 @@ ] ], "navigate.py": [ - "c537fabe2e288d5b2839a4bf6cd2635935801d6a", + "63d40602f3a5bbe711fa00490ca037c92696e56e", [ null, {} @@ -603088,7 +620740,7 @@ }, "execute_async_script": { "collections.py": [ - "d3f197e41b58f4f38ddd1abca261c442ef6a7b9f", + "2dc9b9a009acd06844824f9dd173b03af34cd943", [ null, {} @@ -603127,7 +620779,7 @@ }, "execute_script": { "collections.py": [ - "cce32b641551e6f1d36a55937fcab42ea84111ab", + "8291fd71388b8eedd4c1039a52bffa78ffaf7cd5", [ null, {} @@ -603288,7 +620940,7 @@ }, "forward": { "forward.py": [ - "d77ad2c61b5a7df0fb4cb2e9644f5b02a62e3861", + "97a935c8cd83b33c75eef9337673c1704d038450", [ null, {} @@ -603351,7 +621003,7 @@ }, "get_alert_text": { "get.py": [ - "abf23c570b8cf2556b8807bf813f85f3afe21b3d", + "7ee7ff1808f928e67ab0e3423c13a885e28db08f", [ null, {} @@ -603360,7 +621012,7 @@ }, "get_computed_label": { "get.py": [ - "89c0f9d2b29b410a5ccf55806c677d20b94576b1", + "3904c6ce41f6f65ba0813f59ba75911193fe067f", [ null, {} @@ -603369,7 +621021,7 @@ }, "get_computed_role": { "get.py": [ - "06173ee6fcb2b169c11cb76e6e2955870a59e77f", + "10fd628f156b0fa6433cb78a9b9ed7300ac73753", [ null, {} @@ -603378,7 +621030,7 @@ }, "get_current_url": { "get.py": [ - "fa2ff6a6595f165987f13ad7a7ad60fd6e3cbb44", + "1ca13a1a6d5e5fd973e5168786a4d8bcc9bacf07", [ null, {} @@ -603403,7 +621055,7 @@ }, "get_element_attribute": { "get.py": [ - "661dccd39b1e02f8bc0c0205d5ee44637a252c08", + "528cbd29f020cafa60cdd20fc5047fc4ac9c1e65", [ null, {} @@ -603439,7 +621091,7 @@ }, "get_element_property": { "get.py": [ - "ea3db1e406b77547951e61a05325465cfe84692f", + "10f7a08ae73e92b94cde668e71275fda3e35379d", [ null, {} @@ -603529,7 +621181,7 @@ }, "get_named_cookie": { "get.py": [ - "ccc355a195341ac10dfba7456e52cf4d957599b6", + "d1e83b6a81521728556b20a875164a21924c8b5e", [ null, {} @@ -603574,7 +621226,7 @@ }, "get_title": { "get.py": [ - "a173094839aac80acd280562d3eb1a35bf1e8c3a", + "e696ec340339e64d68956c3ea3bcfa5e8fceb774", [ null, {} @@ -603599,7 +621251,7 @@ }, "get_window_handle": { "get.py": [ - "8c262033c3838abb406c6dcf9c44f248b327373b", + "68441da5ef8460bb472beecd2e31a6cc34f0faa3", [ null, {} @@ -603698,7 +621350,7 @@ }, "maximize_window": { "maximize.py": [ - "6903eece70d02a47498586f0eca4e7bd75d469c0", + "e233e45a10d7136929380e2a80f5d6fdd0c32a9e", [ null, { @@ -603756,7 +621408,7 @@ }, "navigate_to": { "navigate.py": [ - "c0ba49d475d63b8e228144c9b30feaeceb3cc132", + "25d768167aa0238af4336553c574e4e07e186673", [ null, {} @@ -603831,7 +621483,7 @@ ] ], "response.py": [ - "cbe9e7d7fb14680f027d6fdc15d409ac19a7320c", + "43a8d57931143f9cf2b5cb0946f982b003afd85c", [ null, {} @@ -604024,14 +621676,14 @@ }, "print": { "printcmd.py": [ - "ff3de4e0af9ccc83e5cafccccef352258b7dc803", + "89296d2b146bd75cd99fcb00c2a1043f45cff791", [ null, {} ] ], "user_prompts.py": [ - "dc8a32e22db25a3ed4b30a54d864f94a057adf1f", + "0a29b518ac9a2307e6f5656e3f455831f2a05337", [ null, { @@ -604125,7 +621777,7 @@ }, "status": { "status.py": [ - "1f0f1bc4fe7746f34080cc537701020e4c5b2292", + "8c7ae22a67b5988cd94daa979a5ade8d5377a684", [ null, {} @@ -604134,7 +621786,7 @@ }, "switch_to_frame": { "cross_origin.py": [ - "ec345c1cfc3fdc70c57b375634d2d87fa882524b", + "633eba3f4248575f1c06deb1cab536a8c5414ac5", [ null, {} @@ -604180,7 +621832,7 @@ ] ], "switch.py": [ - "f480784fb5f13791486b5a1a7624b3b41da0f795", + "28d432a8b5b42623d49c4fbe0d1da0539c36e71c", [ null, {}